// // P4FileItem.m // Perforce // // Created by Adam Czubernat on 29.05.2013. // Copyright (c) 2013 Perforce Software, Inc. All rights reserved. // #import "P4FileItem.h" #import "PSFileEvents.h" @interface P4FileItem () { NSColor *overlay; } - (id)initWithURL:(NSURL *)url parentItem:(P4Item *)parent; - (void)loadMetadata:(NSDictionary *)metadata; - (void)propagatePathChange:(NSString *)path; @end @implementation P4FileItem #pragma mark - P4Item Override - (id)init { NSURL *url = [NSURL fileURLWithPath:[P4Workspace sharedInstance].root isDirectory:YES]; self = [self initWithURL:url parentItem:nil]; if (self) { flags.directory = YES; name = @"Workspace"; self.remotePath = @"//"; [[P4Workspace sharedInstance] addObserver:self]; } return self; } - (NSColor *)overlay { return overlay; } - (id)defaultAction { if (!flags.tracked) return [P4ItemAction actionForItem:self name:@"Open" selector:@selector(open)]; if (flags.directory) { return [P4ItemAction actionForItem:self name:@"Edit all files" selector:@selector(checkout)]; } else { return [P4ItemAction actionForItem:self name:@"Open and Checkout" selector:@selector(openWithCheckout)]; } } - (NSArray *)actions { NSMutableArray *actions = (NSMutableArray *)[super actions]; // Override actions return actions; } - (void)loadPath:(NSString *)preloadPath { NSAssert([preloadPath hasSuffix:@"/"], @"Loading path without trailing slash"); NSString *rootPath = [[P4Workspace sharedInstance] root]; NSString *client = [[P4Workspace sharedInstance] workspace]; NSString *clientPrefix = [NSString stringWithFormat:@"//%@/", client]; NSMutableArray *items = [NSMutableArray array]; children = nil; flags.loading = YES; NSString *relative = [preloadPath relativePath:self.localPath]; relative = [relative stringByRemovingSuffix:@"/"]; NSString *subPath = self.localPath; NSMutableArray *subPaths = [NSMutableArray arrayWithObject:subPath]; for (NSString *component in [relative pathComponents]) { subPath = [subPath stringByAppendingFormat:@"%@/", component]; [subPaths addObject:subPath]; } for (NSString *subPath in subPaths) { P4FileItem *subPathParent = self; for (P4FileItem *item in items.reverseObjectEnumerator) { if ([item.localPath isEqualCaseInsensitive:subPath]) { subPathParent = item; break; } } NSError *error; NSArray *urls = [[NSFileManager defaultManager] contentsOfDirectoryAtURL:[NSURL fileURLWithPath:subPath isDirectory:YES] includingPropertiesForKeys:@[ NSURLIsDirectoryKey, NSURLNameKey, NSURLLabelColorKey, ] options:NSDirectoryEnumerationSkipsHiddenFiles error:&error]; if (!urls) { PSLog(@"File enumeration error: %@", error.localizedDescription); [self failWithError:error]; children = nil; return; } NSMutableArray *subPathChildren = [NSMutableArray array]; for (NSURL *url in urls) { P4FileItem *item = [[P4FileItem alloc] initWithURL:url parentItem:subPathParent]; item->flags.loading = YES; [subPathChildren addObject:item]; } [items addObjectsFromArray:subPathChildren]; subPathParent->children = subPathChildren; [subPathParent sortChildren]; } [[P4Workspace sharedInstance] listFiles:subPaths response:^(P4Operation *operation, NSArray *response) { if (operation.errors && ([self failWithError:operation.error], 1)) return; NSMutableArray *remotePaths = [NSMutableArray array]; NSMutableArray *localPaths = [NSMutableArray array]; NSMutableDictionary *records = [NSMutableDictionary dictionary]; for (NSDictionary *record in response) { NSString *remote = [record objectForKey:@"depotFile"]; NSString *local = [record objectForKey:@"clientFile"]; if (!local) { NSString *clientPath = [record objectForKey:@"dir"]; NSString *clientRelative = [clientPath relativePath:clientPrefix]; local = [NSString stringWithFormat:@"%@%@/", rootPath, clientRelative]; } [records setObject:record forKey:local.lowercaseString]; if (local) [localPaths addObject:local]; if (remote) [remotePaths addObject:remote]; } NSArray *unread = nil; NSArray *shelved = nil; // // Get shelved files list // if (remotePaths.count) // shelved = [[P4Workspace sharedInstance] shelvedForPaths:remotePaths]; // // Get unread files list // if (records.count) // unread = [[P4Workspace sharedInstance] unreadForPaths:localPaths]; for (P4FileItem *item in items) { NSDictionary *record = [records objectForKey:item.localPath.lowercaseString]; [item loadMetadata:record]; item->flags.loading = NO; item->flags.shelved = [shelved containsObject:item.remotePath]; item->flags.unread = [unread containsObject:item.localPath]; } [self finishLoading]; }]; } #pragma mark - Private - (id)initWithURL:(NSURL *)url parentItem:(P4Item *)parentItem { if (self = [super init]) { parent = parentItem; // Get directory info NSNumber *dir = nil; [url getResourceValue:&dir forKey:NSURLIsDirectoryKey error:NULL]; flags.directory = dir.boolValue; NSString *resourceName; [url getResourceValue:&resourceName forKey:NSURLNameKey error:NULL]; name = resourceName; NSColor *color; [url getResourceValue:&color forKey:NSURLLabelColorKey error:NULL]; overlay = color; self.localPath = dir.boolValue ? [url.path stringByAppendingString:@"/"] : url.path; } return self; } - (void)loadMetadata:(NSDictionary *)metadataDictionary { metadata = metadataDictionary; [self refreshTags]; self.remotePath = nil; status = nil; flags.tracked = NO; if (!metadata) return; if (flags.directory) { NSString *client = [[P4Workspace sharedInstance] workspace]; NSString *clientPrefix = [NSString stringWithFormat:@"//%@/", client]; self.remotePath = [metadata objectForKey:@"dir"]; self.remotePath = [self.remotePath relativePath:clientPrefix]; self.remotePath = [NSString stringWithFormat:@"//%@/", self.remotePath]; flags.tracked = self.remotePath != nil; } else { self.remotePath = [metadata objectForKey:@"depotFile"]; // Set metadata status = [metadata objectForKey:@"action"]; NSString *user = [metadata objectForKey:@"otherOpen0"]; NSDictionary *info = [[P4Workspace sharedInstance] userInfo:user]; statusOwner = [info objectForKey:@"Email"] ?: user; flags.tracked = [metadata objectForKey:@"isMapped"] != nil; } } - (void)propagatePathChange:(NSString *)newPath { if ([newPath isEqualToString:self.localPath]) return; name = newPath.lastPathComponent; self.localPath = newPath; if (![self isDirectory]) return; // Traversing NSMutableArray *items = [NSMutableArray array]; if (children.count) [items addObjectsFromArray:children]; int count = 0; while (items.count) { P4FileItem *item = [items lastObject]; [items removeLastObject]; item.localPath = [item.parent.localPath stringByAppendingPath:item->name]; if (item->flags.directory) [item.localPath stringByAppendingString:@"/"]; PSLog(@"%@", item.localPath); if (item->children.count) [items addObjectsFromArray:item->children]; count++; } } #pragma mark P4Workspace Events - (void)fileCreated:(NSString *)filePath { P4Item *item = [self itemAtPath:filePath]; if (item) { PSLog(@"WARNING! Creating duplicate %@", filePath); [self fileModified:filePath]; return; } NSString *parentPath = [filePath stringByDeletingPath]; P4Item *parentItem = [self itemAtPath:parentPath]; if (!parentItem || !parentItem->children) // Not loaded yet return; // Update children by adding new item P4Item *newItem = [[P4FileItem alloc] initWithURL:[NSURL fileURLWithPath:filePath] parentItem:parentItem]; // Add item to parent NSMutableArray *array = [NSMutableArray arrayWithArray:parentItem->children]; [array addObject:newItem]; // Sort files alphanumerically parentItem->children = array; [parentItem sortChildren]; [parentItem finishLoading]; } - (void)fileRemoved:(NSString *)filePath { P4Item *item = [self itemAtPath:filePath]; P4Item *parentItem = (P4Item *)item.parent; if (item.isUnread) [item markAsRead]; if (!parentItem || !parentItem->children || !item) return; NSMutableArray *array = [NSMutableArray arrayWithArray:parentItem->children]; [array removeObject:item]; parentItem->children = array; [parentItem finishLoading]; [item invalidate]; } - (void)fileMoved:(NSString *)oldPath toPath:(NSString *)newPath { P4Item *oldItem = [self itemAtPath:oldPath]; P4Item *oldParentItem = (P4Item *)oldItem.parent; if (oldItem.isUnread) [oldItem markAsRead]; // Remove old item from displaying if (oldParentItem && oldItem) { NSMutableArray *array = [NSMutableArray arrayWithArray:oldParentItem->children]; [array removeObject:oldItem]; oldParentItem->children = array; } [oldParentItem finishLoading]; [oldItem invalidate]; // Create new item for display NSString *newParentPath = [newPath stringByDeletingPath]; P4Item *newParentItem = [self itemAtPath:newParentPath]; if (!newParentItem || !newParentItem->children) return; P4Item *newItem = [[P4FileItem alloc] initWithURL:[NSURL fileURLWithPath:newPath] parentItem:newParentItem]; // Add item to parent NSMutableArray *array = [NSMutableArray arrayWithArray:newParentItem->children]; [array addObject:newItem]; // Sort files alphanumerically newParentItem->children = array; [newParentItem sortChildren]; [newParentItem finishLoading]; } - (void)fileRenamed:(NSString *)oldPath toPath:(NSString *)newPath { P4Item *oldItem = [self itemAtPath:oldPath]; if (oldItem.isUnread) [oldItem markAsRead]; [(P4FileItem *)oldItem propagatePathChange:newPath]; [oldItem finishLoading]; } - (void)fileModified:(NSString *)path { P4FileItem *item = (P4FileItem *)[self itemAtPath:path]; if (!item) return; // Update overlay NSURL *url = [NSURL fileURLWithPath:path]; NSColor *color; [url getResourceValue:&color forKey:NSURLLabelColorKey error:NULL]; item->overlay = color; [item finishLoading]; } - (void)file:(NSString *)filePath updated:(NSDictionary *)info { BOOL remote = [filePath hasPrefix:@"//"]; NSString *parentPath = remote ? [self.remotePath substringFromIndex:1] : self.localPath; if ([filePath hasSuffix:@"/"]) filePath = [filePath substringToIndex:filePath.length-1]; if ([filePath isEqualCaseInsensitive:parentPath]) return; NSString *relative = [filePath substringFromIndex:parentPath.length]; NSArray *components = [relative pathComponents]; // Traversing P4Item *item = self; for (NSString *component in components) { if (!item->children.count) // Not loaded return; for (P4Item *child in item->children) { if ([child->name isEqualCaseInsensitive:component]) { item = child; if (item.isDirectory && !item.isUnread) { if (!item->flags.tracked) { // Directory wasn't tracked NSString *relativePath = [filePath relativePath:item.localPath]; NSString *depotPath = [info objectForKey:@"depotFile"]; depotPath = [depotPath stringByRemovingSuffix:relativePath]; item.remotePath = depotPath; item->flags.tracked = depotPath.length > 0; } // Mark as unread item->flags.unread = YES; [item finishLoading]; } break; } } } NSString *itemPath = remote ? item.remotePath : item.localPath; if ([itemPath isEqualCaseInsensitive:filePath]) { if (!item->metadata) { item.remotePath = [info objectForKey:@"depotFile"]; item->metadata = info; [item refreshTags]; } item->flags.tracked = YES; item->flags.unread = YES; [item finishLoading]; } } @end
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#2 | 18548 | Robert Cowham | Merge from Main. | ||
#1 | 16507 | perforce_software | Move to main branch. | ||
//guest/perforce_software/piper/mac/R2.0/Perforce/Classes/Deprecated/P4FileItem.m | |||||
#1 | 12962 | alan_petersen |
Populate -o //guest/perforce_software/piper/mac/main/... //guest/perforce_software/piper/mac/R2.0/.... |
||
//guest/perforce_software/piper/mac/main/Perforce/Classes/Deprecated/P4FileItem.m | |||||
#1 | 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. |
||
//guest/perforce_software/piper/mac/main/Perforce/Classes/Items/P4FileItem.m | |||||
#1 | 11252 | alan_petersen | Rename/move file(s) | ||
//guest/perforce_software/piper/mac/Perforce/Classes/Items/P4FileItem.m | |||||
#1 | 10744 | alan_petersen | Rename/move file(s) | ||
//guest/perforce_software/piper/Perforce/Classes/Items/P4FileItem.m | |||||
#1 | 8919 | Matt Attaway | Initial add of Piper, a lightweight Perforce client for artists and designers. |