transmission/macosx/Controller.m

1303 lines
40 KiB
Mathematica
Raw Normal View History

2006-01-12 17:43:21 +00:00
/******************************************************************************
* $Id$
*
2006-03-23 12:39:39 +00:00
* Copyright (c) 2005-2006 Transmission authors and contributors
2006-01-12 17:43:21 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
#import <IOKit/IOMessage.h>
2006-01-12 17:43:21 +00:00
2006-03-23 12:39:39 +00:00
#import "Controller.h"
#import "Torrent.h"
#import "TorrentCell.h"
#import "StringAdditions.h"
#import "Utils.h"
#import "TorrentTableView.h"
2006-01-12 17:43:21 +00:00
2006-01-12 18:57:23 +00:00
#import "PrefsController.h"
2006-01-12 18:54:46 +00:00
#define TOOLBAR_OPEN @"Toolbar Open"
#define TOOLBAR_REMOVE @"Toolbar Remove"
#define TOOLBAR_INFO @"Toolbar Info"
#define TOOLBAR_PAUSE_ALL @"Toolbar Pause All"
#define TOOLBAR_RESUME_ALL @"Toolbar Resume All"
2006-01-12 17:43:21 +00:00
2006-01-29 22:01:08 +00:00
#define WEBSITE_URL @"http://transmission.m0k.org/"
#define FORUM_URL @"http://transmission.m0k.org/forum/"
#define VERSION_PLIST_URL @"http://transmission.m0k.org/version.plist"
2006-01-12 18:57:23 +00:00
#define GROWL_PATH @"/Library/PreferencePanes/Growl.prefPane/Contents/Resources/GrowlHelperApp.app"
2006-01-12 18:29:20 +00:00
2006-01-12 17:43:21 +00:00
static void sleepCallBack( void * controller, io_service_t y,
natural_t messageType, void * messageArgument )
{
Controller * c = controller;
[c sleepCallBack: messageType argument: messageArgument];
}
2006-01-12 21:45:45 +00:00
2006-01-12 17:43:21 +00:00
@implementation Controller
2006-03-23 12:39:39 +00:00
- (id) init
{
if ((self = [super init]))
{
fLib = tr_init();
fTorrents = [[NSMutableArray alloc] initWithCapacity: 10];
}
2006-03-23 12:39:39 +00:00
return self;
}
- (void) dealloc
{
[fTorrents release];
[fInfoController release];
2006-03-23 12:39:39 +00:00
tr_close( fLib );
[super dealloc];
}
2006-01-12 17:43:21 +00:00
- (void) awakeFromNib
{
2006-03-23 12:39:39 +00:00
[fPrefsController setPrefsWindow: fLib];
2006-01-12 18:57:23 +00:00
fDefaults = [NSUserDefaults standardUserDefaults];
2006-03-23 12:39:39 +00:00
fInfoController = [[InfoWindowController alloc] initWithWindowNibName: @"InfoWindow"];
2006-01-12 18:57:23 +00:00
[fAdvancedBarItem setState: [fDefaults
boolForKey: @"UseAdvancedBar"] ? NSOnState : NSOffState];
2006-03-23 12:39:39 +00:00
2006-01-12 17:43:21 +00:00
fToolbar = [[NSToolbar alloc] initWithIdentifier: @"Transmission Toolbar"];
[fToolbar setDelegate: self];
[fToolbar setAllowsUserCustomization: YES];
[fToolbar setAutosavesConfiguration: YES];
2006-01-12 18:57:23 +00:00
[fWindow setToolbar: fToolbar];
[fWindow setDelegate: self];
fStatusBar = YES;
if (![fDefaults boolForKey: @"StatusBar"])
[self toggleStatusBar: nil];
[fActionButton setToolTip: @"Shortcuts for performing special actions."];
2006-01-12 17:43:21 +00:00
2006-03-23 12:39:39 +00:00
[fTableView setTorrents: fTorrents];
[[fTableView tableColumnWithIdentifier: @"Torrent"] setDataCell:
[[TorrentCell alloc] init]];
2006-01-12 17:43:21 +00:00
[fTableView registerForDraggedTypes:
[NSArray arrayWithObject: NSFilenamesPboardType]];
2006-01-12 17:43:21 +00:00
2006-01-12 18:57:23 +00:00
//Register for sleep notifications
IONotificationPortRef notify;
io_object_t anIterator;
if (fRootPort= IORegisterForSystemPower(self, & notify,
sleepCallBack, & anIterator))
2006-01-12 17:43:21 +00:00
{
CFRunLoopAddSource( CFRunLoopGetCurrent(),
IONotificationPortGetRunLoopSource( notify ),
kCFRunLoopCommonModes );
}
2006-01-12 18:57:23 +00:00
else
NSLog( @"Could not IORegisterForSystemPower" );
2006-01-12 17:43:21 +00:00
//load torrents from history
2006-03-23 12:39:39 +00:00
Torrent * torrent;
NSDictionary * historyItem;
2006-01-12 18:57:23 +00:00
NSEnumerator * enumerator = [[fDefaults arrayForKey: @"History"] objectEnumerator];
while ((historyItem = [enumerator nextObject]))
if ((torrent = [[Torrent alloc] initWithHistory: historyItem lib: fLib]))
{
[fTorrents addObject: torrent];
[torrent release];
}
[self torrentNumberChanged];
//set sort
fSortType = [fDefaults stringForKey: @"Sort"];
if ([fSortType isEqualToString: @"Name"])
fCurrentSortItem = fNameSortItem;
else if ([fSortType isEqualToString: @"State"])
fCurrentSortItem = fStateSortItem;
else
fCurrentSortItem = fDateSortItem;
[fCurrentSortItem setState: NSOnState];
2006-01-12 18:57:23 +00:00
//check and register Growl if it is installed for this user or all users
NSFileManager * manager = [NSFileManager defaultManager];
fHasGrowl = [manager fileExistsAtPath: GROWL_PATH]
|| [manager fileExistsAtPath: [[NSString stringWithFormat: @"~%@",
GROWL_PATH] stringByExpandingTildeInPath]];
2006-01-12 18:40:47 +00:00
[self growlRegister: self];
2006-01-20 01:51:07 +00:00
//initialize badging
fBadger = [[Badger alloc] init];
2006-03-23 12:39:39 +00:00
//timer to update the interface
fCompleted = 0;
[self updateUI: nil];
fTimer = [NSTimer scheduledTimerWithTimeInterval: 1.0 target: self
selector: @selector( updateUI: ) userInfo: nil repeats: YES];
2006-01-29 22:01:08 +00:00
[[NSRunLoop currentRunLoop] addTimer: fTimer
forMode: NSModalPanelRunLoopMode];
2006-01-12 17:43:21 +00:00
[[NSRunLoop currentRunLoop] addTimer: fTimer
2006-01-12 18:20:48 +00:00
forMode: NSEventTrackingRunLoopMode];
2006-01-29 22:01:08 +00:00
//timer to check for updates
2006-01-29 22:01:08 +00:00
[self checkForUpdateTimer: nil];
fUpdateTimer = [NSTimer scheduledTimerWithTimeInterval: 60.0
target: self selector: @selector( checkForUpdateTimer: )
userInfo: nil repeats: YES];
[self sortTorrents];
//show windows
[fWindow makeKeyAndOrderFront: nil];
if ([fDefaults boolForKey: @"InfoVisible"])
[self showInfo: nil];
2006-01-12 18:20:48 +00:00
}
2006-01-20 01:51:07 +00:00
- (void) windowDidBecomeKey: (NSNotification *) n
{
/* Reset the number of recently completed downloads */
fCompleted = 0;
}
2006-01-12 17:43:21 +00:00
- (BOOL) applicationShouldHandleReopen: (NSApplication *) app
hasVisibleWindows: (BOOL) flag
{
[self showMainWindow: nil];
2006-01-12 17:43:21 +00:00
return NO;
}
- (NSApplicationTerminateReply) applicationShouldTerminate: (NSApplication *) sender
2006-01-12 18:57:23 +00:00
{
2006-03-23 12:39:39 +00:00
int active = 0;
Torrent * torrent;
NSEnumerator * enumerator = [fTorrents objectEnumerator];
while( ( torrent = [enumerator nextObject] ) )
if( [torrent isActive] )
active++;
2006-02-10 20:06:39 +00:00
if (active > 0 && [fDefaults boolForKey: @"CheckQuit"])
{
NSString * message = active == 1
? @"There is an active torrent. Do you really want to quit?"
: [NSString stringWithFormat:
@"There are %d active torrents. Do you really want to quit?",
active];
NSBeginAlertSheet(@"Confirm Quit",
@"Quit", @"Cancel", nil,
fWindow, self,
@selector(quitSheetDidEnd:returnCode:contextInfo:),
nil, nil, message);
return NSTerminateLater;
2006-03-23 12:39:39 +00:00
}
2006-01-12 18:57:23 +00:00
return NSTerminateNow;
}
- (void) quitSheetDidEnd: (NSWindow *) sheet returnCode: (int) returnCode
contextInfo: (void *) contextInfo
2006-01-12 17:43:21 +00:00
{
2006-01-12 18:57:23 +00:00
[NSApp stopModal];
[NSApp replyToApplicationShouldTerminate:
(returnCode == NSAlertDefaultReturn)];
2006-01-12 18:57:23 +00:00
}
- (void) applicationWillTerminate: (NSNotification *) notification
2006-01-12 18:57:23 +00:00
{
// Stop updating the interface
2006-01-12 17:43:21 +00:00
[fTimer invalidate];
2006-01-29 22:01:08 +00:00
[fUpdateTimer invalidate];
2006-01-12 17:43:21 +00:00
//clear badge
[fBadger clearBadge];
2006-03-23 12:39:39 +00:00
[fBadger release];
//remember info window state
[fDefaults setBool: [[fInfoController window] isVisible] forKey: @"InfoVisible"];
//save history
[self updateTorrentHistory];
2006-03-23 12:39:39 +00:00
// Stop running torrents
[fTorrents makeObjectsPerformSelector: @selector(stop)];
2006-01-12 17:43:21 +00:00
2006-01-12 18:57:23 +00:00
// Wait for torrents to stop (5 seconds timeout)
2006-01-12 17:43:21 +00:00
NSDate * start = [NSDate date];
Torrent * torrent;
while ([fTorrents count] > 0)
2006-01-12 17:43:21 +00:00
{
2006-03-23 12:39:39 +00:00
torrent = [fTorrents objectAtIndex: 0];
while( [[NSDate date] timeIntervalSinceDate: start] < 5 &&
2006-03-23 12:39:39 +00:00
![torrent isPaused] )
2006-01-12 17:43:21 +00:00
{
usleep( 100000 );
2006-03-23 12:39:39 +00:00
[torrent update];
2006-01-12 17:43:21 +00:00
}
2006-03-23 12:39:39 +00:00
[fTorrents removeObject: torrent];
2006-01-12 17:43:21 +00:00
}
2006-01-12 18:57:23 +00:00
}
2006-01-12 17:43:21 +00:00
2006-01-12 18:57:23 +00:00
- (void) showPreferenceWindow: (id) sender
{
2006-01-12 18:58:57 +00:00
if (![fPrefsWindow isVisible])
2006-02-10 19:17:54 +00:00
[fPrefsWindow center];
2006-03-23 12:39:39 +00:00
[fPrefsWindow makeKeyAndOrderFront: nil];
2006-01-12 17:43:21 +00:00
}
- (void) folderChoiceClosed: (NSOpenPanel *) s returnCode: (int) code
contextInfo: (Torrent *) torrent
2006-01-12 17:43:21 +00:00
{
2006-01-12 18:57:23 +00:00
if (code == NSOKButton)
{
2006-03-23 12:39:39 +00:00
[torrent setFolder: [[s filenames] objectAtIndex: 0]];
if ([fDefaults boolForKey: @"AutoStartDownload"])
[torrent start];
[fTorrents addObject: torrent];
[self torrentNumberChanged];
2006-01-12 17:43:21 +00:00
}
2006-01-12 17:43:21 +00:00
[NSApp stopModal];
}
- (void) application: (NSApplication *) sender
openFiles: (NSArray *) filenames
{
BOOL autoStart = [fDefaults boolForKey: @"AutoStartDownload"];
NSString * downloadChoice = [fDefaults stringForKey: @"DownloadChoice"];
NSString * torrentPath;
2006-03-23 12:39:39 +00:00
Torrent * torrent;
2006-01-12 18:57:23 +00:00
NSEnumerator * enumerator = [filenames objectEnumerator];
while ((torrentPath = [enumerator nextObject]))
2006-01-12 17:43:21 +00:00
{
if (!(torrent = [[Torrent alloc] initWithPath: torrentPath lib: fLib]))
2006-01-12 17:43:21 +00:00
continue;
2006-01-12 18:58:57 +00:00
/* Add it to the "File > Open Recent" menu */
[[NSDocumentController sharedDocumentController]
noteNewRecentDocumentURL: [NSURL fileURLWithPath: torrentPath]];
if ([downloadChoice isEqualToString: @"Ask"])
2006-01-12 18:58:57 +00:00
{
NSOpenPanel * panel = [NSOpenPanel openPanel];
2006-03-23 12:39:39 +00:00
2006-01-12 18:58:57 +00:00
[panel setPrompt: @"Select Download Folder"];
[panel setAllowsMultipleSelection: NO];
[panel setCanChooseFiles: NO];
[panel setCanChooseDirectories: YES];
[panel setMessage: [NSString stringWithFormat:
@"Select the download folder for %@",
[torrentPath lastPathComponent]]];
[panel beginSheetForDirectory: nil file: nil types: nil
2006-01-12 18:58:57 +00:00
modalForWindow: fWindow modalDelegate: self didEndSelector:
@selector( folderChoiceClosed:returnCode:contextInfo: )
contextInfo: torrent];
2006-01-12 18:58:57 +00:00
[NSApp runModalForWindow: panel];
}
else
{
NSString * folder = [downloadChoice isEqualToString: @"Constant"]
? [[fDefaults stringForKey: @"DownloadFolder"]
stringByExpandingTildeInPath]
: [torrentPath stringByDeletingLastPathComponent];
[torrent setFolder: folder];
if (autoStart)
[torrent start];
[fTorrents addObject: torrent];
}
[torrent release];
2006-01-12 17:43:21 +00:00
}
[self torrentNumberChanged];
[self updateUI: nil];
[self sortTorrents];
[self updateTorrentHistory];
2006-01-12 17:43:21 +00:00
}
- (NSArray *) torrentsAtIndexes: (NSIndexSet *) indexSet
{
NSMutableArray * torrents = [NSMutableArray arrayWithCapacity: [indexSet count]];
unsigned int i;
for (i = [indexSet firstIndex]; i != NSNotFound; i = [indexSet indexGreaterThanIndex: i])
[torrents addObject: [fTorrents objectAtIndex: i]];
return torrents;
}
- (void) torrentNumberChanged
{
int count = [fTorrents count];
[fTotalTorrentsField setStringValue: [NSString stringWithFormat:
@"%d Torrent%s", count, count == 1 ? "" : "s"]];
}
2006-01-12 17:43:21 +00:00
- (void) advancedChanged: (id) sender
{
2006-01-12 18:57:23 +00:00
[fAdvancedBarItem setState: ![fAdvancedBarItem state]];
[fDefaults setBool: [fAdvancedBarItem state] forKey: @"UseAdvancedBar"];
2006-01-12 18:57:23 +00:00
2006-01-12 18:33:20 +00:00
[fTableView display];
}
2006-01-12 18:57:23 +00:00
//called on by applescript
2006-01-12 18:33:20 +00:00
- (void) open: (NSArray *) files
{
[self performSelectorOnMainThread: @selector(cantFindAName:)
withObject: files waitUntilDone: NO];
2006-01-12 17:43:21 +00:00
}
- (void) openShowSheet: (id) sender
{
NSOpenPanel * panel = [NSOpenPanel openPanel];
NSArray * fileTypes = [NSArray arrayWithObject: @"torrent"];
2006-03-23 12:39:39 +00:00
2006-01-12 17:43:21 +00:00
[panel setAllowsMultipleSelection: YES];
[panel setCanChooseFiles: YES];
[panel setCanChooseDirectories: NO];
2006-01-12 17:43:21 +00:00
[panel beginSheetForDirectory: nil file: nil types: fileTypes
2006-01-12 17:43:21 +00:00
modalForWindow: fWindow modalDelegate: self didEndSelector:
@selector( openSheetClosed:returnCode:contextInfo: )
contextInfo: nil];
2006-01-12 17:43:21 +00:00
}
- (void) cantFindAName: (NSArray *) filenames
2006-01-12 17:43:21 +00:00
{
[self application: NSApp openFiles: filenames];
2006-01-12 17:43:21 +00:00
}
- (void) openSheetClosed: (NSOpenPanel *) panel returnCode: (int) code
2006-01-12 17:43:21 +00:00
contextInfo: (void *) info
{
if( code == NSOKButton )
[self performSelectorOnMainThread: @selector(cantFindAName:)
withObject: [panel filenames] waitUntilDone: NO];
2006-01-12 17:43:21 +00:00
}
- (void) resumeTorrent: (id) sender
{
2006-04-07 13:09:19 +00:00
[self resumeTorrentWithIndex: [fTableView selectedRowIndexes]];
2006-01-12 18:20:48 +00:00
}
2006-01-12 18:33:20 +00:00
- (void) resumeAllTorrents: (id) sender
{
2006-04-07 13:09:19 +00:00
[self resumeTorrentWithIndex: [NSIndexSet indexSetWithIndexesInRange:
NSMakeRange(0, [fTorrents count])]];
2006-01-12 18:33:20 +00:00
}
2006-04-07 13:09:19 +00:00
- (void) resumeTorrentWithIndex: (NSIndexSet *) indexSet
2006-01-12 18:20:48 +00:00
{
Torrent * torrent;
2006-04-07 13:09:19 +00:00
unsigned int i;
for (i = [indexSet firstIndex]; i != NSNotFound; i = [indexSet indexGreaterThanIndex: i])
{
torrent = [fTorrents objectAtIndex: i];
[torrent start];
}
2006-03-23 12:39:39 +00:00
[self updateUI: nil];
[self sortTorrents];
[self updateTorrentHistory];
2006-01-12 17:43:21 +00:00
}
- (void) stopTorrent: (id) sender
{
2006-04-07 13:09:19 +00:00
[self stopTorrentWithIndex: [fTableView selectedRowIndexes]];
2006-01-12 18:20:48 +00:00
}
2006-01-12 18:33:20 +00:00
- (void) stopAllTorrents: (id) sender
{
2006-04-07 13:09:19 +00:00
[self stopTorrentWithIndex: [NSIndexSet indexSetWithIndexesInRange:
NSMakeRange(0, [fTorrents count])]];
2006-01-12 18:33:20 +00:00
}
2006-04-07 13:09:19 +00:00
- (void) stopTorrentWithIndex: (NSIndexSet *) indexSet
2006-01-12 18:20:48 +00:00
{
Torrent * torrent;
2006-04-07 13:09:19 +00:00
unsigned int i;
for (i = [indexSet firstIndex]; i != NSNotFound; i = [indexSet indexGreaterThanIndex: i])
{
torrent = [fTorrents objectAtIndex: i];
[torrent stop];
}
2006-03-23 12:39:39 +00:00
[self updateUI: nil];
[self sortTorrents];
[self updateTorrentHistory];
2006-01-12 17:43:21 +00:00
}
2006-04-07 13:09:19 +00:00
- (void) removeTorrentWithIndex: (NSIndexSet *) indexSet
2006-01-12 18:29:20 +00:00
deleteTorrent: (BOOL) deleteTorrent
deleteData: (BOOL) deleteData
2006-01-12 18:57:23 +00:00
{
NSArray * torrents = [[self torrentsAtIndexes: indexSet] retain];
int active = 0;
Torrent * torrent;
NSEnumerator * enumerator = [torrents objectEnumerator];
while ((torrent = [enumerator nextObject]))
if ([torrent isActive])
active++;
2006-03-23 12:39:39 +00:00
2006-04-07 13:09:19 +00:00
if( active > 0 && [fDefaults boolForKey: @"CheckRemove"] )
2006-01-12 18:57:23 +00:00
{
2006-03-23 12:39:39 +00:00
NSDictionary * dict = [NSDictionary dictionaryWithObjectsAndKeys:
torrents, @"Torrents",
2006-04-05 13:52:00 +00:00
[NSNumber numberWithBool: deleteTorrent], @"DeleteTorrent",
[NSNumber numberWithBool: deleteData], @"DeleteData",
2006-03-23 12:39:39 +00:00
nil];
[dict retain];
NSString * title, * message;
int selected = [fTableView numberOfSelectedRows];
if (selected == 1)
{
title = [NSString stringWithFormat: @"Comfirm Removal of %@",
[[fTorrents objectAtIndex: [fTableView selectedRow]] name]];
message = @"This torrent is active. Do you really want to remove it?";
}
else
{
title = [NSString stringWithFormat: @"Comfirm Removal of %d Torrents", active];
if (selected == active)
message = [NSString stringWithFormat:
@"There are %d active torrents. Do you really want to remove them?", active];
else
message = [NSString stringWithFormat:
@"There are %d torrents (%d active). Do you really want to remove them?", selected, active];
}
2006-04-07 13:09:19 +00:00
NSBeginAlertSheet(title,
2006-03-23 12:39:39 +00:00
@"Remove", @"Cancel", nil, fWindow, self,
2006-04-07 13:09:19 +00:00
@selector(removeSheetDidEnd:returnCode:contextInfo:),
nil, dict, message);
2006-03-23 12:39:39 +00:00
}
else
{
[self confirmRemoveTorrents: torrents
2006-03-23 12:39:39 +00:00
deleteTorrent: deleteTorrent
deleteData: deleteData];
2006-01-12 18:57:23 +00:00
}
}
- (void) removeSheetDidEnd: (NSWindow *) sheet returnCode: (int) returnCode
contextInfo: (NSDictionary *) dict
2006-01-12 18:57:23 +00:00
{
[NSApp stopModal];
2006-03-23 12:39:39 +00:00
NSArray * torrents = [dict objectForKey: @"Torrents"];
BOOL deleteTorrent = [[dict objectForKey: @"DeleteTorrent"] boolValue];
BOOL deleteData = [[dict objectForKey: @"DeleteData"] boolValue];
[dict release];
if (returnCode == NSAlertDefaultReturn)
2006-01-12 18:57:23 +00:00
{
[self confirmRemoveTorrents: torrents
deleteTorrent: deleteTorrent
deleteData: deleteData];
2006-01-12 18:57:23 +00:00
}
else
[torrents release];
2006-01-12 18:57:23 +00:00
}
2006-03-23 12:39:39 +00:00
- (void) confirmRemoveTorrents: (NSArray *) torrents
2006-01-12 18:57:23 +00:00
deleteTorrent: (BOOL) deleteTorrent
deleteData: (BOOL) deleteData
2006-01-12 17:43:21 +00:00
{
2006-04-07 13:09:19 +00:00
Torrent * torrent;
NSEnumerator * enumerator = [torrents objectEnumerator];
while ((torrent = [enumerator nextObject]))
{
[torrent stop];
if( deleteData )
[torrent trashData];
if( deleteTorrent )
[torrent trashTorrent];
[fTorrents removeObject: torrent];
}
[torrents release];
[self torrentNumberChanged];
2006-03-23 12:39:39 +00:00
[fTableView deselectAll: nil];
2006-03-23 12:39:39 +00:00
[self updateUI: nil];
[self updateTorrentHistory];
2006-01-12 17:43:21 +00:00
}
2006-01-12 18:29:20 +00:00
- (void) removeTorrent: (id) sender
{
[self removeTorrentWithIndex: [fTableView selectedRowIndexes] deleteTorrent: NO deleteData: NO];
2006-01-12 18:29:20 +00:00
}
- (void) removeTorrentDeleteFile: (id) sender
{
2006-04-07 13:09:19 +00:00
[self removeTorrentWithIndex: [fTableView selectedRowIndexes] deleteTorrent: YES deleteData: NO];
2006-01-12 18:29:20 +00:00
}
- (void) removeTorrentDeleteData: (id) sender
{
2006-04-07 13:09:19 +00:00
[self removeTorrentWithIndex: [fTableView selectedRowIndexes] deleteTorrent: NO deleteData: YES];
2006-01-12 18:29:20 +00:00
}
- (void) removeTorrentDeleteBoth: (id) sender
{
2006-04-07 13:09:19 +00:00
[self removeTorrentWithIndex: [fTableView selectedRowIndexes] deleteTorrent: YES deleteData: YES];
2006-01-12 18:29:20 +00:00
}
- (void) revealTorrent: (id) sender
{
Torrent * torrent;
NSIndexSet * indexSet = [fTableView selectedRowIndexes];
unsigned int i;
for (i = [indexSet firstIndex]; i != NSNotFound; i = [indexSet indexGreaterThanIndex: i])
{
torrent = [fTorrents objectAtIndex: i];
[torrent reveal];
}
}
2006-01-12 17:43:21 +00:00
- (void) updateUI: (NSTimer *) t
{
NSEnumerator * enumerator = [fTorrents objectEnumerator];
2006-03-23 12:39:39 +00:00
Torrent * torrent;
while( ( torrent = [enumerator nextObject] ) )
{
[torrent update];
if( [torrent justFinished] )
{
/* Notifications */
[self notifyGrowl: [torrent name]];
if( ![fWindow isKeyWindow] )
fCompleted++;
[self sortTorrents];
2006-03-23 12:39:39 +00:00
}
}
2006-03-23 12:39:39 +00:00
[fTableView reloadData];
2006-01-12 18:57:23 +00:00
//Update the global DL/UL rates
float dl, ul;
2006-03-23 12:39:39 +00:00
tr_torrentRates( fLib, &dl, &ul );
2006-01-20 01:51:07 +00:00
NSString * downloadRate = [NSString stringForSpeed: dl];
NSString * uploadRate = [NSString stringForSpeed: ul];
[fTotalDLField setStringValue: downloadRate];
[fTotalULField setStringValue: uploadRate];
2006-01-12 17:43:21 +00:00
[self updateInfoStats];
2006-01-20 01:51:07 +00:00
//badge dock
[fBadger updateBadgeWithCompleted: fCompleted
2006-02-10 20:06:39 +00:00
uploadRate: ul >= 0.1 && [fDefaults boolForKey: @"BadgeUploadRate"]
? [NSString stringForSpeedAbbrev: ul] : nil
2006-02-10 20:06:39 +00:00
downloadRate: dl >= 0.1 && [fDefaults boolForKey: @"BadgeDownloadRate"]
? [NSString stringForSpeedAbbrev: dl] : nil];
2006-01-12 17:43:21 +00:00
}
- (void) updateTorrentHistory
{
2006-03-23 12:39:39 +00:00
NSMutableArray * history = [NSMutableArray
arrayWithCapacity: [fTorrents count]];
2006-03-23 12:39:39 +00:00
NSEnumerator * enumerator = [fTorrents objectEnumerator];
Torrent * torrent;
while( ( torrent = [enumerator nextObject] ) )
[history addObject: [torrent history]];
[fDefaults setObject: history forKey: @"History"];
}
- (void) showInfo: (id) sender
{
if ([[fInfoController window] isVisible])
[[fInfoController window] performClose: nil];
else
2006-03-23 12:39:39 +00:00
{
[fInfoController updateInfoForTorrents: [self torrentsAtIndexes:
[fTableView selectedRowIndexes]]];
[[fInfoController window] orderFront: nil];
2006-03-23 12:39:39 +00:00
}
}
- (void) updateInfo
{
if ([[fInfoController window] isVisible])
[fInfoController updateInfoForTorrents: [self torrentsAtIndexes:
[fTableView selectedRowIndexes]]];
}
- (void) updateInfoStats
2006-01-12 17:43:21 +00:00
{
if ([[fInfoController window] isVisible])
[fInfoController updateInfoStatsForTorrents: [self torrentsAtIndexes:
[fTableView selectedRowIndexes]]];
}
- (void) sortTorrents
{
//remember selected rows if needed
NSArray * selectedTorrents = nil;
int numSelected = [fTableView numberOfSelectedRows];
if (numSelected > 0 && numSelected < [fTorrents count])
selectedTorrents = [self torrentsAtIndexes: [fTableView selectedRowIndexes]];
NSSortDescriptor * nameDescriptor = [[[NSSortDescriptor alloc] initWithKey:
@"name" ascending: YES] autorelease],
* dateDescriptor = [[[NSSortDescriptor alloc] initWithKey:
@"date" ascending: YES] autorelease];
NSArray * descriptors;
if ([fSortType isEqualToString: @"Name"])
descriptors = [[NSArray alloc] initWithObjects: nameDescriptor, dateDescriptor, nil];
else if ([fSortType isEqualToString: @"State"])
{
NSSortDescriptor * stateDescriptor = [[[NSSortDescriptor alloc] initWithKey:
@"stateSortKey" ascending: NO] autorelease];
descriptors = [[NSArray alloc] initWithObjects: stateDescriptor, nameDescriptor, dateDescriptor, nil];
}
else
descriptors = [[NSArray alloc] initWithObjects: dateDescriptor, nameDescriptor, nil];
[fTorrents sortUsingDescriptors: descriptors];
[descriptors release];
[fTableView reloadData];
//set selected rows if needed
if (selectedTorrents)
{
[fTableView deselectAll: nil];
Torrent * torrent;
NSEnumerator * enumerator = [selectedTorrents objectEnumerator];
while ((torrent = [enumerator nextObject]))
[fTableView selectRow: [fTorrents indexOfObject: torrent] byExtendingSelection: YES];
}
}
- (void) setSort: (id) sender
{
[fCurrentSortItem setState: NSOffState];
fCurrentSortItem = sender;
[sender setState: NSOnState];
if (sender == fNameSortItem)
fSortType = @"Name";
else if (sender == fStateSortItem)
fSortType = @"State";
else
fSortType = @"Date";
[fDefaults setObject: fSortType forKey: @"Sort"];
[self sortTorrents];
2006-01-12 17:43:21 +00:00
}
- (int) numberOfRowsInTableView: (NSTableView *) t
2006-01-12 17:43:21 +00:00
{
return [fTorrents count];
2006-01-12 17:43:21 +00:00
}
- (void) tableView: (NSTableView *) t willDisplayCell: (id) cell
forTableColumn: (NSTableColumn *) tableColumn row: (int) rowIndex
{
2006-03-23 12:39:39 +00:00
[cell setTorrent: [fTorrents objectAtIndex: rowIndex]];
if( [fWindow isKeyWindow] && [fTableView isRowSelected: rowIndex] )
[cell setTextColor: [NSColor whiteColor]];
else
[cell setTextColor: [NSColor blackColor]];
2006-01-12 17:43:21 +00:00
}
- (BOOL) tableView: (NSTableView *) t acceptDrop:
(id <NSDraggingInfo>) info row: (int) row dropOperation:
(NSTableViewDropOperation) operation
{
[self application: NSApp openFiles: [[[info draggingPasteboard]
propertyListForType: NSFilenamesPboardType]
pathsMatchingExtensions: [NSArray arrayWithObject: @"torrent"]]];
2006-01-12 17:43:21 +00:00
return YES;
}
- (NSDragOperation) tableView: (NSTableView *) t validateDrop:
(id <NSDraggingInfo>) info proposedRow: (int) row
proposedDropOperation: (NSTableViewDropOperation) operation
{
NSPasteboard * pasteboard = [info draggingPasteboard];
if (![[pasteboard types] containsObject: NSFilenamesPboardType]
|| [[[pasteboard propertyListForType: NSFilenamesPboardType]
pathsMatchingExtensions: [NSArray arrayWithObject: @"torrent"]]
count] == 0)
return NSDragOperationNone;
[fTableView setDropRow: [fTableView numberOfRows]
2006-03-23 12:39:39 +00:00
dropOperation: NSTableViewDropAbove];
2006-01-12 17:43:21 +00:00
return NSDragOperationGeneric;
}
- (void) tableViewSelectionDidChange: (NSNotification *) n
{
[self updateInfo];
2006-01-12 17:43:21 +00:00
}
- (NSToolbarItem *) toolbar: (NSToolbar *) t itemForItemIdentifier:
(NSString *) ident willBeInsertedIntoToolbar: (BOOL) flag
{
2006-01-12 18:57:23 +00:00
NSToolbarItem * item = [[NSToolbarItem alloc] initWithItemIdentifier: ident];
2006-01-12 17:43:21 +00:00
if( [ident isEqualToString: TOOLBAR_OPEN] )
{
[item setLabel: @"Open"];
2006-01-12 18:54:46 +00:00
[item setPaletteLabel: [item label]];
[item setToolTip: @"Open torrent files"];
2006-01-12 18:20:48 +00:00
[item setImage: [NSImage imageNamed: @"Open.png"]];
[item setTarget: self];
[item setAction: @selector( openShowSheet: )];
2006-01-12 17:43:21 +00:00
}
else if( [ident isEqualToString: TOOLBAR_REMOVE] )
{
[item setLabel: @"Remove"];
2006-01-12 18:54:46 +00:00
[item setPaletteLabel: [item label]];
[item setToolTip: @"Remove selected torrents"];
2006-01-12 18:20:48 +00:00
[item setImage: [NSImage imageNamed: @"Remove.png"]];
[item setTarget: self];
2006-01-12 18:54:46 +00:00
[item setAction: @selector( removeTorrent: )];
2006-01-12 18:20:48 +00:00
}
2006-01-12 17:43:21 +00:00
else if( [ident isEqualToString: TOOLBAR_INFO] )
{
[item setLabel: @"Info"];
2006-01-12 18:54:46 +00:00
[item setPaletteLabel: [item label]];
[item setToolTip: @"Display torrent info"];
2006-01-12 18:20:48 +00:00
[item setImage: [NSImage imageNamed: @"Info.png"]];
[item setTarget: self];
[item setAction: @selector( showInfo: )];
2006-01-12 17:43:21 +00:00
}
2006-01-12 18:54:46 +00:00
else if( [ident isEqualToString: TOOLBAR_RESUME_ALL] )
{
[item setLabel: @"Resume All"];
[item setPaletteLabel: [item label]];
[item setToolTip: @"Resume all torrents"];
[item setImage: [NSImage imageNamed: @"ResumeAll.png"]];
2006-01-12 18:54:46 +00:00
[item setTarget: self];
[item setAction: @selector( resumeAllTorrents: )];
}
else if( [ident isEqualToString: TOOLBAR_PAUSE_ALL] )
{
[item setLabel: @"Pause All"];
[item setPaletteLabel: [item label]];
[item setToolTip: @"Pause all torrents"];
[item setImage: [NSImage imageNamed: @"PauseAll.png"]];
2006-01-12 18:54:46 +00:00
[item setTarget: self];
[item setAction: @selector( stopAllTorrents: )];
}
2006-01-12 17:43:21 +00:00
else
{
[item release];
2006-04-07 13:09:19 +00:00
return nil;
2006-01-12 17:43:21 +00:00
}
return item;
}
- (NSArray *) toolbarAllowedItemIdentifiers: (NSToolbar *) t
{
2006-01-12 18:54:46 +00:00
return [NSArray arrayWithObjects:
TOOLBAR_OPEN, TOOLBAR_REMOVE,
TOOLBAR_PAUSE_ALL, TOOLBAR_RESUME_ALL,
2006-01-12 18:57:23 +00:00
TOOLBAR_INFO,
2006-01-12 18:54:46 +00:00
NSToolbarSeparatorItemIdentifier,
NSToolbarSpaceItemIdentifier,
NSToolbarFlexibleSpaceItemIdentifier,
NSToolbarCustomizeToolbarItemIdentifier, nil];
2006-01-12 17:43:21 +00:00
}
- (NSArray *) toolbarDefaultItemIdentifiers: (NSToolbar *) t
{
2006-01-12 18:54:46 +00:00
return [NSArray arrayWithObjects:
TOOLBAR_OPEN, TOOLBAR_REMOVE,
2006-01-12 18:57:23 +00:00
NSToolbarSeparatorItemIdentifier,
TOOLBAR_PAUSE_ALL, TOOLBAR_RESUME_ALL,
2006-01-12 18:54:46 +00:00
NSToolbarFlexibleSpaceItemIdentifier,
TOOLBAR_INFO, nil];
2006-01-12 18:54:46 +00:00
}
- (void) toggleStatusBar: (id) sender
{
fStatusBar = !fStatusBar;
NSSize frameSize = [fScrollView frame].size;
[fStats setHidden: !fStatusBar];
if (fStatusBar)
frameSize.height -= 18;
else
frameSize.height += 18;
[fScrollView setFrameSize: frameSize];
[fWindow display];
[fDefaults setBool: fStatusBar forKey: @"StatusBar"];
}
- (BOOL) validateToolbarItem: (NSToolbarItem *) toolbarItem
2006-01-12 18:57:23 +00:00
{
SEL action = [toolbarItem action];
2006-01-12 18:57:23 +00:00
//enable remove item
if (action == @selector(removeTorrent:))
2006-04-07 13:09:19 +00:00
return [fTableView numberOfSelectedRows] > 0;
2006-03-23 12:39:39 +00:00
Torrent * torrent;
NSEnumerator * enumerator;
//enable resume all item
if (action == @selector(resumeAllTorrents:))
2006-03-23 12:39:39 +00:00
{
enumerator = [fTorrents objectEnumerator];
while( ( torrent = [enumerator nextObject] ) )
if( [torrent isPaused] )
return YES;
return NO;
}
//enable pause all item
if (action == @selector(stopAllTorrents:))
2006-03-23 12:39:39 +00:00
{
enumerator = [fTorrents objectEnumerator];
while( ( torrent = [enumerator nextObject] ) )
if( [torrent isActive] )
return YES;
return NO;
}
2006-01-12 18:57:23 +00:00
return YES;
}
- (BOOL) validateMenuItem: (NSMenuItem *) menuItem
2006-01-12 18:54:46 +00:00
{
SEL action = [menuItem action];
//only enable some menus if window is useable
BOOL canUseWindow = [fWindow isKeyWindow] && ![fToolbar customizationPaletteIsRunning];
2006-03-23 12:39:39 +00:00
2006-01-12 18:54:46 +00:00
//enable show info
if (action == @selector(showInfo:))
2006-01-12 18:54:46 +00:00
{
[menuItem setTitle: [[fInfoController window] isVisible] ? @"Hide Info" : @"Show Info"];
2006-01-12 18:57:23 +00:00
return YES;
2006-01-12 18:54:46 +00:00
}
//enable toggle toolbar
if (action == @selector(toggleStatusBar:))
{
[menuItem setTitle: fStatusBar ? @"Hide Status Bar" : @"Show Status Bar"];
return canUseWindow;
}
//enable resume all item
if (action == @selector(resumeAllTorrents:))
2006-03-23 12:39:39 +00:00
{
Torrent * torrent;
2006-04-07 13:09:19 +00:00
NSEnumerator * enumerator = [fTorrents objectEnumerator];
2006-03-23 12:39:39 +00:00
while( ( torrent = [enumerator nextObject] ) )
if( [torrent isPaused] )
return YES;
return NO;
}
//enable pause all item
if (action == @selector(stopAllTorrents:))
2006-03-23 12:39:39 +00:00
{
2006-04-07 13:09:19 +00:00
Torrent * torrent;
NSEnumerator * enumerator = [fTorrents objectEnumerator];
2006-03-23 12:39:39 +00:00
while( ( torrent = [enumerator nextObject] ) )
if( [torrent isActive] )
return YES;
return NO;
}
if (action == @selector(revealTorrent:))
2006-03-23 12:39:39 +00:00
{
return canUseWindow && [fTableView numberOfSelectedRows] > 0;
2006-03-23 12:39:39 +00:00
}
2006-01-12 18:54:46 +00:00
//enable remove items
if (action == @selector(removeTorrent:)
|| action == @selector(removeTorrentDeleteFile:)
|| action == @selector(removeTorrentDeleteData:)
|| action == @selector(removeTorrentDeleteBoth:))
2006-01-12 18:57:23 +00:00
{
BOOL active = NO;
Torrent * torrent;
NSIndexSet * indexSet = [fTableView selectedRowIndexes];
unsigned int i;
for (i = [indexSet firstIndex]; i != NSNotFound; i = [indexSet indexGreaterThanIndex: i])
{
torrent = [fTorrents objectAtIndex: i];
if ([torrent isActive])
{
active = YES;
break;
}
}
2006-01-12 18:57:23 +00:00
//append or remove ellipsis when needed
NSString * title = [menuItem title];
if (active && [fDefaults boolForKey: @"CheckRemove"])
2006-01-12 18:57:23 +00:00
{
if (![title hasSuffix: NS_ELLIPSIS])
[menuItem setTitle: [title stringByAppendingString: NS_ELLIPSIS]];
2006-01-12 18:57:23 +00:00
}
else
{
if ([title hasSuffix: NS_ELLIPSIS])
[menuItem setTitle:[title substringToIndex:
[title rangeOfString: NS_ELLIPSIS].location]];
2006-01-12 18:57:23 +00:00
}
return canUseWindow && [fTableView numberOfSelectedRows] > 0;
2006-04-07 13:09:19 +00:00
}
//enable pause item
if( action == @selector(stopTorrent:) )
{
if (!canUseWindow)
return NO;
Torrent * torrent;
NSIndexSet * indexSet = [fTableView selectedRowIndexes];
unsigned int i;
for (i = [indexSet firstIndex]; i != NSNotFound; i = [indexSet indexGreaterThanIndex: i])
{
torrent = [fTorrents objectAtIndex: i];
if ([torrent isActive])
return YES;
}
return NO;
}
//enable resume item
2006-04-07 13:09:19 +00:00
if( action == @selector(resumeTorrent:) )
{
if (!canUseWindow)
return NO;
Torrent * torrent;
NSIndexSet * indexSet = [fTableView selectedRowIndexes];
unsigned int i;
for (i = [indexSet firstIndex]; i != NSNotFound; i = [indexSet indexGreaterThanIndex: i])
{
torrent = [fTorrents objectAtIndex: i];
if ([torrent isPaused])
return YES;
}
return NO;
2006-01-12 18:54:46 +00:00
}
//enable resume item
if (action == @selector(setSort:))
return canUseWindow;
2006-03-23 12:39:39 +00:00
2006-01-12 18:57:23 +00:00
return YES;
2006-01-12 17:43:21 +00:00
}
- (void) sleepCallBack: (natural_t) messageType argument:
(void *) messageArgument
{
NSEnumerator * enumerator;
2006-03-23 12:39:39 +00:00
Torrent * torrent;
BOOL active;
2006-01-12 17:43:21 +00:00
switch( messageType )
{
case kIOMessageSystemWillSleep:
/* Close all connections before going to sleep and remember
we should resume when we wake up */
[fTorrents makeObjectsPerformSelector: @selector(sleep)];
2006-03-23 12:39:39 +00:00
/* Wait for torrents to stop (5 seconds timeout) */
NSDate * start = [NSDate date];
enumerator = [fTorrents objectEnumerator];
while( ( torrent = [enumerator nextObject] ) )
{
while( [[NSDate date] timeIntervalSinceDate: start] < 5 &&
![torrent isPaused] )
2006-01-12 17:43:21 +00:00
{
2006-03-23 12:39:39 +00:00
usleep( 100000 );
[torrent update];
2006-01-12 17:43:21 +00:00
}
}
IOAllowPowerChange( fRootPort, (long) messageArgument );
break;
case kIOMessageCanSystemSleep:
/* Prevent idle sleep unless all paused */
active = NO;
enumerator = [fTorrents objectEnumerator];
while( !active && ( torrent = [enumerator nextObject] ) )
if( [torrent isActive] )
active = YES;
if (active)
IOCancelPowerChange( fRootPort, (long) messageArgument );
else
IOAllowPowerChange( fRootPort, (long) messageArgument );
2006-01-12 17:43:21 +00:00
break;
case kIOMessageSystemHasPoweredOn:
/* Resume download after we wake up */
[fTorrents makeObjectsPerformSelector: @selector(wakeUp)];
2006-01-12 17:43:21 +00:00
break;
}
}
- (NSRect) windowWillUseStandardFrame: (NSWindow *) w
defaultFrame: (NSRect) defaultFrame
{
NSRect rectWin = [fWindow frame];
float newHeight = rectWin.size.height - [fScrollView frame].size.height
+ [fTorrents count] * ([fTableView rowHeight] + [fTableView intercellSpacing].height);
2006-01-12 17:43:21 +00:00
float minHeight = [fWindow minSize].height;
if (newHeight < minHeight)
newHeight = minHeight;
2006-01-12 17:43:21 +00:00
rectWin.origin.y -= (newHeight - rectWin.size.height);
rectWin.size.height = newHeight;
2006-01-12 17:43:21 +00:00
return rectWin;
}
- (void) showMainWindow: (id) sender
{
2006-01-12 18:57:23 +00:00
[fWindow makeKeyAndOrderFront: nil];
2006-01-12 17:43:21 +00:00
}
- (void) linkHomepage: (id) sender
{
[[NSWorkspace sharedWorkspace] openURL: [NSURL
2006-01-12 18:57:23 +00:00
URLWithString: WEBSITE_URL]];
2006-01-12 17:43:21 +00:00
}
- (void) linkForums: (id) sender
{
[[NSWorkspace sharedWorkspace] openURL: [NSURL
2006-01-12 18:57:23 +00:00
URLWithString: FORUM_URL]];
2006-01-12 18:47:30 +00:00
}
2006-01-12 18:40:47 +00:00
- (void) notifyGrowl: (NSString * ) file
2006-01-12 18:33:20 +00:00
{
2006-01-12 18:40:47 +00:00
NSString * growlScript;
NSAppleScript * appleScript;
NSDictionary * error;
2006-01-12 18:47:30 +00:00
2006-01-12 18:57:23 +00:00
if( !fHasGrowl )
2006-01-12 18:47:30 +00:00
return;
2006-03-23 12:39:39 +00:00
2006-01-12 18:40:47 +00:00
growlScript = [NSString stringWithFormat:
@"tell application \"System Events\"\n"
" if exists application process \"GrowlHelperApp\" then\n"
" tell application \"GrowlHelperApp\"\n "
" notify with name \"Download Complete\""
" title \"Download Complete\""
" description \"%@\""
" application name \"Transmission\"\n"
" end tell\n"
" end if\n"
"end tell", file];
appleScript = [[NSAppleScript alloc] initWithSource: growlScript];
if( ![appleScript executeAndReturnError: &error] )
{
NSLog( @"Growl notify failed" );
2006-01-12 18:40:47 +00:00
}
[appleScript release];
2006-01-12 18:33:20 +00:00
}
2006-01-12 18:40:47 +00:00
- (void) growlRegister: (id) sender
2006-03-23 12:39:39 +00:00
{
2006-01-12 18:40:47 +00:00
NSString * growlScript;
NSAppleScript * appleScript;
NSDictionary * error;
2006-01-12 18:47:30 +00:00
2006-01-12 18:57:23 +00:00
if( !fHasGrowl )
2006-01-12 18:47:30 +00:00
return;
2006-03-23 12:39:39 +00:00
2006-01-12 18:40:47 +00:00
growlScript = [NSString stringWithFormat:
@"tell application \"System Events\"\n"
" if exists application process \"GrowlHelperApp\" then\n"
" tell application \"GrowlHelperApp\"\n"
" register as application \"Transmission\" "
" all notifications {\"Download Complete\"}"
" default notifications {\"Download Complete\"}"
" icon of application \"Transmission\"\n"
" end tell\n"
" end if\n"
"end tell"];
2006-03-23 12:39:39 +00:00
2006-01-12 18:40:47 +00:00
appleScript = [[NSAppleScript alloc] initWithSource: growlScript];
if( ![appleScript executeAndReturnError: &error] )
{
NSLog( @"Growl registration failed" );
2006-01-12 18:40:47 +00:00
}
[appleScript release];
2006-01-12 18:33:20 +00:00
}
2006-01-29 22:01:08 +00:00
- (void) checkForUpdate: (id) sender
{
[self checkForUpdateAuto: NO];
}
- (void) checkForUpdateTimer: (NSTimer *) timer
{
NSString * check = [fDefaults stringForKey: @"VersionCheck"];
NSTimeInterval interval;
if( [check isEqualToString: @"Daily"] )
interval = 24 * 3600;
else if( [check isEqualToString: @"Weekly"] )
interval = 7 * 24 * 3600;
else
return;
NSDate * lastDate = [fDefaults objectForKey: @"VersionCheckLast"];
2006-01-29 22:01:08 +00:00
if( lastDate )
{
NSTimeInterval actualInterval = [[NSDate date]
timeIntervalSinceDate: lastDate];
2006-01-29 22:01:08 +00:00
if( actualInterval > 0 && actualInterval < interval )
return;
}
[self checkForUpdateAuto: YES];
[fDefaults setObject: [NSDate date] forKey: @"VersionCheckLast"];
}
2006-03-23 12:39:39 +00:00
2006-01-29 22:01:08 +00:00
- (void) checkForUpdateAuto: (BOOL) automatic
{
fCheckIsAutomatic = automatic;
[[NSURL URLWithString: VERSION_PLIST_URL]
loadResourceDataNotifyingClient: self usingCache: NO];
}
- (void) URLResourceDidFinishLoading: (NSURL *) sender
2006-03-23 12:39:39 +00:00
{
//check if plist was actually found and contains a version
2006-01-29 22:01:08 +00:00
NSDictionary * dict = [NSPropertyListSerialization
propertyListFromData: [sender resourceDataUsingCache: NO]
mutabilityOption: NSPropertyListImmutable
format: nil errorDescription: nil];
NSString * webVersion;
if (!dict || !(webVersion = [dict objectForKey: @"Version"]))
2006-01-29 22:01:08 +00:00
{
if (!fCheckIsAutomatic)
{
NSAlert * dialog = [[NSAlert alloc] init];
[dialog addButtonWithTitle: @"OK"];
[dialog setMessageText: @"Error checking for updates."];
[dialog setInformativeText:
@"Transmission was not able to check the latest version available."];
[dialog setAlertStyle: NSInformationalAlertStyle];
[dialog runModal];
[dialog release];
2006-01-29 22:01:08 +00:00
}
return;
}
NSString * currentVersion = [[[NSBundle mainBundle] infoDictionary]
objectForKey: (NSString *)kCFBundleVersionKey];
NSEnumerator * webEnum = [[webVersion componentsSeparatedByString: @"."] objectEnumerator],
* currentEnum = [[currentVersion componentsSeparatedByString: @"."] objectEnumerator];
NSString * webSub, * currentSub;
BOOL webGreater = NO;
NSComparisonResult result;
while ((webSub = [webEnum nextObject]))
{
if (!(currentSub = [currentEnum nextObject]))
{
webGreater = YES;
break;
}
result = [currentSub compare: webSub options: NSNumericSearch];
if (result != NSOrderedSame)
2006-01-29 22:01:08 +00:00
{
if (result == NSOrderedAscending)
webGreater = YES;
break;
2006-01-29 22:01:08 +00:00
}
}
if (webGreater)
{
NSAlert * dialog = [[NSAlert alloc] init];
[dialog addButtonWithTitle: @"Go to Website"];
[dialog addButtonWithTitle:@"Cancel"];
[dialog setMessageText: @"New version is available!"];
[dialog setInformativeText: [NSString stringWithFormat:
@"A newer version (%@) is available for download from the Transmission website.", webVersion]];
[dialog setAlertStyle: NSInformationalAlertStyle];
if ([dialog runModal] == NSAlertFirstButtonReturn)
[self linkHomepage: nil];
[dialog release];
2006-01-29 22:01:08 +00:00
}
else if (!fCheckIsAutomatic)
{
NSAlert * dialog = [[NSAlert alloc] init];
[dialog addButtonWithTitle: @"OK"];
[dialog setMessageText: @"No new versions are available."];
[dialog setInformativeText: [NSString stringWithFormat:
@"You are running the most current version of Transmission (%@).", currentVersion]];
[dialog setAlertStyle: NSInformationalAlertStyle];
[dialog runModal];
[dialog release];
2006-01-29 22:01:08 +00:00
}
else;
}
2006-01-12 17:43:21 +00:00
@end