2009-08-05 08:59:46 +00:00
|
|
|
/*
|
2010-01-01 20:11:34 +00:00
|
|
|
Copyright 2010 Hardcoded Software (http://www.hardcoded.net)
|
2009-08-05 08:59:46 +00:00
|
|
|
|
|
|
|
This software is licensed under the "HS" License as described in the "LICENSE" file,
|
|
|
|
which should be included with this package. The terms are also available at
|
|
|
|
http://www.hardcoded.net/licenses/hs_license
|
|
|
|
*/
|
|
|
|
|
2009-06-01 09:55:11 +00:00
|
|
|
#import "ResultWindow.h"
|
2009-12-30 16:34:41 +00:00
|
|
|
#import "../../cocoalib/Dialogs.h"
|
|
|
|
#import "../../cocoalib/ProgressController.h"
|
|
|
|
#import "../../cocoalib/RegistrationInterface.h"
|
|
|
|
#import "../../cocoalib/Utils.h"
|
2009-06-01 09:55:11 +00:00
|
|
|
#import "AppDelegate.h"
|
|
|
|
#import "Consts.h"
|
|
|
|
|
|
|
|
@implementation ResultWindow
|
|
|
|
/* Override */
|
|
|
|
- (void)awakeFromNib
|
|
|
|
{
|
|
|
|
[super awakeFromNib];
|
2009-10-30 14:40:17 +00:00
|
|
|
[[self window] setTitle:@"dupeGuru Music Edition"];
|
2010-02-17 16:37:42 +00:00
|
|
|
NSMutableIndexSet *deltaColumns = [NSMutableIndexSet indexSetWithIndexesInRange:NSMakeRange(2,7)];
|
2010-02-11 18:22:31 +00:00
|
|
|
[deltaColumns removeIndex:6];
|
|
|
|
[outline setDeltaColumns:deltaColumns];
|
2009-06-01 09:55:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Actions */
|
|
|
|
- (IBAction)removeDeadTracks:(id)sender
|
|
|
|
{
|
|
|
|
[(PyDupeGuru *)py scanDeadTracks];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)resetColumnsToDefault:(id)sender
|
|
|
|
{
|
|
|
|
NSMutableArray *columnsOrder = [NSMutableArray array];
|
|
|
|
[columnsOrder addObject:@"0"];
|
|
|
|
[columnsOrder addObject:@"2"];
|
|
|
|
[columnsOrder addObject:@"3"];
|
|
|
|
[columnsOrder addObject:@"4"];
|
|
|
|
[columnsOrder addObject:@"16"];
|
|
|
|
NSMutableDictionary *columnsWidth = [NSMutableDictionary dictionary];
|
|
|
|
[columnsWidth setObject:i2n(214) forKey:@"0"];
|
|
|
|
[columnsWidth setObject:i2n(63) forKey:@"2"];
|
|
|
|
[columnsWidth setObject:i2n(50) forKey:@"3"];
|
|
|
|
[columnsWidth setObject:i2n(50) forKey:@"4"];
|
|
|
|
[columnsWidth setObject:i2n(57) forKey:@"16"];
|
|
|
|
[self restoreColumnsPosition:columnsOrder widths:columnsWidth];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (IBAction)startDuplicateScan:(id)sender
|
|
|
|
{
|
|
|
|
if ([matches numberOfRows] > 0)
|
|
|
|
{
|
|
|
|
if ([Dialogs askYesNo:@"Are you sure you want to start a new duplicate scan?"] == NSAlertSecondButtonReturn) // NO
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
NSUserDefaults *ud = [NSUserDefaults standardUserDefaults];
|
|
|
|
PyDupeGuru *_py = (PyDupeGuru *)py;
|
|
|
|
[_py setScanType:[ud objectForKey:@"scanType"]];
|
|
|
|
[_py enable:[ud objectForKey:@"scanTagTrack"] scanForTag:@"track"];
|
|
|
|
[_py enable:[ud objectForKey:@"scanTagArtist"] scanForTag:@"artist"];
|
|
|
|
[_py enable:[ud objectForKey:@"scanTagAlbum"] scanForTag:@"album"];
|
|
|
|
[_py enable:[ud objectForKey:@"scanTagTitle"] scanForTag:@"title"];
|
|
|
|
[_py enable:[ud objectForKey:@"scanTagGenre"] scanForTag:@"genre"];
|
|
|
|
[_py enable:[ud objectForKey:@"scanTagYear"] scanForTag:@"year"];
|
|
|
|
[_py setMinMatchPercentage:[ud objectForKey:@"minMatchPercentage"]];
|
|
|
|
[_py setWordWeighting:[ud objectForKey:@"wordWeighting"]];
|
|
|
|
[_py setMixFileKind:[ud objectForKey:@"mixFileKind"]];
|
|
|
|
[_py setMatchSimilarWords:[ud objectForKey:@"matchSimilarWords"]];
|
2010-01-15 10:19:24 +00:00
|
|
|
NSInteger r = n2i([py doScan]);
|
2009-06-01 09:55:11 +00:00
|
|
|
if (r == 1)
|
|
|
|
[Dialogs showMessage:@"You cannot make a duplicate scan with only reference directories."];
|
|
|
|
if (r == 3)
|
|
|
|
{
|
|
|
|
[Dialogs showMessage:@"The selected directories contain no scannable file."];
|
|
|
|
[app toggleDirectories:nil];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Public */
|
|
|
|
- (void)initResultColumns
|
|
|
|
{
|
|
|
|
NSTableColumn *refCol = [matches tableColumnWithIdentifier:@"0"];
|
|
|
|
_resultColumns = [[NSMutableArray alloc] init];
|
|
|
|
[_resultColumns addObject:[matches tableColumnWithIdentifier:@"0"]]; // File Name
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:1 title:@"Directory" width:120 refCol:refCol]];
|
2009-10-30 14:40:17 +00:00
|
|
|
NSTableColumn *sizeCol = [self getColumnForIdentifier:2 title:@"Size (MB)" width:63 refCol:refCol];
|
|
|
|
[[sizeCol dataCell] setAlignment:NSRightTextAlignment];
|
|
|
|
[_resultColumns addObject:sizeCol];
|
|
|
|
NSTableColumn *timeCol = [self getColumnForIdentifier:3 title:@"Time" width:50 refCol:refCol];
|
|
|
|
[[timeCol dataCell] setAlignment:NSRightTextAlignment];
|
|
|
|
[_resultColumns addObject:timeCol];
|
|
|
|
NSTableColumn *brCol = [self getColumnForIdentifier:4 title:@"Bitrate" width:50 refCol:refCol];
|
|
|
|
[[brCol dataCell] setAlignment:NSRightTextAlignment];
|
|
|
|
[_resultColumns addObject:brCol];
|
2009-06-01 09:55:11 +00:00
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:5 title:@"Sample Rate" width:60 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:6 title:@"Kind" width:40 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:7 title:@"Creation" width:120 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:8 title:@"Modification" width:120 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:9 title:@"Title" width:120 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:10 title:@"Artist" width:120 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:11 title:@"Album" width:120 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:12 title:@"Genre" width:80 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:13 title:@"Year" width:40 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:14 title:@"Track Number" width:40 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:15 title:@"Comment" width:120 refCol:refCol]];
|
2009-10-30 14:40:17 +00:00
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:16 title:@"Match %" width:57 refCol:refCol]];
|
2009-06-01 09:55:11 +00:00
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:17 title:@"Words Used" width:120 refCol:refCol]];
|
|
|
|
[_resultColumns addObject:[self getColumnForIdentifier:18 title:@"Dupe Count" width:80 refCol:refCol]];
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Notifications */
|
|
|
|
- (void)jobCompleted:(NSNotification *)aNotification
|
|
|
|
{
|
|
|
|
[super jobCompleted:aNotification];
|
|
|
|
id lastAction = [[ProgressController mainProgressController] jobId];
|
|
|
|
if ([lastAction isEqualTo:jobScanDeadTracks])
|
|
|
|
{
|
2010-01-15 10:19:24 +00:00
|
|
|
NSInteger deadTrackCount = [(PyDupeGuru *)py deadTrackCount];
|
2009-06-01 09:55:11 +00:00
|
|
|
if (deadTrackCount > 0)
|
|
|
|
{
|
|
|
|
NSString *msg = @"Your iTunes Library contains %d dead tracks ready to be removed. Continue?";
|
|
|
|
if ([Dialogs askYesNo:[NSString stringWithFormat:msg,deadTrackCount]] == NSAlertFirstButtonReturn)
|
|
|
|
[(PyDupeGuru *)py removeDeadTracks];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[Dialogs showMessage:@"You have no dead tracks in your iTunes Library"];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@end
|