// // P4Connection.h // Perforce // // Created by Adam Czubernat on 04/10/2013. // Copyright (c) 2013 Perforce Software, Inc. All rights reserved. // #import <Foundation/Foundation.h> @class P4Operation, P4Connection; extern NSString * const P4ErrorDomain; typedef enum { P4ErrorPathNotUnderRoot = 4135, P4ErrorUnknownClient = 6179, P4ErrorMustReferToClient = 6244, P4ErrorFilesWithWildcards = 6226, P4ErrorChangeDeleted = 6349, P4ErrorFileExclusiveLock = 6430, P4ErrorAlreadyOpened = 6431, P4ErrorAlreadyEdited = 6437, P4ErrorAddExistingFile = 6438, // sev 1 sys 6 sub 294 P4ErrorMoveToExistingFile = 6633, P4ErrorEditMovedFile = 6637, P4ErrorOpenedLaterRevision = 6493, P4ErrorResolve = 6481, P4ErrorCannotRollback = 6493, P4ErrorMustResolve = 6495, P4ErrorMustSyncResolve = 6441, P4ErrorMustSubmitResolve = 6765, P4ErrorOpenedBy = 6443, // sev 1 sys 6 sub 299 P4ErrorAddExisting = 6444, P4ErrorSyncFileOpened = 6491, P4ErrorFileNotInView = 6511, P4ErrorEditReadOnlyFile = 6513, P4ErrorNoSuchFile = 6519, P4ErrorFileNotOnClient = 6520, P4ErrorFileNotOpened = 6526, P4ErrorFileUpToDate = 6532, P4ErrorShelveExclusive = 6574, P4ErrorRenameWithWildcards = 6577, P4ErrorDestinationNotInView = 6621, P4ErrorRevertMoveDeleteFile = 6630, P4ErrorReconcileWithWildcards = 6821, P4ErrorReconcile = 6827, P4ErrorInvalidPassword = 7189, P4ErrorSubmitUnresolved = 7210, P4ErrorNoFilesToSubmit = 7214, P4ErrorSubmitAborted = 7219, P4ErrorSessionExpired = 7480, } P4Error; extern NSString * const P4SessionExpiredNotification; typedef void (^P4ReceiveBlock_t)(P4Operation *operation); typedef void (^P4ResponseBlock_t)(P4Operation *operation, NSArray *response); @interface P4Operation : NSOperation @property (nonatomic, readonly) NSArray *response; @property (nonatomic, readonly) NSArray *errors; @property (nonatomic, readonly) CGFloat progress; @property (nonatomic, readonly) PSTimeStamp timestamp; @property (nonatomic, assign) long completed; @property (nonatomic, assign) long total; @property (nonatomic, retain) P4Operation *parentOperation; @property (atomic, copy) NSString *name; - (NSError *)error; // Combines all errors into single error - (NSArray *)errorsWithCode:(P4Error)errorCode; - (void)ignoreErrors:(NSArray *)errors; - (void)ignoreErrorsWithCode:(P4Error)errorCode; @end @interface P4ConnectOperation : P4Operation @property (nonatomic, retain) NSString *host; @property (nonatomic, retain) NSString *username; @end @interface P4CommandOperation : P4Operation @property (nonatomic, retain) NSString *command; @property (nonatomic, retain) NSArray *arguments; @property (nonatomic, retain) NSString *prompt; @property (nonatomic, retain) NSDictionary *input; @end @interface P4ThreadOperation : P4Operation @property (nonatomic, copy) void (^block)(P4ThreadOperation *operation); - (void)setResponseBlock:(P4ResponseBlock_t)block; - (void)addError:(NSError *)error; @end @interface P4Connection : NSObject - (id)initWithName:(NSString *)name; - (id)initWithConnection:(P4Connection *)connection name:(NSString *)name; // Clone connection - (void)connectWithHost:(NSString *)host username:(NSString *)username response:(P4ResponseBlock_t)responseBlock; - (BOOL)isConnected; - (void)disconnect; - (void)setWorkspace:(NSString *)workspace root:(NSString *)path; - (void)setCharset:(NSString *)charset; - (void)setIgnoreFile:(NSString *)path; - (NSString *)ticket; - (void)setTicket:(NSString *)ticket; - (P4Operation *)run:(NSString *)command response:(P4ResponseBlock_t)responseBlock; - (P4Operation *)run:(NSString *)command arguments:(NSArray *)args response:(P4ResponseBlock_t)responseBlock; - (P4Operation *)run:(NSString *)command arguments:(NSArray *)args prompt:(NSString *)prompt input:(NSDictionary *)input receive:(P4ReceiveBlock_t)receiveBlock response:(P4ResponseBlock_t)responseBlock; - (void)runOperation:(NSOperation *)operation; - (P4Operation *)runBlock:(void (^)(P4ThreadOperation *operation))block; - (NSString *)name; - (NSArray *)operations; - (void)cancelAllOperations; - (void)setNextOperation:(NSOperation *)operation; - (void)waitUntilAllOperationsAreFinished; - (void)setSuspended:(BOOL)flag; - (BOOL)isSuspended; @end
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 15071 | alan_petersen |
Populate -o //guest/perforce_software/piper/... //guest/alan_petersen/piper/.... |
||
//guest/perforce_software/piper/mac/main/Perforce/Classes/Client/P4Connection.h | |||||
#2 | 12961 | alan_petersen |
Piper 2.0 Mega Update New Features/Functionality - Added help menu redirecting to URL. - Added readonly property for creating new workspaces. - Added html hyperlinks for Copy link functionality. - Added functionality for managing Finder Favorite items in sidebar. - Redesigned the way mapping is stored in Piper. - First version of syncing finder sidebar items with workspace mapping. - Small sorting improvements. - Creating Projects directory inside users home folder. - Adding Projects folder to finder sidebar item. - Creating and removing symbolic links accordingly to mapped folders. - Preventing duplicate names in symbolic links. - Refreshing symbolic links on mapping change inside application. - Storing workspace and server details in p4 configuration for other applications to use. - Added contextual menu items for Finder integration. - Added services menu for Adobe Illustrator integration. - Keyboard shortcuts for Illustrator integration. - Code refactoring and fixes for mapping issues. - Added Finder functionality to edit all files in folder. - Added user friendly message when editing a file using Finder outside the workspace. - Implemented hidden automatic login when opening application using Finder integration. - Logging to file in ~/Library/Logs - Unified workspace and all files views to show both local and depot files and folders. - Removed my workspace view references and logic. - Editing unmapped files on server. - First version of adding file to unmapped folders. - Showing opened by and edit actions in column details for all depot files. - Improved mappings functionality. - Enabled same feature options for mapped and unmapped folders and files. - Redesigned from scratch mapping and unmapping procedures for adding and removing files. - Implemented cleaning workspace using new mapping functionality. Removed debug overlay coloring. - Automated workspace creation - Improvements in editing files already mapped to workspace. - Implemented deleting remote files. - Implemented first version of move operation for remote files. - Removing last workspace information when disconnecting from workspace using app menu. - Implemented editing and submitting using symbolic links in project folder. New finder menu service for symbolic links Show in Piper which acts like share link functionality. - New icons for files and folders not tracked in the filesystem. - Improvements in showing file using share link. - Switched to new way of retrieving files in order to show user changes. - Redesigned and implemented new functionality for chaining operations with mapping. - Improvements and redesign of Edit/add actions to use new chaining logic . Fixed issue with file edit. - Improvements in window showing when using services. - Simplified file loading so the local files appears only when remote are also loaded. - Improved deleting of untracked files to avoid mapping and marking for delete. - Enabling simple copy paste and moving of remote and local files. - Added abort for exception handling in order to force crashing application on critical failures - Added custom exception handling for catching runtime errors to log and crash instead of continuing in unstable state. - Changed file copying to use mark for add . - Simplified and fixed responding file representations to mapping changes. Bug Fixes - Fixed crash when synchronizing. - Fixed sync issue when downloading directory without file size information. - Fixed issue with unread list crashing when file is not existing on disk. - Fixed incorrect sync progress calculation. - Removed relative path issues. - Fixed many of case-sensitivity problems. - Fixed deprecated methods and related issues in OS X 10.10. - Fixed folder rename not updating in column view. Revised and fixed many potential problems from implicit casting. - Fixed missing sync button on fast sync completion. - Refreshing mapping on synchronization. Fixed symbolic links not appearing until app is restarted. - Fixed latest crashing of autosync. - Fixed loading indicator issues. - Fixed and redesigned submit dialog to work correctly with Submit All Files option in Finder. - Fixed multiple error messages on network outage. Redesigned showing errors in main window. - Fixed opening random locations when using Finder integration. - Fixed issue when panel was detached from parent window. - Fixed bug when creating new workspace wouldn't store default settings. - Fixed memory issues with network operations. - Fixes in relogging mappings and file listing. - Improvements in editing unmapped files. - Fixed crash when adding file outside workspace. - Fixed breadcrumbs control issue. - Fixed issue with double parent folders when opening unmapped files. - Fixed crashes on sync after mapping new files. - Fixed issue with editing file using Finder -- Merging code and additional fixes in add button functionality. - Fixed unsync not working - Fixed submit panel issue not selecting files with different name case. - Fixed missing revert and sync to workspace actions in some cases. - Fixed issue with Submit and Edit finder actions. Improvements in stability of finder integration. - Fixed issue with unsubmitted folders breaking status of files inside. - Fixed issue with added files not showing correct icon and status. - Fixed bug with file edit resulting in a new directory named exactly like a file. - Fixed issue with reloading of subpath resulting in untracked folders. - Fixed mapping issue when result was always view mapping not relative. - Fixed submit panel showing more than once. - Fixed illustrator services not working. - Fixed userdefaults preferences problem with workspace name being null. - Fixed userdefaults keypath problem of dot-containing workspace names. - Forcing recreating of browser to possibly prevent pre-10.10 errors with automatic workspace selection. - Fixed adding file to depot not presenting correct icon. - Fixed issues with reverting a file that was marked for add. - Presenting error when trying to submit untracked files. - Fixed issue when submit files service crashed when using unmapped files. - Fixed file representation disappearing when removing file. - Fixed issue with symlinks resolving working on 10.10 only. Issue related to workspace selection not showing. - Fixed error panel method calls unavailable in Mac OS versions before 10.10. Issue related to hanging error panels. - Fixed removing a local file resulting in action progress freezing. - Fixed open file not working after edit. - Fixing crash when mapping changed. Issue related to moving local file to unmapped folder and other similar cases. |
||
#1 | 11252 | alan_petersen | Rename/move file(s) | ||
//guest/perforce_software/piper/mac/Perforce/Classes/Client/P4Connection.h | |||||
#1 | 10744 | alan_petersen | Rename/move file(s) | ||
//guest/perforce_software/piper/Perforce/Classes/Client/P4Connection.h | |||||
#1 | 8919 | Matt Attaway | Initial add of Piper, a lightweight Perforce client for artists and designers. |