2006-07-16 19:39:23 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (c) 2006 Transmission authors and contributors
|
|
|
|
*
|
|
|
|
* 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 "Torrent.h"
|
|
|
|
#import "StringAdditions.h"
|
|
|
|
|
2006-09-12 00:08:30 +00:00
|
|
|
#define BAR_HEIGHT 12.0
|
|
|
|
|
2006-10-05 21:21:30 +00:00
|
|
|
#define MAX_PIECES 324
|
|
|
|
#define BLANK_PIECE -99
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
@interface Torrent (Private)
|
|
|
|
|
|
|
|
- (id) initWithHash: (NSString *) hashString path: (NSString *) path lib: (tr_handle_t *) lib
|
2006-11-05 19:08:38 +00:00
|
|
|
publicTorrent: (NSNumber *) publicTorrent
|
2006-12-28 00:29:05 +00:00
|
|
|
date: (NSDate *) date
|
|
|
|
stopRatioCustom: (NSNumber *) ratioCustom
|
|
|
|
shouldStopAtRatio: (NSNumber *) shouldStopAtRatio
|
2006-12-27 02:57:55 +00:00
|
|
|
ratioLimit: (NSNumber *) ratioLimit
|
2006-12-28 00:29:05 +00:00
|
|
|
limitSpeedCustom: (NSNumber *) limitCustom
|
2006-12-27 02:57:55 +00:00
|
|
|
checkUpload: (NSNumber *) checkUpload uploadLimit: (NSNumber *) uploadLimit
|
|
|
|
checkDownload: (NSNumber *) checkDownload downloadLimit: (NSNumber *) downloadLimit
|
|
|
|
waitToStart: (NSNumber *) waitToStart orderValue: (NSNumber *) orderValue;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-01-17 20:50:42 +00:00
|
|
|
- (NSArray *) createFileList;
|
2007-01-17 17:29:42 +00:00
|
|
|
- (void) insertPath: (NSMutableArray *) components withParent: (NSMutableArray *) parent
|
2007-01-17 20:50:42 +00:00
|
|
|
previousPath: (NSString *) previousPath fileSize: (uint64_t) size;
|
2006-09-12 00:08:30 +00:00
|
|
|
- (NSImage *) advancedBar;
|
2006-07-16 19:39:23 +00:00
|
|
|
- (void) trashFile: (NSString *) path;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation Torrent
|
|
|
|
|
2006-09-12 00:08:30 +00:00
|
|
|
// Used to optimize drawing. They contain packed RGBA pixels for every color needed.
|
|
|
|
#define BE OSSwapBigToHostConstInt32
|
|
|
|
|
|
|
|
static uint32_t kRed = BE(0xFF6450FF), //255, 100, 80
|
2006-10-06 20:45:59 +00:00
|
|
|
kBlue = BE(0x50A0FFFF), //80, 160, 255
|
|
|
|
kBlue2 = BE(0x1E46B4FF), //30, 70, 180
|
2006-09-25 18:37:45 +00:00
|
|
|
kGray = BE(0x969696FF), //150, 150, 150
|
2006-10-06 20:45:59 +00:00
|
|
|
kGreen1 = BE(0x99FFCCFF), //153, 255, 204
|
|
|
|
kGreen2 = BE(0x66FF99FF), //102, 255, 153
|
|
|
|
kGreen3 = BE(0x00FF66FF), //0, 255, 102
|
2006-09-12 00:56:37 +00:00
|
|
|
kWhite = BE(0xFFFFFFFF); //255, 255, 255
|
2006-09-12 00:08:30 +00:00
|
|
|
|
2006-11-13 04:05:24 +00:00
|
|
|
- (id) initWithPath: (NSString *) path forceDeleteTorrent: (BOOL) delete lib: (tr_handle_t *) lib
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2006-11-13 04:05:24 +00:00
|
|
|
self = [self initWithHash: nil path: path lib: lib
|
|
|
|
publicTorrent: delete ? [NSNumber numberWithBool: NO] : nil
|
2006-12-28 00:29:05 +00:00
|
|
|
date: nil
|
|
|
|
stopRatioCustom: nil shouldStopAtRatio: nil ratioLimit: nil
|
|
|
|
limitSpeedCustom: nil
|
2006-12-27 02:57:55 +00:00
|
|
|
checkUpload: nil uploadLimit: nil
|
|
|
|
checkDownload: nil downloadLimit: nil
|
|
|
|
waitToStart: nil orderValue: nil];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
if (self)
|
|
|
|
{
|
2006-11-03 16:01:45 +00:00
|
|
|
fUseIncompleteFolder = [fDefaults boolForKey: @"UseIncompleteDownloadFolder"];
|
|
|
|
fIncompleteFolder = [[fDefaults stringForKey: @"IncompleteDownloadFolder"] copy];
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
if (!fPublicTorrent)
|
|
|
|
[self trashFile: path];
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) initWithHistory: (NSDictionary *) history lib: (tr_handle_t *) lib
|
|
|
|
{
|
|
|
|
self = [self initWithHash: [history objectForKey: @"TorrentHash"]
|
|
|
|
path: [history objectForKey: @"TorrentPath"] lib: lib
|
|
|
|
publicTorrent: [history objectForKey: @"PublicCopy"]
|
|
|
|
date: [history objectForKey: @"Date"]
|
2006-12-28 00:29:05 +00:00
|
|
|
stopRatioCustom: [history objectForKey: @"StopRatioCustom"]
|
|
|
|
shouldStopAtRatio: [history objectForKey: @"ShouldStopAtRatio"]
|
2006-07-16 19:39:23 +00:00
|
|
|
ratioLimit: [history objectForKey: @"RatioLimit"]
|
2006-12-28 00:29:05 +00:00
|
|
|
limitSpeedCustom: [history objectForKey: @"LimitSpeedCustom"]
|
2006-12-27 02:57:55 +00:00
|
|
|
checkUpload: [history objectForKey: @"CheckUpload"]
|
|
|
|
uploadLimit: [history objectForKey: @"UploadLimit"]
|
|
|
|
checkDownload: [history objectForKey: @"CheckDownload"]
|
|
|
|
downloadLimit: [history objectForKey: @"DownloadLimit"]
|
2006-07-16 19:39:23 +00:00
|
|
|
waitToStart: [history objectForKey: @"WaitToStart"]
|
|
|
|
orderValue: [history objectForKey: @"OrderValue"]];
|
|
|
|
|
|
|
|
if (self)
|
|
|
|
{
|
2006-11-03 16:01:45 +00:00
|
|
|
//download folders
|
2006-07-16 19:39:23 +00:00
|
|
|
NSString * downloadFolder;
|
|
|
|
if (!(downloadFolder = [history objectForKey: @"DownloadFolder"]))
|
|
|
|
downloadFolder = [[fDefaults stringForKey: @"DownloadFolder"] stringByExpandingTildeInPath];
|
2006-11-03 16:01:45 +00:00
|
|
|
|
|
|
|
NSNumber * useIncompleteFolder;
|
|
|
|
if ((useIncompleteFolder = [history objectForKey: @"UseIncompleteFolder"]))
|
|
|
|
{
|
|
|
|
if ((fUseIncompleteFolder = [useIncompleteFolder boolValue]))
|
|
|
|
{
|
|
|
|
NSString * incompleteFolder;
|
|
|
|
if (incompleteFolder = [history objectForKey: @"IncompleteFolder"])
|
2007-01-15 04:09:56 +00:00
|
|
|
fIncompleteFolder = [incompleteFolder retain];
|
2006-11-03 16:01:45 +00:00
|
|
|
else
|
|
|
|
fIncompleteFolder = [[[fDefaults stringForKey: @"IncompleteDownloadFolder"]
|
2007-01-15 04:09:56 +00:00
|
|
|
stringByExpandingTildeInPath] retain];
|
2006-11-03 16:01:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
fUseIncompleteFolder = NO;
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
[self setDownloadFolder: downloadFolder];
|
|
|
|
|
|
|
|
NSString * paused;
|
|
|
|
if (!(paused = [history objectForKey: @"Paused"]) || [paused isEqualToString: @"NO"])
|
2006-09-28 23:32:59 +00:00
|
|
|
{
|
|
|
|
fStat = tr_torrentStat(fHandle);
|
2006-09-28 00:48:07 +00:00
|
|
|
[self startTransfer];
|
2006-09-28 23:32:59 +00:00
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSDictionary *) history
|
|
|
|
{
|
|
|
|
NSMutableDictionary * history = [NSMutableDictionary dictionaryWithObjectsAndKeys:
|
|
|
|
[NSNumber numberWithBool: fPublicTorrent], @"PublicCopy",
|
2006-11-05 19:08:38 +00:00
|
|
|
[self hashString], @"TorrentHash",
|
2006-11-03 16:01:45 +00:00
|
|
|
fDownloadFolder, @"DownloadFolder",
|
|
|
|
[NSNumber numberWithBool: fUseIncompleteFolder], @"UseIncompleteFolder",
|
2006-07-16 19:39:23 +00:00
|
|
|
[self isActive] ? @"NO" : @"YES", @"Paused",
|
|
|
|
[self date], @"Date",
|
2006-12-28 00:29:05 +00:00
|
|
|
[NSNumber numberWithBool: fRatioCustom], @"StopRatioCustom",
|
|
|
|
[NSNumber numberWithBool: fShouldStopAtRatio], @"ShouldStopAtRatio",
|
2006-07-16 19:39:23 +00:00
|
|
|
[NSNumber numberWithFloat: fRatioLimit], @"RatioLimit",
|
2006-12-28 00:29:05 +00:00
|
|
|
[NSNumber numberWithBool: fLimitCustom], @"LimitSpeedCustom",
|
2006-12-27 02:57:55 +00:00
|
|
|
[NSNumber numberWithBool: fCheckUpload], @"CheckUpload",
|
|
|
|
[NSNumber numberWithInt: fUploadLimit], @"UploadLimit",
|
|
|
|
[NSNumber numberWithBool: fCheckDownload], @"CheckDownload",
|
|
|
|
[NSNumber numberWithInt: fDownloadLimit], @"DownloadLimit",
|
2006-07-16 19:39:23 +00:00
|
|
|
[NSNumber numberWithBool: fWaitToStart], @"WaitToStart",
|
|
|
|
[self orderValue], @"OrderValue", nil];
|
2006-11-03 16:01:45 +00:00
|
|
|
|
|
|
|
if (fUseIncompleteFolder)
|
|
|
|
[history setObject: fIncompleteFolder forKey: @"IncompleteFolder"];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
if (fPublicTorrent)
|
|
|
|
[history setObject: [self publicTorrentLocation] forKey: @"TorrentPath"];
|
|
|
|
|
|
|
|
return history;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) dealloc
|
|
|
|
{
|
|
|
|
if (fHandle)
|
|
|
|
{
|
|
|
|
tr_torrentClose(fLib, fHandle);
|
|
|
|
|
2006-11-03 16:01:45 +00:00
|
|
|
if (fDownloadFolder)
|
|
|
|
[fDownloadFolder release];
|
|
|
|
if (fIncompleteFolder)
|
|
|
|
[fIncompleteFolder release];
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
if (fPublicTorrentLocation)
|
|
|
|
[fPublicTorrentLocation release];
|
|
|
|
|
2006-12-26 22:33:02 +00:00
|
|
|
tr_torrentRemoveSaved(fHandle);
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
[fDate release];
|
|
|
|
|
2006-12-26 21:02:00 +00:00
|
|
|
if (fAnnounceDate)
|
|
|
|
[fAnnounceDate release];
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
[fIcon release];
|
|
|
|
[fIconFlipped release];
|
|
|
|
[fIconSmall release];
|
|
|
|
|
|
|
|
[fProgressString release];
|
|
|
|
[fStatusString release];
|
|
|
|
[fShortStatusString release];
|
2006-07-25 00:59:14 +00:00
|
|
|
[fRemainingTimeString release];
|
2006-10-05 21:21:30 +00:00
|
|
|
|
2007-01-17 20:50:42 +00:00
|
|
|
[fFileList release];
|
|
|
|
|
2006-10-05 21:21:30 +00:00
|
|
|
[fBitmap release];
|
|
|
|
free(fPieces);
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
[super dealloc];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setDownloadFolder: (NSString *) path
|
|
|
|
{
|
2006-11-16 21:24:24 +00:00
|
|
|
if (path)
|
|
|
|
fDownloadFolder = [path copy];
|
2006-11-03 16:01:45 +00:00
|
|
|
|
|
|
|
if (!fUseIncompleteFolder || [[NSFileManager defaultManager] fileExistsAtPath:
|
|
|
|
[path stringByAppendingPathComponent: [self name]]])
|
|
|
|
tr_torrentSetFolder(fHandle, [path UTF8String]);
|
|
|
|
else
|
|
|
|
tr_torrentSetFolder(fHandle, [fIncompleteFolder UTF8String]);
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *) downloadFolder
|
|
|
|
{
|
|
|
|
return [NSString stringWithUTF8String: tr_torrentGetFolder(fHandle)];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) getAvailability: (int8_t *) tab size: (int) size
|
|
|
|
{
|
|
|
|
tr_torrentAvailability(fHandle, tab, size);
|
|
|
|
}
|
|
|
|
|
2006-10-13 01:34:15 +00:00
|
|
|
- (void) getAmountFinished: (float *) tab size: (int) size
|
2006-10-12 23:34:20 +00:00
|
|
|
{
|
|
|
|
tr_torrentAmountFinished(fHandle, tab, size);
|
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (void) update
|
|
|
|
{
|
|
|
|
fStat = tr_torrentStat(fHandle);
|
|
|
|
|
2006-07-30 18:37:29 +00:00
|
|
|
//notification when downloading finished
|
|
|
|
if ([self justFinished])
|
2006-11-03 16:01:45 +00:00
|
|
|
{
|
2006-11-16 22:03:51 +00:00
|
|
|
BOOL canMove = YES;
|
|
|
|
|
2006-11-03 16:01:45 +00:00
|
|
|
//move file from incomplete folder to download folder
|
2006-11-16 22:03:51 +00:00
|
|
|
if (fUseIncompleteFolder && ![[self downloadFolder] isEqualToString: fDownloadFolder]
|
2007-01-14 20:22:51 +00:00
|
|
|
&& (canMove = [self alertForMoveFolderAvailable]))
|
2006-11-03 16:01:45 +00:00
|
|
|
{
|
|
|
|
tr_torrentStop(fHandle);
|
|
|
|
if ([[NSFileManager defaultManager] movePath: [[self downloadFolder] stringByAppendingPathComponent: [self name]]
|
|
|
|
toPath: [fDownloadFolder stringByAppendingPathComponent: [self name]] handler: nil])
|
|
|
|
tr_torrentSetFolder(fHandle, [fDownloadFolder UTF8String]);
|
|
|
|
tr_torrentStart(fHandle);
|
|
|
|
}
|
|
|
|
|
2006-11-16 22:03:51 +00:00
|
|
|
if (!canMove)
|
|
|
|
{
|
|
|
|
fUseIncompleteFolder = NO;
|
|
|
|
|
|
|
|
[fDownloadFolder release];
|
|
|
|
fDownloadFolder = fIncompleteFolder;
|
|
|
|
fIncompleteFolder = nil;
|
|
|
|
}
|
|
|
|
|
2007-01-09 01:09:23 +00:00
|
|
|
fStat = tr_torrentStat(fHandle);
|
2006-07-30 18:37:29 +00:00
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName: @"TorrentFinishedDownloading" object: self];
|
2006-11-03 16:01:45 +00:00
|
|
|
}
|
2006-07-30 18:37:29 +00:00
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
//check to stop for ratio
|
2006-12-28 00:29:05 +00:00
|
|
|
if ([self isSeeding] && ((fRatioCustom && fShouldStopAtRatio && [self ratio] >= fRatioLimit)
|
|
|
|
|| (!fRatioCustom && [fDefaults boolForKey: @"RatioCheck"]
|
|
|
|
&& [self ratio] >= [fDefaults floatForKey: @"RatioLimit"])))
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
|
|
|
[self stopTransfer];
|
2006-12-28 21:24:19 +00:00
|
|
|
fStat = tr_torrentStat(fHandle);
|
2006-12-28 00:29:05 +00:00
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
fFinishedSeeding = YES;
|
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName: @"TorrentStoppedForRatio" object: self];
|
|
|
|
}
|
|
|
|
|
|
|
|
[fProgressString setString: @""];
|
2007-01-15 04:10:34 +00:00
|
|
|
if (![self allDownloaded])
|
2006-10-24 20:51:47 +00:00
|
|
|
[fProgressString appendFormat: NSLocalizedString(@"%@ of %@ (%.2f%%)", "Torrent -> progress string"),
|
|
|
|
[NSString stringForFileSize: [self downloadedValid]],
|
|
|
|
[NSString stringForFileSize: [self size]], 100.0 * [self progress]];
|
2006-07-16 19:39:23 +00:00
|
|
|
else
|
2006-10-24 20:51:47 +00:00
|
|
|
[fProgressString appendFormat: NSLocalizedString(@"%@, uploaded %@ (Ratio: %@)", "Torrent -> progress string"),
|
|
|
|
[NSString stringForFileSize: [self size]], [NSString stringForFileSize: [self uploadedTotal]],
|
2006-12-30 19:24:09 +00:00
|
|
|
[NSString stringForRatio: [self ratio]]];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
switch (fStat->status)
|
|
|
|
{
|
|
|
|
NSString * tempString;
|
|
|
|
|
|
|
|
case TR_STATUS_PAUSE:
|
2007-01-09 03:46:21 +00:00
|
|
|
if (fWaitToStart)
|
|
|
|
{
|
2007-01-15 04:09:56 +00:00
|
|
|
tempString = ![self allDownloaded]
|
2007-01-09 15:31:14 +00:00
|
|
|
? [NSLocalizedString(@"Waiting to download", "Torrent -> status string") stringByAppendingEllipsis]
|
2007-01-09 03:46:21 +00:00
|
|
|
: [NSLocalizedString(@"Waiting to seed", "Torrent -> status string") stringByAppendingEllipsis];
|
|
|
|
}
|
|
|
|
else if (fFinishedSeeding)
|
2006-10-24 20:34:13 +00:00
|
|
|
tempString = NSLocalizedString(@"Seeding complete", "Torrent -> status string");
|
2006-07-16 19:39:23 +00:00
|
|
|
else
|
2006-10-24 20:34:13 +00:00
|
|
|
tempString = NSLocalizedString(@"Paused", "Torrent -> status string");
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
[fStatusString setString: tempString];
|
|
|
|
[fShortStatusString setString: tempString];
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_CHECK:
|
2006-10-24 20:34:13 +00:00
|
|
|
tempString = [NSLocalizedString(@"Checking existing files", "Torrent -> status string") stringByAppendingEllipsis];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
[fStatusString setString: tempString];
|
|
|
|
[fShortStatusString setString: tempString];
|
2006-07-25 00:59:14 +00:00
|
|
|
[fRemainingTimeString setString: tempString];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_DOWNLOAD:
|
|
|
|
[fStatusString setString: @""];
|
2007-01-14 22:12:39 +00:00
|
|
|
if ([self totalPeers] != 1)
|
2006-10-24 20:51:47 +00:00
|
|
|
[fStatusString appendFormat: NSLocalizedString(@"Downloading from %d of %d peers",
|
|
|
|
"Torrent -> status string"), [self peersUploading], [self totalPeers]];
|
2006-10-24 20:34:13 +00:00
|
|
|
else
|
2006-10-24 20:51:47 +00:00
|
|
|
[fStatusString appendFormat: NSLocalizedString(@"Downloading from %d of %d peer",
|
|
|
|
"Torrent -> status string"), [self peersUploading], [self totalPeers]];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2006-07-25 00:59:14 +00:00
|
|
|
[fRemainingTimeString setString: @""];
|
2006-07-16 19:39:23 +00:00
|
|
|
int eta = [self eta];
|
|
|
|
if (eta < 0)
|
2006-07-25 00:59:14 +00:00
|
|
|
{
|
2006-10-24 20:34:13 +00:00
|
|
|
[fRemainingTimeString setString: NSLocalizedString(@"Unknown", "Torrent -> remaining time")];
|
|
|
|
[fProgressString appendString: NSLocalizedString(@" - remaining time unknown", "Torrent -> progress string")];
|
2006-07-25 00:59:14 +00:00
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
else
|
2006-07-25 00:59:14 +00:00
|
|
|
{
|
|
|
|
if (eta < 60)
|
2006-10-24 20:34:13 +00:00
|
|
|
[fRemainingTimeString appendFormat: NSLocalizedString(@"%d sec", "Torrent -> remaining time"), eta];
|
2006-07-25 00:59:14 +00:00
|
|
|
else if (eta < 3600) //60 * 60
|
2006-10-24 20:51:47 +00:00
|
|
|
[fRemainingTimeString appendFormat: NSLocalizedString(@"%d min %02d sec", "Torrent -> remaining time"),
|
|
|
|
eta / 60, eta % 60];
|
2006-07-25 00:59:14 +00:00
|
|
|
else if (eta < 86400) //24 * 60 * 60
|
2006-10-24 20:51:47 +00:00
|
|
|
[fRemainingTimeString appendFormat: NSLocalizedString(@"%d hr %02d min", "Torrent -> remaining time"),
|
|
|
|
eta / 3600, (eta / 60) % 60];
|
2006-07-25 00:59:14 +00:00
|
|
|
else
|
2006-10-24 20:34:13 +00:00
|
|
|
{
|
|
|
|
if (eta / 86400 > 1)
|
|
|
|
[fRemainingTimeString appendFormat: NSLocalizedString(@"%d days %d hr", "Torrent -> remaining time"),
|
2006-10-24 20:51:47 +00:00
|
|
|
eta / 86400, (eta / 3600) % 24];
|
2006-10-24 20:34:13 +00:00
|
|
|
else
|
|
|
|
[fRemainingTimeString appendFormat: NSLocalizedString(@"%d day %d hr", "Torrent -> remaining time"),
|
2006-10-24 20:51:47 +00:00
|
|
|
eta / 86400, (eta / 3600) % 24];
|
2006-10-24 20:34:13 +00:00
|
|
|
}
|
2006-07-25 00:59:14 +00:00
|
|
|
|
2006-10-24 20:51:47 +00:00
|
|
|
[fProgressString appendFormat: NSLocalizedString(@" - %@ remaining", "Torrent -> progress string"),
|
|
|
|
fRemainingTimeString];
|
2006-07-25 00:59:14 +00:00
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_SEED:
|
|
|
|
[fStatusString setString: @""];
|
2007-01-14 22:12:39 +00:00
|
|
|
if ([self totalPeers] != 1)
|
2006-10-24 20:51:47 +00:00
|
|
|
[fStatusString appendFormat: NSLocalizedString(@"Seeding to %d of %d peers", "Torrent -> status string"),
|
|
|
|
[self peersDownloading], [self totalPeers]];
|
2006-10-24 20:34:13 +00:00
|
|
|
else
|
2006-10-24 20:51:47 +00:00
|
|
|
[fStatusString appendFormat: NSLocalizedString(@"Seeding to %d of %d peer", "Torrent -> status string"),
|
|
|
|
[self peersDownloading], [self totalPeers]];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_STOPPING:
|
2006-10-24 20:34:13 +00:00
|
|
|
tempString = [NSLocalizedString(@"Stopping", "Torrent -> status string") stringByAppendingEllipsis];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
[fStatusString setString: tempString];
|
|
|
|
[fShortStatusString setString: tempString];
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-01-14 12:00:21 +00:00
|
|
|
if (fStat->error)
|
2006-09-29 05:30:36 +00:00
|
|
|
{
|
2006-10-24 20:51:47 +00:00
|
|
|
[fStatusString setString: [NSLocalizedString(@"Error: ", "Torrent -> status string") stringByAppendingString:
|
2006-12-17 16:36:27 +00:00
|
|
|
[self errorMessage]]];
|
2006-09-29 05:30:36 +00:00
|
|
|
}
|
2006-12-17 16:36:27 +00:00
|
|
|
|
|
|
|
BOOL wasError = fError;
|
|
|
|
if ((fError = fStat->cannotConnect))
|
2006-09-29 05:30:36 +00:00
|
|
|
{
|
2007-01-09 01:31:56 +00:00
|
|
|
if (!wasError && [self isActive])
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateQueue" object: self];
|
2006-09-29 05:30:36 +00:00
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2006-11-16 08:48:58 +00:00
|
|
|
if ([self isActive] && fStat->status != TR_STATUS_CHECK )
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
|
|
|
NSString * stringToAppend = @"";
|
2007-01-15 04:09:56 +00:00
|
|
|
if (![self allDownloaded])
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2006-10-24 20:51:47 +00:00
|
|
|
stringToAppend = [NSString stringWithFormat: NSLocalizedString(@"DL: %@, ", "Torrent -> status string"),
|
|
|
|
[NSString stringForSpeed: [self downloadRate]]];
|
2006-07-16 19:39:23 +00:00
|
|
|
[fShortStatusString setString: @""];
|
|
|
|
}
|
|
|
|
else
|
2006-08-06 20:40:12 +00:00
|
|
|
{
|
2006-12-30 19:24:09 +00:00
|
|
|
NSString * ratioString = [NSString stringForRatio: [self ratio]];
|
2006-08-06 20:40:12 +00:00
|
|
|
|
2006-10-24 20:51:47 +00:00
|
|
|
[fShortStatusString setString: [NSString stringWithFormat: NSLocalizedString(@"Ratio: %@, ",
|
|
|
|
"Torrent -> status string"), ratioString]];
|
|
|
|
[fRemainingTimeString setString: [NSLocalizedString(@"Ratio: ", "Torrent -> status string")
|
|
|
|
stringByAppendingString: ratioString]];
|
2006-08-06 20:40:12 +00:00
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2006-10-24 20:51:47 +00:00
|
|
|
stringToAppend = [stringToAppend stringByAppendingString: [NSLocalizedString(@"UL: ", "Torrent -> status string")
|
|
|
|
stringByAppendingString: [NSString stringForSpeed: [self uploadRate]]]];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
[fStatusString appendFormat: @" - %@", stringToAppend];
|
|
|
|
[fShortStatusString appendString: stringToAppend];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-11 23:52:03 +00:00
|
|
|
- (NSDictionary *) infoForCurrentView
|
|
|
|
{
|
|
|
|
NSMutableDictionary * info = [NSMutableDictionary dictionaryWithObjectsAndKeys:
|
|
|
|
[self name], @"Name",
|
|
|
|
[NSNumber numberWithBool: [self isSeeding]], @"Seeding",
|
|
|
|
[NSNumber numberWithFloat: [self progress]], @"Progress",
|
|
|
|
[NSNumber numberWithBool: [self isActive]], @"Active",
|
|
|
|
[NSNumber numberWithBool: [self isError]], @"Error", nil];
|
|
|
|
|
|
|
|
if (![fDefaults boolForKey: @"SmallView"])
|
|
|
|
{
|
|
|
|
[info setObject: fIconFlipped forKey: @"Icon"];
|
|
|
|
[info setObject: [self progressString] forKey: @"ProgressString"];
|
|
|
|
[info setObject: [self statusString] forKey: @"StatusString"];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
[info setObject: fIconSmall forKey: @"Icon"];
|
|
|
|
[info setObject: [self remainingTimeString] forKey: @"RemainingTimeString"];
|
|
|
|
[info setObject: [self shortStatusString] forKey: @"ShortStatusString"];
|
|
|
|
}
|
|
|
|
|
2006-09-12 00:08:30 +00:00
|
|
|
if ([fDefaults boolForKey: @"UseAdvancedBar"])
|
|
|
|
[info setObject: [self advancedBar] forKey: @"AdvancedBar"];
|
|
|
|
|
2006-09-11 23:52:03 +00:00
|
|
|
return info;
|
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (void) startTransfer
|
|
|
|
{
|
2007-01-09 15:25:07 +00:00
|
|
|
fWaitToStart = NO;
|
2006-09-28 00:32:26 +00:00
|
|
|
fFinishedSeeding = NO;
|
|
|
|
|
2007-01-14 20:22:51 +00:00
|
|
|
if (![self isActive] && [self alertForFolderAvailable] && [self alertForRemainingDiskSpace])
|
2007-01-09 01:09:23 +00:00
|
|
|
{
|
2006-07-16 19:39:23 +00:00
|
|
|
tr_torrentStart(fHandle);
|
2007-01-09 01:09:23 +00:00
|
|
|
[self update];
|
|
|
|
}
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) stopTransfer
|
|
|
|
{
|
2006-09-29 05:30:36 +00:00
|
|
|
fError = NO;
|
2007-01-09 01:31:56 +00:00
|
|
|
fWaitToStart = NO;
|
2006-09-29 05:30:36 +00:00
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
if ([self isActive])
|
|
|
|
{
|
|
|
|
tr_torrentStop(fHandle);
|
2007-01-09 01:09:23 +00:00
|
|
|
[self update];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-01-09 01:31:56 +00:00
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateQueue" object: self];
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) stopTransferForQuit
|
|
|
|
{
|
|
|
|
if ([self isActive])
|
|
|
|
tr_torrentStop(fHandle);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) sleep
|
|
|
|
{
|
|
|
|
if ((fResumeOnWake = [self isActive]))
|
|
|
|
tr_torrentStop(fHandle);
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) wakeUp
|
|
|
|
{
|
|
|
|
if (fResumeOnWake)
|
|
|
|
tr_torrentStart(fHandle);
|
|
|
|
}
|
|
|
|
|
2006-12-26 21:02:00 +00:00
|
|
|
- (void) announce
|
|
|
|
{
|
|
|
|
if (![self isActive])
|
|
|
|
return;
|
|
|
|
|
|
|
|
tr_manualUpdate(fHandle);
|
|
|
|
|
|
|
|
if (fAnnounceDate)
|
|
|
|
[fAnnounceDate release];
|
|
|
|
fAnnounceDate = [[NSDate date] retain];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSDate *) announceDate
|
|
|
|
{
|
|
|
|
return fAnnounceDate;
|
|
|
|
}
|
|
|
|
|
2007-01-15 04:09:56 +00:00
|
|
|
- (BOOL) allDownloaded
|
|
|
|
{
|
|
|
|
return [self progress] >= 1.0;
|
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (float) ratio
|
|
|
|
{
|
2006-12-30 19:24:09 +00:00
|
|
|
return fStat->ratio;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2006-12-28 00:29:05 +00:00
|
|
|
- (BOOL) customRatioSetting
|
|
|
|
{
|
|
|
|
return fRatioCustom;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setCustomRatioSetting: (BOOL) setting
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2006-12-28 00:29:05 +00:00
|
|
|
fRatioCustom = setting;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2006-12-28 00:29:05 +00:00
|
|
|
- (BOOL) shouldStopAtRatio
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2006-12-28 00:29:05 +00:00
|
|
|
return fShouldStopAtRatio;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setShouldStopAtRatio: (BOOL) setting
|
|
|
|
{
|
|
|
|
fShouldStopAtRatio = setting;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (float) ratioLimit
|
|
|
|
{
|
|
|
|
return fRatioLimit;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setRatioLimit: (float) limit
|
|
|
|
{
|
|
|
|
if (limit >= 0)
|
|
|
|
fRatioLimit = limit;
|
|
|
|
}
|
|
|
|
|
2006-12-28 00:29:05 +00:00
|
|
|
- (BOOL) checkUpload
|
|
|
|
{
|
|
|
|
return fCheckUpload;
|
|
|
|
}
|
|
|
|
|
2006-12-27 02:57:55 +00:00
|
|
|
- (void) setLimitUpload: (BOOL) limit
|
|
|
|
{
|
|
|
|
fCheckUpload = limit;
|
2007-01-08 15:11:15 +00:00
|
|
|
[self updateSpeedSetting];
|
2006-12-28 00:29:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (int) uploadLimit
|
|
|
|
{
|
|
|
|
return fUploadLimit;
|
2006-12-27 02:57:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setUploadLimit: (int) limit
|
|
|
|
{
|
|
|
|
fUploadLimit = limit;
|
2007-01-08 15:11:15 +00:00
|
|
|
[self updateSpeedSetting];
|
2006-12-28 00:29:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) checkDownload
|
|
|
|
{
|
|
|
|
return fCheckDownload;
|
2006-12-27 02:57:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setLimitDownload: (BOOL) limit
|
|
|
|
{
|
|
|
|
fCheckDownload = limit;
|
2007-01-08 15:11:15 +00:00
|
|
|
[self updateSpeedSetting];
|
2006-12-27 02:57:55 +00:00
|
|
|
}
|
|
|
|
|
2006-12-28 00:29:05 +00:00
|
|
|
- (int) downloadLimit
|
2006-12-27 02:57:55 +00:00
|
|
|
{
|
2006-12-28 00:29:05 +00:00
|
|
|
return fDownloadLimit;
|
2006-12-27 02:57:55 +00:00
|
|
|
}
|
|
|
|
|
2006-12-28 00:29:05 +00:00
|
|
|
- (void) setDownloadLimit: (int) limit
|
2006-12-27 02:57:55 +00:00
|
|
|
{
|
2006-12-28 00:29:05 +00:00
|
|
|
fDownloadLimit = limit;
|
2007-01-08 15:11:15 +00:00
|
|
|
[self updateSpeedSetting];
|
2006-12-27 02:57:55 +00:00
|
|
|
}
|
|
|
|
|
2006-12-28 00:29:05 +00:00
|
|
|
- (BOOL) customLimitSetting
|
2006-12-27 02:57:55 +00:00
|
|
|
{
|
2006-12-28 00:29:05 +00:00
|
|
|
return fLimitCustom;
|
2006-12-27 02:57:55 +00:00
|
|
|
}
|
|
|
|
|
2006-12-28 00:29:05 +00:00
|
|
|
- (void) setCustomLimitSetting: (BOOL) setting
|
2006-12-27 02:57:55 +00:00
|
|
|
{
|
2006-12-28 00:29:05 +00:00
|
|
|
fLimitCustom = setting;
|
2007-01-08 15:11:15 +00:00
|
|
|
[self updateSpeedSetting];
|
2006-12-27 02:57:55 +00:00
|
|
|
}
|
|
|
|
|
2007-01-08 15:11:15 +00:00
|
|
|
- (void) updateSpeedSetting
|
2006-12-27 02:57:55 +00:00
|
|
|
{
|
2007-01-08 21:53:55 +00:00
|
|
|
tr_setUseCustomLimit(fHandle, fLimitCustom);
|
|
|
|
tr_setUploadLimit(fHandle, fCheckUpload ? fUploadLimit : -1);
|
|
|
|
tr_setDownloadLimit(fHandle, fCheckDownload ? fDownloadLimit : -1);
|
2006-12-27 02:57:55 +00:00
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (void) setWaitToStart: (BOOL) wait
|
|
|
|
{
|
|
|
|
fWaitToStart = wait;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) waitingToStart
|
|
|
|
{
|
|
|
|
return fWaitToStart;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) revealData
|
|
|
|
{
|
|
|
|
[[NSWorkspace sharedWorkspace] selectFile: [self dataLocation] inFileViewerRootedAtPath: nil];
|
|
|
|
}
|
|
|
|
|
2006-10-15 19:57:40 +00:00
|
|
|
- (void) revealPublicTorrent
|
|
|
|
{
|
|
|
|
if (fPublicTorrent)
|
|
|
|
[[NSWorkspace sharedWorkspace] selectFile: fPublicTorrentLocation inFileViewerRootedAtPath: nil];
|
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (void) trashData
|
|
|
|
{
|
|
|
|
[self trashFile: [self dataLocation]];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) trashTorrent
|
|
|
|
{
|
|
|
|
if (fPublicTorrent)
|
|
|
|
[self trashFile: [self publicTorrentLocation]];
|
|
|
|
}
|
|
|
|
|
2006-11-16 19:32:01 +00:00
|
|
|
- (BOOL) alertForRemainingDiskSpace
|
2006-09-28 00:32:26 +00:00
|
|
|
{
|
2007-01-15 04:09:56 +00:00
|
|
|
if ([self allDownloaded])
|
2006-09-28 00:32:26 +00:00
|
|
|
return YES;
|
|
|
|
|
2006-11-16 19:32:01 +00:00
|
|
|
NSString * volumeName = [[[NSFileManager defaultManager] componentsToDisplayForPath: [self downloadFolder]]
|
|
|
|
objectAtIndex: 0];
|
2006-11-17 10:12:15 +00:00
|
|
|
NSDictionary * fsAttributes = [[NSFileManager defaultManager] fileSystemAttributesAtPath: [self downloadFolder]];
|
2006-09-28 04:06:38 +00:00
|
|
|
uint64_t remainingSpace = [[fsAttributes objectForKey: NSFileSystemFreeSize] unsignedLongLongValue],
|
2006-09-28 17:38:10 +00:00
|
|
|
torrentRemaining = [self size] - (uint64_t)[self downloadedValid];
|
2006-09-28 04:06:38 +00:00
|
|
|
|
2006-11-16 19:32:01 +00:00
|
|
|
/*NSLog(@"Volume: %@", volumeName);
|
2006-09-28 16:54:44 +00:00
|
|
|
NSLog(@"Remaining disk space: %qu (%@)", remainingSpace, [NSString stringForFileSize: remainingSpace]);
|
2006-10-29 17:41:45 +00:00
|
|
|
NSLog(@"Torrent remaining size: %qu (%@)", torrentRemaining, [NSString stringForFileSize: torrentRemaining]);*/
|
2006-09-28 00:32:26 +00:00
|
|
|
|
2006-11-16 19:32:01 +00:00
|
|
|
if (volumeName && remainingSpace <= torrentRemaining)
|
2006-09-28 00:32:26 +00:00
|
|
|
{
|
|
|
|
NSAlert * alert = [[NSAlert alloc] init];
|
2006-10-24 20:51:47 +00:00
|
|
|
[alert setMessageText: [NSString stringWithFormat:
|
|
|
|
NSLocalizedString(@"Not enough remaining disk space to download \"%@\" completely.",
|
|
|
|
"Torrent file disk space alert -> title"), [self name]]];
|
2006-09-28 00:48:07 +00:00
|
|
|
[alert setInformativeText: [NSString stringWithFormat:
|
2006-11-16 19:32:01 +00:00
|
|
|
NSLocalizedString(@"The transfer will be paused. Clear up space on \"%@\" to continue.",
|
|
|
|
"Torrent file disk space alert -> message"), volumeName]];
|
2006-10-24 20:34:13 +00:00
|
|
|
[alert addButtonWithTitle: NSLocalizedString(@"OK", "Torrent file disk space alert -> button")];
|
|
|
|
[alert addButtonWithTitle: NSLocalizedString(@"Download Anyway", "Torrent file disk space alert -> button")];
|
2006-09-28 00:32:26 +00:00
|
|
|
|
2007-01-09 01:31:56 +00:00
|
|
|
BOOL ret = [alert runModal] != NSAlertFirstButtonReturn;
|
2006-11-16 22:03:51 +00:00
|
|
|
|
|
|
|
[alert release];
|
2007-01-09 01:31:56 +00:00
|
|
|
|
|
|
|
return ret;
|
2006-09-28 00:32:26 +00:00
|
|
|
}
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2007-01-14 20:22:51 +00:00
|
|
|
- (BOOL) alertForFolderAvailable
|
2006-11-16 19:32:01 +00:00
|
|
|
{
|
2007-01-14 20:22:51 +00:00
|
|
|
if (access(tr_torrentGetFolder(fHandle), 0))
|
2006-11-16 19:32:01 +00:00
|
|
|
{
|
|
|
|
NSAlert * alert = [[NSAlert alloc] init];
|
|
|
|
[alert setMessageText: [NSString stringWithFormat:
|
2007-01-14 20:22:51 +00:00
|
|
|
NSLocalizedString(@"The folder for downloading \"%@\" cannot be found.",
|
|
|
|
"Folder cannot be found alert -> title"), [self name]]];
|
2006-11-16 19:32:01 +00:00
|
|
|
[alert setInformativeText: [NSString stringWithFormat:
|
2007-01-14 20:22:51 +00:00
|
|
|
NSLocalizedString(@"\"%@\" cannot be found. The transfer will be paused.",
|
|
|
|
"Folder cannot be found alert -> message"), [self downloadFolder]]];
|
|
|
|
[alert addButtonWithTitle: NSLocalizedString(@"OK", "Folder cannot be found alert -> button")];
|
|
|
|
[alert addButtonWithTitle: [NSLocalizedString(@"Choose New Location",
|
|
|
|
"Folder cannot be found alert -> location button") stringByAppendingEllipsis]];
|
2006-11-16 19:32:01 +00:00
|
|
|
|
2007-01-09 01:31:56 +00:00
|
|
|
if ([alert runModal] != NSAlertFirstButtonReturn)
|
2006-11-16 21:24:24 +00:00
|
|
|
{
|
|
|
|
NSOpenPanel * panel = [NSOpenPanel openPanel];
|
|
|
|
|
2007-01-15 18:50:59 +00:00
|
|
|
[panel setPrompt: NSLocalizedString(@"Select", "Folder cannot be found alert -> prompt")];
|
2006-11-16 21:24:24 +00:00
|
|
|
[panel setAllowsMultipleSelection: NO];
|
|
|
|
[panel setCanChooseFiles: NO];
|
|
|
|
[panel setCanChooseDirectories: YES];
|
2007-01-15 18:36:08 +00:00
|
|
|
[panel setCanCreateDirectories: YES];
|
2006-11-16 21:24:24 +00:00
|
|
|
|
|
|
|
[panel setMessage: [NSString stringWithFormat: NSLocalizedString(@"Select the download folder for \"%@\"",
|
2007-01-15 18:50:59 +00:00
|
|
|
"Folder cannot be found alert -> select destination folder"), [self name]]];
|
2006-11-16 21:24:24 +00:00
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName: @"MakeWindowKey" object: nil];
|
|
|
|
[panel beginSheetForDirectory: nil file: nil types: nil modalForWindow: [NSApp keyWindow] modalDelegate: self
|
|
|
|
didEndSelector: @selector(destinationChoiceClosed:returnCode:contextInfo:) contextInfo: nil];
|
|
|
|
}
|
|
|
|
|
2006-11-16 22:03:51 +00:00
|
|
|
[alert release];
|
|
|
|
|
2006-11-16 21:24:24 +00:00
|
|
|
return NO;
|
2006-11-16 19:32:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2006-11-18 15:47:20 +00:00
|
|
|
- (void) destinationChoiceClosed: (NSOpenPanel *) openPanel returnCode: (int) code contextInfo: (void *) context
|
2006-11-16 21:24:24 +00:00
|
|
|
{
|
2007-01-15 18:36:08 +00:00
|
|
|
if (code != NSOKButton)
|
|
|
|
return;
|
|
|
|
|
2006-11-16 21:24:24 +00:00
|
|
|
NSString * folder = [[openPanel filenames] objectAtIndex: 0];
|
2007-01-15 18:36:08 +00:00
|
|
|
if (fUseIncompleteFolder)
|
2006-11-16 21:24:24 +00:00
|
|
|
{
|
2007-01-15 18:36:08 +00:00
|
|
|
[fIncompleteFolder release];
|
|
|
|
fIncompleteFolder = [folder retain];
|
|
|
|
[self setDownloadFolder: nil];
|
2006-11-16 21:24:24 +00:00
|
|
|
}
|
2007-01-15 18:36:08 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
[fDownloadFolder release];
|
|
|
|
fDownloadFolder = folder;
|
|
|
|
[self setDownloadFolder: fDownloadFolder];
|
|
|
|
}
|
|
|
|
|
|
|
|
[self startTransfer];
|
|
|
|
[self update];
|
|
|
|
|
|
|
|
[[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateInfoSettings" object: nil];
|
2006-11-16 21:24:24 +00:00
|
|
|
}
|
|
|
|
|
2007-01-14 20:22:51 +00:00
|
|
|
- (BOOL) alertForMoveFolderAvailable
|
2006-11-16 22:03:51 +00:00
|
|
|
{
|
2007-01-14 20:22:51 +00:00
|
|
|
if (access([fDownloadFolder UTF8String], 0))
|
2006-11-16 22:03:51 +00:00
|
|
|
{
|
|
|
|
NSAlert * alert = [[NSAlert alloc] init];
|
|
|
|
[alert setMessageText: [NSString stringWithFormat:
|
2007-01-14 20:24:52 +00:00
|
|
|
NSLocalizedString(@"The folder for moving the completed \"%@\" cannot be found.",
|
2007-01-14 20:22:51 +00:00
|
|
|
"Move folder cannot be found alert -> title"), [self name]]];
|
|
|
|
[alert setInformativeText: [NSString stringWithFormat:
|
|
|
|
NSLocalizedString(@"\"%@\" cannot be found. The file will remain in its current location.",
|
|
|
|
"Move folder cannot be found alert -> message"), fDownloadFolder]];
|
|
|
|
[alert addButtonWithTitle: NSLocalizedString(@"OK", "Move folder cannot be found alert -> button")];
|
2006-11-16 22:03:51 +00:00
|
|
|
|
|
|
|
[alert runModal];
|
|
|
|
[alert release];
|
|
|
|
|
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
|
|
|
return YES;
|
|
|
|
}
|
2006-11-16 21:24:24 +00:00
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (NSImage *) icon
|
|
|
|
{
|
|
|
|
return fIcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSImage *) iconFlipped
|
|
|
|
{
|
|
|
|
return fIconFlipped;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSImage *) iconSmall
|
|
|
|
{
|
|
|
|
return fIconSmall;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *) name
|
|
|
|
{
|
|
|
|
return [NSString stringWithUTF8String: fInfo->name];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (uint64_t) size
|
|
|
|
{
|
|
|
|
return fInfo->totalSize;
|
|
|
|
}
|
|
|
|
|
2006-12-26 21:02:00 +00:00
|
|
|
- (NSString *) trackerAddress
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2006-12-17 16:36:27 +00:00
|
|
|
return [NSString stringWithFormat: @"http://%s:%d", fStat->trackerAddress, fStat->trackerPort];
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2006-12-26 21:02:00 +00:00
|
|
|
- (NSString *) trackerAddressAnnounce
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2006-12-17 16:36:27 +00:00
|
|
|
return [NSString stringWithUTF8String: fStat->trackerAnnounce];
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2006-11-23 01:38:18 +00:00
|
|
|
- (NSString *) comment
|
|
|
|
{
|
|
|
|
return [NSString stringWithUTF8String: fInfo->comment];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *) creator
|
|
|
|
{
|
|
|
|
return [NSString stringWithUTF8String: fInfo->creator];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSDate *) dateCreated
|
|
|
|
{
|
|
|
|
int date = fInfo->dateCreated;
|
2006-12-02 01:46:54 +00:00
|
|
|
return date > 0 ? [NSDate dateWithTimeIntervalSince1970: date] : nil;
|
2006-11-23 01:38:18 +00:00
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (int) pieceSize
|
|
|
|
{
|
|
|
|
return fInfo->pieceSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (int) pieceCount
|
|
|
|
{
|
|
|
|
return fInfo->pieceCount;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *) hashString
|
|
|
|
{
|
|
|
|
return [NSString stringWithUTF8String: fInfo->hashString];
|
|
|
|
}
|
|
|
|
|
2006-12-17 16:36:27 +00:00
|
|
|
- (BOOL) privateTorrent
|
|
|
|
{
|
|
|
|
return fInfo->privateTorrent;
|
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (NSString *) torrentLocation
|
|
|
|
{
|
|
|
|
return [NSString stringWithUTF8String: fInfo->torrent];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *) publicTorrentLocation
|
|
|
|
{
|
|
|
|
return fPublicTorrentLocation;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *) dataLocation
|
|
|
|
{
|
|
|
|
return [[self downloadFolder] stringByAppendingPathComponent: [self name]];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) publicTorrent
|
|
|
|
{
|
|
|
|
return fPublicTorrent;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *) stateString
|
|
|
|
{
|
|
|
|
switch( fStat->status )
|
|
|
|
{
|
|
|
|
case TR_STATUS_PAUSE:
|
2006-10-24 20:34:13 +00:00
|
|
|
return NSLocalizedString(@"Paused", "Torrent -> status string");
|
2006-07-16 19:39:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_CHECK:
|
2006-10-24 20:34:13 +00:00
|
|
|
return [NSLocalizedString(@"Checking existing files", "Torrent -> status string") stringByAppendingEllipsis];
|
2006-07-16 19:39:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_DOWNLOAD:
|
2006-10-24 20:34:13 +00:00
|
|
|
return NSLocalizedString(@"Downloading", "Torrent -> status string");
|
2006-07-16 19:39:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_SEED:
|
2006-10-24 20:34:13 +00:00
|
|
|
return NSLocalizedString(@"Seeding", "Torrent -> status string");
|
2006-07-16 19:39:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_STOPPING:
|
2006-10-24 20:34:13 +00:00
|
|
|
return [NSLocalizedString(@"Stopping", "Torrent -> status string") stringByAppendingEllipsis];
|
2006-07-16 19:39:23 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2006-10-24 20:34:13 +00:00
|
|
|
return NSLocalizedString(@"N/A", "Torrent -> status string");
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- (float) progress
|
|
|
|
{
|
|
|
|
return fStat->progress;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (int) eta
|
|
|
|
{
|
|
|
|
return fStat->eta;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) isActive
|
|
|
|
{
|
|
|
|
return fStat->status & TR_STATUS_ACTIVE;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) isSeeding
|
|
|
|
{
|
|
|
|
return fStat->status == TR_STATUS_SEED;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (BOOL) isPaused
|
|
|
|
{
|
|
|
|
return fStat->status == TR_STATUS_PAUSE;
|
|
|
|
}
|
|
|
|
|
2006-08-29 00:09:49 +00:00
|
|
|
- (BOOL) isError
|
|
|
|
{
|
2007-01-14 12:00:21 +00:00
|
|
|
return fStat->error;
|
2006-08-29 00:09:49 +00:00
|
|
|
}
|
|
|
|
|
2006-12-17 16:36:27 +00:00
|
|
|
- (NSString *) errorMessage
|
|
|
|
{
|
2007-01-14 12:00:21 +00:00
|
|
|
[NSString stringWithUTF8String: fStat->errorString];
|
2006-12-17 16:36:27 +00:00
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (BOOL) justFinished
|
|
|
|
{
|
|
|
|
return tr_getFinished(fHandle);
|
|
|
|
}
|
|
|
|
|
2006-08-13 15:46:02 +00:00
|
|
|
- (NSArray *) peers
|
|
|
|
{
|
2006-08-13 21:16:18 +00:00
|
|
|
int totalPeers, i;
|
|
|
|
tr_peer_stat_t * peers = tr_torrentPeers(fHandle, & totalPeers);
|
2006-08-13 15:46:02 +00:00
|
|
|
|
2006-08-13 21:16:18 +00:00
|
|
|
NSMutableArray * peerDics = [NSMutableArray arrayWithCapacity: totalPeers];
|
2006-12-18 06:25:40 +00:00
|
|
|
NSMutableDictionary * dic;
|
|
|
|
|
|
|
|
tr_peer_stat_t * peer;
|
2006-08-13 21:56:20 +00:00
|
|
|
NSString * client;
|
2006-08-13 15:46:02 +00:00
|
|
|
for (i = 0; i < totalPeers; i++)
|
|
|
|
{
|
2006-12-18 06:25:40 +00:00
|
|
|
peer = &peers[i];
|
|
|
|
|
|
|
|
dic = [NSMutableDictionary dictionaryWithObjectsAndKeys:
|
|
|
|
[NSNumber numberWithBool: peer->isConnected], @"Connected",
|
|
|
|
[NSNumber numberWithBool: peer->isIncoming], @"Incoming",
|
|
|
|
[NSString stringWithCString: (char *) peer->addr encoding: NSUTF8StringEncoding], @"IP",
|
|
|
|
[NSString stringWithCString: (char *) peer->client encoding: NSUTF8StringEncoding], @"Client",
|
|
|
|
[NSNumber numberWithFloat: peer->progress], @"Progress",
|
|
|
|
[NSNumber numberWithBool: peer->isDownloading], @"UL To",
|
|
|
|
[NSNumber numberWithBool: peer->isUploading], @"DL From",
|
|
|
|
[NSNumber numberWithInt: peer->port], @"Port", nil];
|
|
|
|
|
|
|
|
if (peer->isDownloading)
|
|
|
|
[dic setObject: [NSNumber numberWithFloat: peer->uploadToRate] forKey: @"UL To Rate"];
|
|
|
|
if (peer->isUploading)
|
|
|
|
[dic setObject: [NSNumber numberWithFloat: peer->downloadFromRate] forKey: @"DL From Rate"];
|
|
|
|
|
|
|
|
[peerDics addObject: dic];
|
2006-08-13 15:46:02 +00:00
|
|
|
}
|
|
|
|
|
2006-08-13 21:24:23 +00:00
|
|
|
tr_torrentPeersFree(peers, totalPeers);
|
|
|
|
|
2006-08-13 21:16:18 +00:00
|
|
|
return peerDics;
|
2006-08-13 15:46:02 +00:00
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (NSString *) progressString
|
|
|
|
{
|
|
|
|
return fProgressString;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *) statusString
|
|
|
|
{
|
|
|
|
return fStatusString;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *) shortStatusString
|
|
|
|
{
|
|
|
|
return fShortStatusString;
|
|
|
|
}
|
|
|
|
|
2006-07-25 00:59:14 +00:00
|
|
|
- (NSString *) remainingTimeString
|
|
|
|
{
|
|
|
|
return fRemainingTimeString;
|
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (int) seeders
|
|
|
|
{
|
|
|
|
return fStat->seeders;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (int) leechers
|
|
|
|
{
|
|
|
|
return fStat->leechers;
|
|
|
|
}
|
|
|
|
|
2006-12-02 01:46:54 +00:00
|
|
|
- (int) completedFromTracker
|
|
|
|
{
|
|
|
|
return fStat->completedFromTracker;
|
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (int) totalPeers
|
|
|
|
{
|
|
|
|
return fStat->peersTotal;
|
|
|
|
}
|
|
|
|
|
2006-10-13 18:58:12 +00:00
|
|
|
- (int) totalPeersIncoming
|
|
|
|
{
|
|
|
|
return fStat->peersIncoming;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (int) totalPeersOutgoing
|
|
|
|
{
|
|
|
|
return [self totalPeers] - [self totalPeersIncoming];
|
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
//peers uploading to you
|
|
|
|
- (int) peersUploading
|
|
|
|
{
|
|
|
|
return fStat->peersUploading;
|
|
|
|
}
|
|
|
|
|
|
|
|
//peers downloading from you
|
|
|
|
- (int) peersDownloading
|
|
|
|
{
|
|
|
|
return fStat->peersDownloading;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (float) downloadRate
|
|
|
|
{
|
|
|
|
return fStat->rateDownload;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (float) uploadRate
|
|
|
|
{
|
|
|
|
return fStat->rateUpload;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (float) downloadedValid
|
|
|
|
{
|
|
|
|
return [self progress] * [self size];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (uint64_t) downloadedTotal
|
|
|
|
{
|
|
|
|
return fStat->downloaded;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (uint64_t) uploadedTotal
|
|
|
|
{
|
|
|
|
return fStat->uploaded;
|
|
|
|
}
|
|
|
|
|
2006-08-17 03:12:40 +00:00
|
|
|
- (float) swarmSpeed
|
|
|
|
{
|
|
|
|
return fStat->swarmspeed;
|
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (NSNumber *) orderValue
|
|
|
|
{
|
|
|
|
return [NSNumber numberWithInt: fOrderValue];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (void) setOrderValue: (int) orderValue
|
|
|
|
{
|
|
|
|
fOrderValue = orderValue;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSArray *) fileList
|
|
|
|
{
|
2007-01-17 20:50:42 +00:00
|
|
|
return fFileList;
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
2007-01-17 06:43:07 +00:00
|
|
|
- (int) fileCount
|
|
|
|
{
|
|
|
|
return fInfo->fileCount;
|
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (NSDate *) date
|
|
|
|
{
|
|
|
|
return fDate;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSNumber *) stateSortKey
|
|
|
|
{
|
|
|
|
if (![self isActive])
|
|
|
|
return [NSNumber numberWithInt: 0];
|
|
|
|
else if ([self isSeeding])
|
|
|
|
return [NSNumber numberWithInt: 1];
|
|
|
|
else
|
|
|
|
return [NSNumber numberWithInt: 2];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSNumber *) progressSortKey
|
|
|
|
{
|
2007-01-15 04:41:01 +00:00
|
|
|
return [NSNumber numberWithFloat: [self progress]];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSNumber *) ratioSortKey
|
|
|
|
{
|
|
|
|
float ratio = [self ratio];
|
|
|
|
if (ratio == TR_RATIO_INF)
|
|
|
|
return [NSNumber numberWithInt: 999999999]; //this should hopefully be big enough
|
|
|
|
else
|
|
|
|
return [NSNumber numberWithFloat: [self ratio]];
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
|
|
|
|
@implementation Torrent (Private)
|
|
|
|
|
|
|
|
//if a hash is given, attempt to load that; otherwise, attempt to open file at path
|
|
|
|
- (id) initWithHash: (NSString *) hashString path: (NSString *) path lib: (tr_handle_t *) lib
|
2006-11-05 19:08:38 +00:00
|
|
|
publicTorrent: (NSNumber *) publicTorrent
|
2006-12-28 00:29:05 +00:00
|
|
|
date: (NSDate *) date
|
|
|
|
stopRatioCustom: (NSNumber *) ratioCustom
|
|
|
|
shouldStopAtRatio: (NSNumber *) shouldStopAtRatio
|
2006-12-27 02:57:55 +00:00
|
|
|
ratioLimit: (NSNumber *) ratioLimit
|
2006-12-28 00:29:05 +00:00
|
|
|
limitSpeedCustom: (NSNumber *) limitCustom
|
2006-12-27 02:57:55 +00:00
|
|
|
checkUpload: (NSNumber *) checkUpload uploadLimit: (NSNumber *) uploadLimit
|
|
|
|
checkDownload: (NSNumber *) checkDownload downloadLimit: (NSNumber *) downloadLimit
|
|
|
|
waitToStart: (NSNumber *) waitToStart orderValue: (NSNumber *) orderValue
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
|
|
|
if (!(self = [super init]))
|
|
|
|
return nil;
|
|
|
|
|
|
|
|
fLib = lib;
|
|
|
|
fDefaults = [NSUserDefaults standardUserDefaults];
|
|
|
|
|
2006-11-05 19:08:38 +00:00
|
|
|
fPublicTorrent = path && (publicTorrent ? [publicTorrent boolValue] : ![fDefaults boolForKey: @"DeleteOriginalTorrent"]);
|
|
|
|
if (fPublicTorrent)
|
|
|
|
fPublicTorrentLocation = [path retain];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
int error;
|
2006-11-05 19:08:38 +00:00
|
|
|
if (hashString)
|
2006-07-16 19:39:23 +00:00
|
|
|
fHandle = tr_torrentInitSaved(fLib, [hashString UTF8String], TR_FSAVEPRIVATE, & error);
|
|
|
|
|
|
|
|
if (!fHandle && path)
|
2006-11-05 19:08:38 +00:00
|
|
|
fHandle = tr_torrentInit(fLib, [path UTF8String], TR_FSAVEPRIVATE, & error);
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
if (!fHandle)
|
|
|
|
{
|
|
|
|
[self release];
|
|
|
|
return nil;
|
|
|
|
}
|
|
|
|
|
2006-12-28 00:29:05 +00:00
|
|
|
NSNotificationCenter * nc = [NSNotificationCenter defaultCenter];
|
|
|
|
[nc addObserver: self selector: @selector(updateSpeedSetting:)
|
|
|
|
name: @"UpdateSpeedSetting" object: nil];
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
fInfo = tr_torrentInfo( fHandle );
|
|
|
|
|
|
|
|
fDate = date ? [date retain] : [[NSDate alloc] init];
|
|
|
|
|
2006-12-28 00:29:05 +00:00
|
|
|
fRatioCustom = ratioCustom ? [ratioCustom boolValue] : NO;
|
|
|
|
fShouldStopAtRatio = shouldStopAtRatio ? [shouldStopAtRatio boolValue] : [fDefaults boolForKey: @"RatioCheck"];
|
2006-07-16 19:39:23 +00:00
|
|
|
fRatioLimit = ratioLimit ? [ratioLimit floatValue] : [fDefaults floatForKey: @"RatioLimit"];
|
|
|
|
fFinishedSeeding = NO;
|
|
|
|
|
2006-12-28 00:29:05 +00:00
|
|
|
fLimitCustom = limitCustom ? [limitCustom boolValue] : NO;
|
2007-01-08 15:11:15 +00:00
|
|
|
fCheckUpload = checkUpload ? [checkUpload boolValue] : NO;
|
2007-01-08 15:20:18 +00:00
|
|
|
fUploadLimit = uploadLimit ? [uploadLimit intValue] : [fDefaults integerForKey: @"UploadLimit"];
|
2007-01-08 15:11:15 +00:00
|
|
|
fCheckDownload = checkDownload ? [checkDownload boolValue] : NO;
|
2007-01-08 15:20:18 +00:00
|
|
|
fDownloadLimit = downloadLimit ? [downloadLimit intValue] : [fDefaults integerForKey: @"DownloadLimit"];
|
2007-01-08 15:11:15 +00:00
|
|
|
[self updateSpeedSetting];
|
2006-12-27 02:57:55 +00:00
|
|
|
|
2006-09-27 14:43:36 +00:00
|
|
|
fWaitToStart = waitToStart ? [waitToStart boolValue] : [fDefaults boolForKey: @"AutoStartDownload"];
|
2006-07-16 19:39:23 +00:00
|
|
|
fOrderValue = orderValue ? [orderValue intValue] : tr_torrentCount(fLib) - 1;
|
2006-09-29 05:30:36 +00:00
|
|
|
fError = NO;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
NSString * fileType = fInfo->multifile ? NSFileTypeForHFSTypeCode('fldr') : [[self name] pathExtension];
|
|
|
|
fIcon = [[NSWorkspace sharedWorkspace] iconForFileType: fileType];
|
|
|
|
[fIcon retain];
|
|
|
|
|
|
|
|
fIconFlipped = [fIcon copy];
|
|
|
|
[fIconFlipped setFlipped: YES];
|
|
|
|
|
|
|
|
fIconSmall = [fIconFlipped copy];
|
|
|
|
[fIconSmall setScalesWhenResized: YES];
|
|
|
|
[fIconSmall setSize: NSMakeSize(16.0, 16.0)];
|
|
|
|
|
|
|
|
fProgressString = [[NSMutableString alloc] initWithCapacity: 50];
|
|
|
|
fStatusString = [[NSMutableString alloc] initWithCapacity: 75];
|
2006-07-25 00:59:14 +00:00
|
|
|
fShortStatusString = [[NSMutableString alloc] initWithCapacity: 30];
|
|
|
|
fRemainingTimeString = [[NSMutableString alloc] initWithCapacity: 30];
|
2006-10-05 21:21:30 +00:00
|
|
|
|
2007-01-17 20:50:42 +00:00
|
|
|
fFileList = [self createFileList];
|
|
|
|
|
2006-10-05 21:21:30 +00:00
|
|
|
//set up advanced bar
|
|
|
|
fBitmap = [[NSBitmapImageRep alloc] initWithBitmapDataPlanes: nil
|
|
|
|
pixelsWide: MAX_PIECES pixelsHigh: BAR_HEIGHT bitsPerSample: 8 samplesPerPixel: 4 hasAlpha: YES
|
|
|
|
isPlanar: NO colorSpaceName: NSCalibratedRGBColorSpace bytesPerRow: 0 bitsPerPixel: 0];
|
|
|
|
|
|
|
|
fPieces = malloc(MAX_PIECES);
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < MAX_PIECES; i++)
|
|
|
|
fPieces[i] = BLANK_PIECE;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
[self update];
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2007-01-17 20:50:42 +00:00
|
|
|
- (NSArray *) createFileList
|
|
|
|
{
|
|
|
|
int count = [self fileCount], i;
|
|
|
|
tr_file_t * file;
|
|
|
|
NSMutableArray * files = [[NSMutableArray alloc] init], * pathComponents;
|
|
|
|
NSString * path;
|
|
|
|
|
|
|
|
for (i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
file = &fInfo->files[i];
|
|
|
|
|
|
|
|
pathComponents = [[[NSString stringWithUTF8String: file->name] pathComponents] mutableCopy];
|
|
|
|
if (fInfo->multifile)
|
|
|
|
{
|
|
|
|
path = [pathComponents objectAtIndex: 0];
|
|
|
|
[pathComponents removeObjectAtIndex: 0];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
path = @"";
|
|
|
|
|
|
|
|
[self insertPath: pathComponents withParent: files previousPath: path fileSize: file->length];
|
|
|
|
[pathComponents autorelease];
|
|
|
|
}
|
|
|
|
return files;
|
|
|
|
}
|
|
|
|
|
2007-01-17 17:29:42 +00:00
|
|
|
- (void) insertPath: (NSMutableArray *) components withParent: (NSMutableArray *) parent
|
|
|
|
previousPath: (NSString *) previousPath fileSize: (uint64_t) size
|
2007-01-17 06:25:35 +00:00
|
|
|
{
|
|
|
|
NSString * name = [components objectAtIndex: 0];
|
|
|
|
BOOL isFolder = [components count] > 1;
|
|
|
|
|
|
|
|
NSMutableDictionary * dict = nil;
|
|
|
|
if (isFolder)
|
|
|
|
{
|
|
|
|
NSEnumerator * enumerator = [parent objectEnumerator];
|
|
|
|
while ((dict = [enumerator nextObject]))
|
|
|
|
if ([[dict objectForKey: @"Name"] isEqualToString: name] && [[dict objectForKey: @"IsFolder"] boolValue])
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-01-17 17:29:42 +00:00
|
|
|
NSString * currentPath = [previousPath stringByAppendingPathComponent: name];
|
|
|
|
|
2007-01-17 06:25:35 +00:00
|
|
|
//create new folder or item if it doesn't already exist
|
|
|
|
if (!dict)
|
|
|
|
{
|
|
|
|
dict = [NSMutableDictionary dictionaryWithObjectsAndKeys: name, @"Name",
|
2007-01-17 17:29:42 +00:00
|
|
|
[NSNumber numberWithBool: isFolder], @"IsFolder",
|
|
|
|
currentPath, @"Path", nil];
|
2007-01-17 06:25:35 +00:00
|
|
|
if (isFolder)
|
|
|
|
[dict setObject: [NSMutableArray array] forKey: @"Children"];
|
2007-01-17 07:26:33 +00:00
|
|
|
else
|
|
|
|
[dict setObject: [NSNumber numberWithUnsignedLongLong: size] forKey: @"Size"];
|
2007-01-17 06:25:35 +00:00
|
|
|
|
|
|
|
[parent addObject: dict];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isFolder)
|
|
|
|
{
|
|
|
|
[components removeObjectAtIndex: 0];
|
2007-01-17 17:29:42 +00:00
|
|
|
[self insertPath: components withParent: [dict objectForKey: @"Children"] previousPath: currentPath fileSize: size];
|
2007-01-17 06:25:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-25 18:37:45 +00:00
|
|
|
- (NSImage *) advancedBar
|
|
|
|
{
|
|
|
|
int h, w;
|
|
|
|
uint32_t * p;
|
2006-10-05 21:21:30 +00:00
|
|
|
uint8_t * bitmapData = [fBitmap bitmapData];
|
|
|
|
int bytesPerRow = [fBitmap bytesPerRow];
|
2006-09-25 18:37:45 +00:00
|
|
|
|
2006-10-05 21:21:30 +00:00
|
|
|
int8_t * pieces = malloc(MAX_PIECES);
|
|
|
|
[self getAvailability: pieces size: MAX_PIECES];
|
2006-09-25 18:37:45 +00:00
|
|
|
|
2006-10-06 20:45:59 +00:00
|
|
|
//lines 2 to 14: blue, green, or gray depending on whether we have the piece or not
|
2006-10-05 21:34:22 +00:00
|
|
|
int have = 0, avail = 0;
|
2006-09-25 18:37:45 +00:00
|
|
|
uint32_t color;
|
2006-10-05 21:21:30 +00:00
|
|
|
BOOL change;
|
|
|
|
for (w = 0; w < MAX_PIECES; w++)
|
2006-09-25 18:37:45 +00:00
|
|
|
{
|
2006-10-05 21:21:30 +00:00
|
|
|
change = NO;
|
2006-09-25 18:37:45 +00:00
|
|
|
if (pieces[w] < 0)
|
2006-10-05 21:21:30 +00:00
|
|
|
{
|
|
|
|
if (fPieces[w] != -1)
|
|
|
|
{
|
2006-10-06 20:45:59 +00:00
|
|
|
color = kBlue;
|
2006-10-05 21:21:30 +00:00
|
|
|
fPieces[w] = -1;
|
|
|
|
change = YES;
|
|
|
|
}
|
2006-10-05 21:34:22 +00:00
|
|
|
have++;
|
2006-10-05 21:21:30 +00:00
|
|
|
}
|
2006-09-25 18:37:45 +00:00
|
|
|
else if (pieces[w] == 0)
|
2006-10-05 21:21:30 +00:00
|
|
|
{
|
|
|
|
if (fPieces[w] != 0)
|
|
|
|
{
|
|
|
|
color = kGray;
|
|
|
|
fPieces[w] = 0;
|
|
|
|
change = YES;
|
|
|
|
}
|
|
|
|
}
|
2006-10-05 21:34:22 +00:00
|
|
|
else
|
2006-10-05 21:21:30 +00:00
|
|
|
{
|
2006-10-05 21:34:22 +00:00
|
|
|
if (pieces[w] == 1)
|
2006-10-05 21:21:30 +00:00
|
|
|
{
|
2006-10-05 21:34:22 +00:00
|
|
|
if (fPieces[w] != 1)
|
|
|
|
{
|
2006-10-06 20:45:59 +00:00
|
|
|
color = kGreen1;
|
2006-10-05 21:34:22 +00:00
|
|
|
fPieces[w] = 1;
|
|
|
|
change = YES;
|
|
|
|
}
|
2006-10-05 21:21:30 +00:00
|
|
|
}
|
2006-10-05 21:34:22 +00:00
|
|
|
else if (pieces[w] == 2)
|
2006-10-05 21:21:30 +00:00
|
|
|
{
|
2006-10-05 21:34:22 +00:00
|
|
|
if (fPieces[w] != 2)
|
|
|
|
{
|
2006-10-06 20:45:59 +00:00
|
|
|
color = kGreen2;
|
2006-10-05 21:34:22 +00:00
|
|
|
fPieces[w] = 2;
|
|
|
|
change = YES;
|
|
|
|
}
|
2006-10-05 21:21:30 +00:00
|
|
|
}
|
2006-10-05 21:34:22 +00:00
|
|
|
else
|
2006-10-05 21:21:30 +00:00
|
|
|
{
|
2006-10-05 21:34:22 +00:00
|
|
|
if (fPieces[w] != 3)
|
|
|
|
{
|
2006-10-06 20:45:59 +00:00
|
|
|
color = kGreen3;
|
2006-10-05 21:34:22 +00:00
|
|
|
fPieces[w] = 3;
|
|
|
|
change = YES;
|
|
|
|
}
|
2006-10-05 21:21:30 +00:00
|
|
|
}
|
2006-10-05 21:34:22 +00:00
|
|
|
avail++;
|
2006-10-05 21:21:30 +00:00
|
|
|
}
|
2006-09-25 18:37:45 +00:00
|
|
|
|
2006-10-05 21:21:30 +00:00
|
|
|
if (change)
|
2006-09-25 18:37:45 +00:00
|
|
|
{
|
2006-10-05 21:21:30 +00:00
|
|
|
//point to pixel (w, 2) and draw "vertically"
|
|
|
|
p = (uint32_t *)(bitmapData + 2 * bytesPerRow) + w;
|
|
|
|
for (h = 2; h < BAR_HEIGHT; h++)
|
|
|
|
{
|
|
|
|
p[0] = color;
|
|
|
|
p = (uint32_t *)((uint8_t *)p + bytesPerRow);
|
|
|
|
}
|
2006-09-25 18:37:45 +00:00
|
|
|
}
|
|
|
|
}
|
2006-10-05 21:34:22 +00:00
|
|
|
|
|
|
|
//first two lines: dark blue to show progression, green to show available
|
|
|
|
p = (uint32_t *) bitmapData;
|
|
|
|
for (w = 0; w < have; w++)
|
|
|
|
{
|
2006-10-06 20:45:59 +00:00
|
|
|
p[w] = kBlue2;
|
|
|
|
p[w + bytesPerRow / 4] = kBlue2;
|
2006-10-05 21:34:22 +00:00
|
|
|
}
|
|
|
|
for (; w < avail + have; w++)
|
|
|
|
{
|
2006-10-06 20:45:59 +00:00
|
|
|
p[w] = kGreen3;
|
|
|
|
p[w + bytesPerRow / 4] = kGreen3;
|
2006-10-05 21:34:22 +00:00
|
|
|
}
|
|
|
|
for (; w < MAX_PIECES; w++)
|
|
|
|
{
|
|
|
|
p[w] = kWhite;
|
|
|
|
p[w + bytesPerRow / 4] = kWhite;
|
|
|
|
}
|
|
|
|
|
2006-09-25 18:37:45 +00:00
|
|
|
free(pieces);
|
|
|
|
|
|
|
|
//actually draw image
|
2006-10-05 21:21:30 +00:00
|
|
|
NSImage * bar = [[NSImage alloc] initWithSize: [fBitmap size]];
|
|
|
|
[bar addRepresentation: fBitmap];
|
2006-09-25 18:37:45 +00:00
|
|
|
[bar setScalesWhenResized: YES];
|
|
|
|
|
|
|
|
return [bar autorelease];
|
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
- (void) trashFile: (NSString *) path
|
|
|
|
{
|
|
|
|
//attempt to move to trash
|
|
|
|
if (![[NSWorkspace sharedWorkspace] performFileOperation: NSWorkspaceRecycleOperation
|
|
|
|
source: [path stringByDeletingLastPathComponent] destination: @""
|
|
|
|
files: [NSArray arrayWithObject: [path lastPathComponent]] tag: nil])
|
|
|
|
{
|
|
|
|
//if cannot trash, just delete it (will work if it is on a remote volume)
|
|
|
|
if (![[NSFileManager defaultManager] removeFileAtPath: path handler: nil])
|
2006-11-09 04:38:32 +00:00
|
|
|
NSLog(@"Could not trash %@", path);
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|