// // InfoPanelController.m // Perforce // // Created by Adam Czubernat on 21/05/14. // Copyright (c) 2014 Perforce Software, Inc. All rights reserved. // #import "InfoPanelController.h" #import "PSDirectorySizeOperation.h" @interface InfoPanelController () <NSWindowDelegate, NSOutlineViewDataSource, NSOutlineViewDelegate> { NSMutableArray *outlineItems; __weak IBOutlet NSOutlineView *outlineView; NSOperation *sizeOperation; } - (NSArray *)generalInfoForItems:(NSArray *)items; - (NSArray *)metadataForItems:(NSArray *)items; - (NSArray *)fileInfoForItems:(NSArray *)items; - (NSDictionary *)detailInfoWithName:(NSString *)name value:(id)value; - (void)expandItems; - (void)expandWindowFrame; - (IBAction)outlineViewExpandAction:(NSButton *)sender; @end @implementation InfoPanelController @synthesize icon; - (NSString *)windowNibName { return NSStringFromClass([self class]); } - (void)windowDidLoad { [super windowDidLoad]; [self.window setDelegate:self]; [(NSPanel *)self.window setBecomesKeyOnlyIfNeeded:YES]; } - (void)windowWillClose:(NSNotification *)notification { [sizeOperation cancel]; sizeOperation = nil; } #pragma mark - Public - (void)setItems:(NSArray *)items { // Cancel size calculation [sizeOperation cancel]; [self willChangeValueForKey:@"outlineItems"]; outlineItems = [NSMutableArray array]; P4Item *firstItem = [items firstObject]; if (!items.count) { [outlineItems addObject:@{ @"cell" : @"NoSelectionCell" }]; } else { [outlineItems addObjectsFromArray: @[ @{ @"cell" : @"HeaderCell", @"name" : (items.count == 1 ? firstItem.name : [NSString stringWithFormat:@"%ld documents", items.count]), @"icon" : firstItem.icon }, @{ @"cell" : @"GroupCell", @"name" : @"General", @"items": [self generalInfoForItems:items] }, @{ @"cell" : @"GroupCell", @"name" : @"Status", @"items": [self metadataForItems:items] }, @{ @"cell" : @"GroupCell", @"name" : @"More Info", @"items": [self fileInfoForItems:items] }, ] ]; } [self didChangeValueForKey:@"outlineItems"]; [self performSelectorOnMainThread:@selector(expandItems) withObject:nil waitUntilDone:NO]; } #pragma mark - Private - (NSArray *)generalInfoForItems:(NSArray *)items { NSFileManager *filemanager = [NSFileManager defaultManager]; P4Item *firstItem = [items firstObject]; NSString *kind, *where; NSDate *created, *modified; NSMutableDictionary *sizeDetail = [[self detailInfoWithName:@"Size" value:@"Loading..."] mutableCopy]; if (items.count > 1) { where = [firstItem parent].path; kind = [NSString stringWithFormat:@"%ld documents", items.count]; } else { where = [firstItem.path stringByDeletingPath]; NSString *path = firstItem.localPath; if ([filemanager fileExistsAtPath:path]) { MDItemRef itemRef = MDItemCreate(NULL, (CFStringRef)path); kind = CFBridgingRelease(MDItemCopyAttribute(itemRef, kMDItemKind)); created = CFBridgingRelease(MDItemCopyAttribute(itemRef, kMDItemContentCreationDate)); modified = CFBridgingRelease(MDItemCopyAttribute(itemRef, kMDItemContentModificationDate)); CFRelease(itemRef); } else { kind = firstItem.isDirectory ? @"Folder" : @"Untracked file"; } } NSArray *paths = [items valueForKey:@"path"]; if ([[firstItem path] hasPrefix:@"//"]) { // Depot files sizeOperation = [[P4Workspace sharedInstance] calculateSizeOfPaths:paths response:^(P4Operation *operation, NSArray *response) { sizeOperation = nil; if (operation.errors) return; NSNumber *count = [response valueForKeyPath:@"@sum.fileCount"]; NSNumber *size = [response valueForKeyPath:@"@sum.fileSize"]; [self willChangeValueForKey:@"outlineItems"]; NSString *total = [NSString stringWithFormat:@"%@ for %ld items", [NSString stringWithByteCount:size.integerValue], count.integerValue]; [sizeDetail setObject:total forKey:@"value"]; [self didChangeValueForKey:@"outlineItems"]; }]; } else { // Local files sizeOperation = [PSDirectorySizeOperation operationWithPaths:paths block:^(long long size, NSInteger count) { sizeOperation = nil; [self willChangeValueForKey:@"outlineItems"]; NSString *total = [NSString stringWithFormat:@"%@ for %ld items", [NSString stringWithByteCount:size], count]; [sizeDetail setObject:total forKey:@"value"]; [self didChangeValueForKey:@"outlineItems"]; }]; NSOperationQueue *queue = [[NSOperationQueue alloc] init]; [queue addOperation:sizeOperation]; } return [NSArray arrayWithObjects: [self detailInfoWithName:@"Kind" value:kind], sizeDetail, [self detailInfoWithName:@"Where" value:where], !created ? nil : // Break an array here if there's no additional data [self detailInfoWithName:@"Created" value:created], [self detailInfoWithName:@"Modified" value:modified], nil]; } - (NSArray *)metadataForItems:(NSArray *)items { P4Item *item = [items firstObject]; NSMutableDictionary *metadata = item.metadata.mutableCopy; // Don't show metadata for multiple files or if file isn't tracked if (items.count > 1 || metadata.count == 0) return @[ @{ @"cell" : @"EmptyCell" } ]; // Transform values NSArray *dateKeys = @[ @"headModTime" ]; for (NSString *key in dateKeys) { id value = [metadata objectForKey:key]; if (value) { value = [NSDate dateWithTimeIntervalSince1970:[value doubleValue]]; [metadata setObject:value forKey:key]; } } NSArray *byteKeys = @[ @"fileSize" ]; for (NSString *key in byteKeys) { id value = [metadata objectForKey:key]; if (value) { value = [NSString stringWithByteCount:[value integerValue]]; [metadata setObject:value forKey:key]; } } // Supported keys NSArray *keys = @[ @"action", @"headRev", @"headChange", @"otherOpen0", @"otherAction0", @"depotFile", @"dir", @"fileSize", @"headModTime", @"attr-tags" ]; NSArray *names = @[@"Action", @"Revision", @"Changelist", @"Opened By", @"Action", @"Depot Path", @"Depot Path", @"Depot Size", @"Modified In", @"Tags" ]; NSMutableArray *infoItems = [NSMutableArray array]; [keys enumerateObjectsUsingBlock:^(id key, NSUInteger idx, BOOL *stop) { id name = [names objectAtIndex:idx]; id value = [metadata objectForKey:key]; if (value) [infoItems addObject:[self detailInfoWithName:name ?: key value:value]]; }]; // NSMutableDictionary *unused = metadata.mutableCopy; // [unused removeObjectsForKeys:keys]; // PSLog(@"Unused keys %@", unused); return infoItems; } - (NSArray *)fileInfoForItems:(NSArray *)items { P4Item *item = [items firstObject]; NSString *path; MDItemRef itemRef; // Don't show info for multiple files or if file isn't tracked if (items.count > 1 || !(path = item.localPath) || !(itemRef = MDItemCreate(NULL, (CFStringRef)path))) { return @[ @{ @"cell" : @"EmptyCell" } ]; } NSDictionary *fileMetadata; CFArrayRef arrayRef = MDItemCopyAttributeNames(itemRef); fileMetadata = CFBridgingRelease(MDItemCopyAttributes(itemRef, arrayRef)); CFRelease(arrayRef); CFRelease(itemRef); // Supported keys NSArray *keys = @[ @"kMDItemDateAdded", @"kMDItemPixelWidth", @"kMDItemPixelHeight", @"kMDItemResolutionHeightDPI", @"kMDItemHasAlphaChannel", @"kMDItemProfileName", @"kMDItemLayerNames", @"kMDItemTitle", @"kMDItemNumberOfPages", @"kMDItemPageWidth", @"kMDItemPageHeight", @"kMDItemCreator", ]; NSMutableArray *infoItems = [NSMutableArray array]; [keys enumerateObjectsUsingBlock:^(id key, NSUInteger idx, BOOL *stop) { id value = [fileMetadata objectForKey:key]; id name = CFBridgingRelease(MDSchemaCopyDisplayNameForAttribute((CFStringRef)key)); if (name && value) [infoItems addObject:[self detailInfoWithName:name value:value]]; }]; // NSMutableDictionary *unused = fileMetadata.mutableCopy; // [unused removeObjectsForKeys:keys]; // PSLog(@"Unused keys %@", unused); return infoItems; } - (NSDictionary *)detailInfoWithName:(NSString *)name value:(id)value { NSString *identifier = @"DetailCell"; if ([value isKindOfClass:[NSDate class]]) { identifier = @"DetailDateCell"; } else if ([value isKindOfClass:[NSArray class]]) { value = [value componentsJoinedByString:@", "]; } else if ([value isKindOfClass:[NSNumber class]]) { value = [value description]; } return @{ @"cell" : identifier, @"name" : name, @"value" : value ?: @"null", }; } #pragma mark OutlineView Expanding - (void)expandItems { [outlineView expandItem:nil expandChildren:YES]; [self expandWindowFrame]; } - (void)expandWindowFrame { // Get content rect NSInteger lastRow = [outlineView numberOfRows]-1; CGRect contentRect = CGRectUnion(CGRectZero, [outlineView rectOfRow:lastRow]); contentRect = [self.window frameRectForContentRect:contentRect]; CGFloat height = fmin(contentRect.size.height, [self.window maxSize].height); // Set window frame CGRect frame = [self.window frame]; frame.origin.y += frame.size.height - height; frame.size.height = height; [[self.window animator] setFrame:frame display:YES]; } - (IBAction)outlineViewExpandAction:(NSButton *)sender { NSInteger row = [outlineView rowForView:sender]; id item = [outlineView itemAtRow:row]; if ([outlineView isItemExpanded:item]) [[outlineView animator] collapseItem:item]; else [[outlineView animator] expandItem:item]; [self expandWindowFrame]; } #pragma mark - NSOutlineView delegate - (NSView *)outlineView:(NSOutlineView *)view viewForTableColumn:(NSTableColumn *)tableColumn item:(id)item { NSDictionary *dictionary = [item representedObject]; NSString *identifier = [dictionary valueForKey:@"cell"]; NSTableCellView *cell = [outlineView makeViewWithIdentifier:identifier owner:self]; return cell; } - (CGFloat)outlineView:(NSOutlineView *)view heightOfRowByItem:(id)item { NSDictionary *dictionary = [item representedObject]; NSString *identifier = [dictionary objectForKey:@"cell"]; return [outlineView rowHeightForIdentifier:identifier]; } @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/WindowControllers/InfoPanelController.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/WindowControllers/InfoPanelController.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. |