PerforceActionFstat.m #2

  • //
  • guest/
  • jeff_argast/
  • P4Cocoa/
  • source/
  • Perforce/
  • PerforceActionFstat.m
  • View
  • Commits
  • Open Download .zip Download (5 KB)
/*

Copyright (C) 2002-2003, Jeffrey D. Argast.

The authors make NO WARRANTY or representation, either express or implied,
with respect to this software, its quality, accuracy, merchantability, or
fitness for a particular purpose.  This software is provided "AS IS", and you,
its user, assume the entire risk as to its quality and accuracy.

Permission is hereby granted to use, copy, modify, and distribute this
software or portions thereof for any purpose, without fee, subject to these
conditions:

(1) If any part of the source code is distributed, then this
statement must be included, with this copyright and no-warranty notice
unaltered.

(2) Permission for use of this software is granted only if the user accepts
full responsibility for any undesirable consequences; the authors accept
NO LIABILITY for damages of any kind.

*/

#import "PerforceActionFstat.h"
#import "PerforceOutputParsers.h"
#import "AppUtils.h"

#import "AppDefaults.h"

static NSString* kNewLine = @"\n";

@implementation PerforceActionFstat

+ (void) defaultRunFor:(id)owner
		 selector:(SEL)aSelector
		 withPath:(NSString*)depotPath
{
	PerforceActionFstat* action = [[[PerforceActionFstat alloc] init] autorelease];
	
	[action runFor:owner selector:aSelector withPath:depotPath];
}
		 
+ (void) defaultRunFor:(id)owner
		 selector:(SEL)aSelector
		 withPath:(NSString*)depotPath
		 includeDeletes:(BOOL)includeDeletes
{
	PerforceActionFstat* action = [[[PerforceActionFstat alloc] init] autorelease];
	
	[action runFor:owner selector:aSelector withPath:depotPath includeDeletes:includeDeletes];
}

+ (void) defaultRunFor:(id)owner
		 selector:(SEL)aSelector
		 withPaths:(NSArray*)depotPaths
		 privateData:(NSObject*)privateData
		 includeDeletes:(BOOL)includeDeletes
{
	PerforceActionFstat* action = [[[PerforceActionFstat alloc] init] autorelease];
	
	[action runFor:owner selector:aSelector withPaths:depotPaths privateData:privateData includeDeletes:includeDeletes];
}

		
- (void) dealloc
{
	[fOwner release];
	[fFilesArray release];
	[fPrivateData release];
	
	[super dealloc];
}

- (void) runFor:(id)owner selector:(SEL)aSelector withPath:(NSString*)dirPath
{
    BOOL showDeletedFiles = [[AppDefaults defaultAppDefaults] getShowDeletedFiles];
    
    [self runFor:owner selector:aSelector withPath:dirPath includeDeletes:showDeletedFiles];
}

- (void) runFor:(id)owner 
         selector:(SEL)aSelector 
		 withPath:(NSString*)dirPath
		 includeDeletes:(BOOL)includeDeletes
{
    BOOL showEntireDepot  = [[AppDefaults defaultAppDefaults] getShowEntireDepot];

    NSMutableArray* commandAndArgs = [[[NSMutableArray alloc] init] autorelease];
	
	fOwner			= [owner retain];
	fSelector		= aSelector;
	fIncludeDeletes	= includeDeletes;
	
	[commandAndArgs addObject:@"fstat"];
	
    if ( !showEntireDepot )
    {
		[commandAndArgs addObject:@"-C"];
    }
    
	[commandAndArgs addObject:dirPath];
    
	[self runAction:commandAndArgs stdInString:nil readToEOF:YES];
}

- (void) runFor:(id)owner 
         selector:(SEL)aSelector 
		 withPaths:(NSArray*)depotPaths
		 privateData:(NSObject*)privateData
		 includeDeletes:(BOOL)includeDeletes
{
    BOOL showEntireDepot  = [[AppDefaults defaultAppDefaults] getShowEntireDepot];

    NSMutableArray* commandAndArgs = [[[NSMutableArray alloc] init] autorelease];
	
	fOwner			= [owner retain];
	fSelector		= aSelector;
	fIncludeDeletes	= includeDeletes;
	fPrivateData	= [privateData retain];
	
	NSMutableString* fileString = [[[NSMutableString alloc] init] autorelease];
	
	int n;
	int num = [depotPaths count];
	
	for ( n = 0; n < num; n++ )
	{
		[fileString appendString:[depotPaths objectAtIndex:n]];
		
		[fileString appendString:kNewLine];
	}
	
	[commandAndArgs addObject:@"-x"];
	
	[commandAndArgs addObject:@"-"];

	[commandAndArgs addObject:@"fstat"];
	
    if ( !showEntireDepot )
    {
		[commandAndArgs addObject:@"-C"];
    }
        
	[self runAction:commandAndArgs stdInString:fileString readToEOF:YES];
}


- (void) processOutput: (NSString*) perforceOutput
{
	fFilesArray = [[PerforceOutputParsers parseFstatOutput:perforceOutput includeDeletes:fIncludeDeletes] retain];
}

static NSString* kNoSuchFile = @"no such file";
static NSString* kNotInClient = @"not in client";

- (void) processError: (NSString*) perforceOutput
{
	NSRange nsRange1 = [perforceOutput rangeOfString:kNoSuchFile];
	NSRange nsRange2 = [perforceOutput rangeOfString:kNotInClient];

	if ( (nsRange1.location == NSNotFound) && (nsRange2.location == NSNotFound) )
	{
		SendErrorMessage ([perforceOutput cString]);
	}
}

- (NSArray*) getFiles
{
	return fFilesArray;
}

- (NSObject*) getPrivateData
{
	return fPrivateData;
}

@end
# Change User Description Committed
#5 4225 Jeff Argast Added resolve support, reveal in finder, drag and drop edit,
show local files, and showing added files.
#4 3941 Jeff Argast Simplified fstat, branches, and job parsing.
#3 3149 Jeff Argast Add default changelist to pending list always even if default is empty
#2 3111 Jeff Argast Made multiple selection smarter by operating on the entire selection as an atomic
operation with the server. Also partially fixed the read only window to not wrap
at the window boundary.  I did the same for the editable window, but now the problem
appears to be that p4 change -o is breaking its output at some character location
before the string gets into the editor (at least I think that is the problem).
#1 2732 Jeff Argast Initial submission of P4Cocoa