// // P4WorkspaceDefaults.m // Perforce // // Created by Adam Czubernat on 13/12/2013. // Copyright (c) 2013 Perforce Software, Inc. All rights reserved. // #import "P4WorkspaceDefaults.h" #import "P4Workspace.h" #import "P4Defaults.h" NSString * const P4WorkspaceDefaultsChangedNotification = @"P4WorkspaceDefaultsChangedNotification"; NSString * const P4WorkspaceDefaultsTagFilterNotification = @"P4WorkspaceDefaultsTagFilterNotification"; NSString * const P4WorkspaceDefaultsProjectsDirectoryName = @"Projects"; static P4WorkspaceDefaults *sharedInstance; @interface P4WorkspaceDefaults () { NSString *workspace; } @property (nonatomic, retain) NSDictionary *mapping; - (id)initWithWorkspace:(NSString *)workspace; - (NSURL *)projectsDirectoryURL; - (void)updateProjectsDirectory; - (void)updateSymbolicLinks:(NSArray *)created deleted:(NSArray *)deleted; - (void)updateFinderSidebarItems:(NSArray *)created deleted:(NSArray *)deleted PS_DEPRECATED; // Optional making finder items for every mapped folder @end @implementation P4WorkspaceDefaults @synthesize favoriteFolders, favoriteTags, favoriteNames, filteredTags; @synthesize iconView; @synthesize mapping; #pragma mark - PSDefaults override + (P4WorkspaceDefaults *)sharedInstance { return sharedInstance; } - (NSString *)keyPath { NSAssert(workspace, @"P4WorkspaceDefaults key missing a workspace"); return [NSString stringWithFormat:@"Workspaces.%@", workspace]; } #pragma mark - Public - (id)initWithWorkspace:(NSString *)workspaceName { workspace = [workspaceName stringByReplacingOccurrencesOfString:@"." withString:@"_"]; NSAssert(workspace, @"P4WorkspaceDefaults missing a workspace"); if (self = [super init]) { [self updateProjectsDirectory]; [self updateMapping]; } return self; } - (NSURL *)projectsDirectoryURL { static NSURL *directoryURL; if (!directoryURL) { // NSArray *URLs = [[NSFileManager defaultManager] // URLsForDirectory:NSDocumentDirectory inDomains:NSUserDomainMask]; // NSURL *parentURL = [URLs firstObject]; NSURL *parentURL = [NSURL fileURLWithPath:NSHomeDirectory() isDirectory:YES]; NSString *directoryName = P4WorkspaceDefaultsProjectsDirectoryName; directoryURL = [parentURL URLByAppendingPathComponent:directoryName isDirectory:YES]; } if (![directoryURL checkResourceIsReachableAndReturnError:NULL]) { [[NSFileManager defaultManager] createDirectoryAtURL:directoryURL withIntermediateDirectories:NO attributes:0 error:NULL]; } return directoryURL; } - (void)updateProjectsDirectory { NSURL *directoryURL = [self projectsDirectoryURL]; // Check finder items NSArray *finderItems = [[NSWorkspace sharedWorkspace] finderSidebarItems]; if (![finderItems containsObject:directoryURL]) { [[NSWorkspace sharedWorkspace] insertFinderSidebarItem:directoryURL afterItem:nil]; } } - (void)updateSymbolicLinks:(NSArray *)created deleted:(NSArray *)deleted { NSMutableArray *symlinks = [NSMutableArray array]; NSFileManager *filemanager = [NSFileManager defaultManager]; NSURL *projectsURL = [self projectsDirectoryURL]; NSArray *projectsContents = [filemanager contentsOfDirectoryAtURL:projectsURL includingPropertiesForKeys: @[ NSURLIsDirectoryKey, NSURLNameKey, NSURLIsSymbolicLinkKey, ] options:NSDirectoryEnumerationSkipsHiddenFiles error:NULL]; // Enumerate directory for (NSURL *fileUrl in projectsContents) { NSNumber *isSymlink = nil; [fileUrl getResourceValue:&isSymlink forKey:NSURLIsSymbolicLinkKey error:NULL]; if (isSymlink.boolValue) { NSString *dest = [filemanager destinationOfSymbolicLinkAtPath:fileUrl.path error:NULL]; [symlinks addObject:dest]; // Remove deleted symlinks if ([deleted containsObject:dest]) [filemanager removeItemAtURL:fileUrl error:NULL]; } } for (NSString *path in created) { // Create symlink if (![symlinks containsObject:path]) { NSString *name = [path lastPathComponent]; // Check for duplicate name NSString *projectsPath = projectsURL.path; NSString *symlinkPath = [projectsPath stringByAppendingPathComponent:name]; for (NSInteger i = 1; [filemanager fileExistsAtPath:symlinkPath]; i++) symlinkPath = [projectsPath stringByAppendingPathComponent: [NSString stringWithFormat:@"%@ %ld", name, i]]; /* Commented because it's problematic for map-unmap when deleting from remote */ // // Create folder if doesn't exist // if ([path hasSuffix:@"/"] && // [path isSubpath:[P4Workspace sharedInstance].root] && // ![filemanager fileExistsAtPath:path]) { // [filemanager createDirectoryAtPath:path withIntermediateDirectories:YES // attributes:nil error:NULL]; // } [filemanager createSymbolicLinkAtURL:[NSURL fileURLWithPath:symlinkPath isDirectory:NO] withDestinationURL:[NSURL fileURLWithPath:path isDirectory:YES] error:NULL]; } } } // Optional making finder items for every mapped folder - (void)updateFinderSidebarItems:(NSArray *)created deleted:(NSArray *)deleted { NSArray *mappingPaths = self.mapping.allValues; // Check finder items NSURL *lastItem = nil; NSArray *finderItems = [[NSWorkspace sharedWorkspace] finderSidebarItems]; for (NSURL *item in finderItems) { if ([deleted containsObject:item.path]) [[NSWorkspace sharedWorkspace] removeFinderSidebarItem:item]; if ([mappingPaths containsObject:item.path]) lastItem = item; } for (NSString *path in created) { NSURL *item = [NSURL fileURLWithPath:path isDirectory:YES]; if (![finderItems containsObject:item]) { [[NSWorkspace sharedWorkspace] insertFinderSidebarItem:item afterItem:lastItem]; lastItem = item; } } } #pragma mark - Public + (void)setWorkspace:(NSString *)workspace { sharedInstance = nil; if (workspace) { sharedInstance = [[P4WorkspaceDefaults alloc] initWithWorkspace:workspace]; // Save last workspace details P4Defaults *defaults = [P4Defaults sharedInstance]; NSMutableDictionary *users = [NSMutableDictionary dictionaryWithDictionary:defaults.users]; [users setObject:workspace forKey:[P4Workspace sharedInstance].username]; defaults.users = users; defaults.workspace = workspace; } } - (void)updateMapping { NSDictionary *prevMapping = self.mapping; NSArray *prevPaths = [prevMapping allValues]; // Prepare new mapping NSMutableArray *newPaths = [NSMutableArray array]; NSMutableDictionary *newMapping = [NSMutableDictionary dictionary]; [[[P4Workspace sharedInstance] mapping] enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) { if ([key hasPrefix:@"-"]) return; NSString *path = [obj stringByRemovingSuffix:@"/"]; [newPaths addObject:path]; [newMapping setObject:path forKey:key]; }]; // Check for changes in mapping NSMutableArray *deleted = [prevPaths mutableCopy]; [deleted removeObjectsInArray:newPaths]; NSMutableArray *created = [newPaths mutableCopy]; [created removeObjectsInArray:prevPaths]; // Update symlinks and finder sidebar if (created.count || deleted.count) { [self updateSymbolicLinks:created deleted:deleted]; // [self updateFinderSidebarItems:created deleted:deleted]; // Optional making finder items for every mapped folder } self.mapping = newMapping; } - (void)addFavoriteFolder:(NSString *)folder { NSMutableArray *mutableFolders = [NSMutableArray arrayWithArray:favoriteFolders]; [mutableFolders addObject:folder]; self.favoriteFolders = mutableFolders; [[NSNotificationCenter defaultCenter] postNotificationName:P4WorkspaceDefaultsChangedNotification object:folder]; } - (void)removeFavoriteFolder:(NSString *)folder { NSMutableArray *mutableFolders = [NSMutableArray arrayWithArray:favoriteFolders]; [mutableFolders removeObject:folder]; self.favoriteFolders = mutableFolders; if (favoriteNames) { NSMutableDictionary *names = [NSMutableDictionary dictionaryWithDictionary:favoriteNames]; [names removeObjectForKey:folder]; self.favoriteNames = names; } [[NSNotificationCenter defaultCenter] postNotificationName:P4WorkspaceDefaultsChangedNotification object:folder]; } - (void)renameFavoriteFolder:(NSString *)folder name:(NSString *)name { NSMutableDictionary *mutableNames = [NSMutableDictionary dictionaryWithDictionary:favoriteNames]; [mutableNames setObject:name forKey:folder]; self.favoriteNames = mutableNames; } - (void)removeFavoriteTag:(NSString *)tag { NSMutableArray *mutableTags = [NSMutableArray arrayWithArray:favoriteTags]; [mutableTags removeObject:tag]; self.favoriteTags = mutableTags; if ([filteredTags containsObject:tag]) { [self setFilteredTag:tag]; } } - (void)setFilteredTag:(NSString *)tag { NSMutableArray *filtered = [NSMutableArray arrayWithArray:filteredTags]; if ([filtered containsObject:tag]) [filtered removeObject:tag]; else [filtered addObject:tag]; self.filteredTags = filtered; [[NSNotificationCenter defaultCenter] postNotificationName:P4WorkspaceDefaultsTagFilterNotification object:tag]; } @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/P4WorkspaceDefaults.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/P4WorkspaceDefaults.m | |||||
#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/P4WorkspaceDefaults.m | |||||
#1 | 10744 | alan_petersen | Rename/move file(s) | ||
//guest/perforce_software/piper/Perforce/Classes/P4WorkspaceDefaults.m | |||||
#1 | 8919 | Matt Attaway | Initial add of Piper, a lightweight Perforce client for artists and designers. |