2007-09-16 01:02:06 +00:00
|
|
|
/******************************************************************************
|
2012-01-14 17:12:04 +00:00
|
|
|
* Copyright (c) 2006-2012 Transmission authors and contributors
|
2007-09-16 01:02:06 +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.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2021-12-08 16:55:52 +00:00
|
|
|
#include <optional>
|
|
|
|
|
2018-09-30 10:37:30 +00:00
|
|
|
#include <libtransmission/transmission.h>
|
2021-12-08 16:55:52 +00:00
|
|
|
|
2018-09-30 10:37:30 +00:00
|
|
|
#include <libtransmission/error.h>
|
|
|
|
#include <libtransmission/log.h>
|
|
|
|
#include <libtransmission/utils.h> // tr_new()
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
#import "Torrent.h"
|
2008-03-23 00:56:43 +00:00
|
|
|
#import "GroupsController.h"
|
2008-05-22 18:39:49 +00:00
|
|
|
#import "FileListNode.h"
|
2014-10-17 05:12:00 +00:00
|
|
|
#import "NSApplicationAdditions.h"
|
2007-09-16 01:02:06 +00:00
|
|
|
#import "NSStringAdditions.h"
|
2009-09-26 04:02:39 +00:00
|
|
|
#import "TrackerNode.h"
|
2010-04-23 16:59:14 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
#define ETA_IDLE_DISPLAY_SEC (2 * 60)
|
2010-08-14 17:32:52 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@interface Torrent (Private)
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (instancetype)initWithPath:(NSString*)path
|
|
|
|
hash:(NSString*)hashString
|
|
|
|
torrentStruct:(tr_torrent*)torrentStruct
|
|
|
|
magnetAddress:(NSString*)magnetAddress
|
|
|
|
lib:(tr_session*)lib
|
|
|
|
groupValue:(NSNumber*)groupValue
|
|
|
|
removeWhenFinishSeeding:(NSNumber*)removeWhenFinishSeeding
|
|
|
|
downloadFolder:(NSString*)downloadFolder
|
|
|
|
legacyIncompleteFolder:(NSString*)incompleteFolder;
|
|
|
|
|
|
|
|
- (void)createFileList;
|
|
|
|
- (void)insertPathForComponents:(NSArray*)components
|
|
|
|
withComponentIndex:(NSUInteger)componentIndex
|
|
|
|
forParent:(FileListNode*)parent
|
|
|
|
fileSize:(uint64_t)size
|
|
|
|
index:(NSInteger)index
|
|
|
|
flatList:(NSMutableArray*)flatFileList;
|
|
|
|
- (void)sortFileList:(NSMutableArray*)fileNodes;
|
|
|
|
|
|
|
|
- (void)startQueue;
|
|
|
|
- (void)completenessChange:(tr_completeness)status wasRunning:(BOOL)wasRunning;
|
|
|
|
- (void)ratioLimitHit;
|
|
|
|
- (void)idleLimitHit;
|
|
|
|
- (void)metadataRetrieved;
|
|
|
|
- (void)renameFinished:(BOOL)success
|
|
|
|
nodes:(NSArray*)nodes
|
|
|
|
completionHandler:(void (^)(BOOL))completionHandler
|
|
|
|
oldPath:(NSString*)oldPath
|
|
|
|
newName:(NSString*)newName;
|
|
|
|
|
|
|
|
@property(nonatomic, readonly) BOOL shouldShowEta;
|
|
|
|
@property(nonatomic, readonly) NSString* etaString;
|
|
|
|
|
|
|
|
- (void)setTimeMachineExclude:(BOOL)exclude;
|
2008-01-09 16:26:58 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@end
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
void startQueueCallback(tr_torrent* torrent, void* torrentData)
|
2011-08-04 00:36:02 +00:00
|
|
|
{
|
2013-07-14 14:28:40 +00:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
2021-08-15 09:41:48 +00:00
|
|
|
[(__bridge Torrent*)torrentData startQueue];
|
2013-07-14 14:28:40 +00:00
|
|
|
});
|
2011-08-04 00:36:02 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
void completenessChangeCallback(tr_torrent* torrent, tr_completeness status, bool wasRunning, void* torrentData)
|
2007-09-28 15:36:46 +00:00
|
|
|
{
|
2013-07-14 14:28:40 +00:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
2021-08-15 09:41:48 +00:00
|
|
|
[(__bridge Torrent*)torrentData completenessChange:status wasRunning:wasRunning];
|
2013-07-14 14:28:40 +00:00
|
|
|
});
|
2009-02-14 21:15:57 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
void ratioLimitHitCallback(tr_torrent* torrent, void* torrentData)
|
2009-02-14 21:15:57 +00:00
|
|
|
{
|
2013-07-14 14:28:40 +00:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
2021-08-15 09:41:48 +00:00
|
|
|
[(__bridge Torrent*)torrentData ratioLimitHit];
|
2013-07-14 14:28:40 +00:00
|
|
|
});
|
2007-09-28 15:36:46 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
void idleLimitHitCallback(tr_torrent* torrent, void* torrentData)
|
2010-07-16 03:12:57 +00:00
|
|
|
{
|
2013-07-14 14:28:40 +00:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
2021-08-15 09:41:48 +00:00
|
|
|
[(__bridge Torrent*)torrentData idleLimitHit];
|
2013-07-14 14:28:40 +00:00
|
|
|
});
|
2010-07-16 03:12:57 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
void metadataCallback(tr_torrent* torrent, void* torrentData)
|
2009-11-27 03:44:00 +00:00
|
|
|
{
|
2013-07-14 14:28:40 +00:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
2021-08-15 09:41:48 +00:00
|
|
|
[(__bridge Torrent*)torrentData metadataRetrieved];
|
2013-07-14 14:28:40 +00:00
|
|
|
});
|
2009-11-27 03:44:00 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
void renameCallback(tr_torrent* torrent, char const* oldPathCharString, char const* newNameCharString, int error, void* contextInfo)
|
2013-01-22 00:09:48 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
|
|
|
NSString* oldPath = @(oldPathCharString);
|
|
|
|
NSString* newName = @(newNameCharString);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-02-11 01:47:51 +00:00
|
|
|
dispatch_async(dispatch_get_main_queue(), ^{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSDictionary* contextDict = (__bridge_transfer NSDictionary*)contextInfo;
|
|
|
|
Torrent* torrentObject = contextDict[@"Torrent"];
|
|
|
|
[torrentObject renameFinished:error == 0 nodes:contextDict[@"Nodes"]
|
|
|
|
completionHandler:contextDict[@"CompletionHandler"]
|
|
|
|
oldPath:oldPath
|
|
|
|
newName:newName];
|
2013-02-11 01:47:51 +00:00
|
|
|
});
|
2013-01-22 00:09:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
bool trashDataFile(char const* filename, tr_error** error)
|
2008-12-24 01:55:33 +00:00
|
|
|
{
|
2015-10-23 04:09:40 +00:00
|
|
|
if (filename == NULL)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2015-10-23 04:09:40 +00:00
|
|
|
return false;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2015-10-23 04:09:40 +00:00
|
|
|
|
2012-02-11 05:13:46 +00:00
|
|
|
@autoreleasepool
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSError* localError;
|
|
|
|
if (![Torrent trashFile:@(filename) error:&localError])
|
2015-10-23 04:09:40 +00:00
|
|
|
{
|
2021-12-28 02:32:22 +00:00
|
|
|
tr_error_set(error, localError.code, localError.description.UTF8String);
|
2015-10-23 04:09:40 +00:00
|
|
|
return false;
|
|
|
|
}
|
2012-02-11 05:13:46 +00:00
|
|
|
}
|
2015-10-23 04:09:40 +00:00
|
|
|
|
|
|
|
return true;
|
2008-12-24 01:55:33 +00:00
|
|
|
}
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@implementation Torrent
|
2021-01-12 19:06:30 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
tr_torrent* fHandle;
|
|
|
|
tr_stat const* fStat;
|
2021-01-12 19:06:30 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSUserDefaults* fDefaults;
|
2021-01-12 19:06:30 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSImage* fIcon;
|
2021-01-12 19:06:30 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSArray* fFileList;
|
|
|
|
NSArray* fFlatFileList;
|
2021-01-12 19:06:30 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSIndexSet* fPreviousFinishedIndexes;
|
|
|
|
NSDate* fPreviousFinishedIndexesDate;
|
2021-01-12 19:06:30 +00:00
|
|
|
|
|
|
|
NSInteger fGroupValue;
|
|
|
|
TorrentDeterminationType fGroupValueDetermination;
|
|
|
|
|
|
|
|
TorrentDeterminationType fDownloadFolderDetermination;
|
|
|
|
|
|
|
|
BOOL fResumeOnWake;
|
|
|
|
|
|
|
|
BOOL fTimeMachineExcludeInitialized;
|
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (instancetype)initWithPath:(NSString*)path
|
|
|
|
location:(NSString*)location
|
|
|
|
deleteTorrentFile:(BOOL)torrentDelete
|
|
|
|
lib:(tr_session*)lib
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
self = [self initWithPath:path hash:nil torrentStruct:NULL magnetAddress:nil lib:lib groupValue:nil
|
|
|
|
removeWhenFinishSeeding:nil
|
|
|
|
downloadFolder:location
|
|
|
|
legacyIncompleteFolder:nil];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
if (self)
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
if (torrentDelete && ![self.torrentLocation isEqualToString:path])
|
|
|
|
{
|
|
|
|
[Torrent trashFile:path error:nil];
|
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (instancetype)initWithTorrentStruct:(tr_torrent*)torrentStruct location:(NSString*)location lib:(tr_session*)lib
|
2008-01-21 06:23:10 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
self = [self initWithPath:nil hash:nil torrentStruct:torrentStruct magnetAddress:nil lib:lib groupValue:nil
|
|
|
|
removeWhenFinishSeeding:nil
|
|
|
|
downloadFolder:location
|
|
|
|
legacyIncompleteFolder:nil];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-01-21 06:23:10 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (instancetype)initWithMagnetAddress:(NSString*)address location:(NSString*)location lib:(tr_session*)lib
|
2009-11-25 04:11:52 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
self = [self initWithPath:nil hash:nil torrentStruct:nil magnetAddress:address lib:lib groupValue:nil
|
|
|
|
removeWhenFinishSeeding:nil
|
|
|
|
downloadFolder:location
|
|
|
|
legacyIncompleteFolder:nil];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-11-25 04:11:52 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (instancetype)initWithHistory:(NSDictionary*)history lib:(tr_session*)lib forcePause:(BOOL)pause
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
self = [self initWithPath:history[@"InternalTorrentPath"] hash:history[@"TorrentHash"] torrentStruct:NULL magnetAddress:nil
|
|
|
|
lib:lib
|
|
|
|
groupValue:history[@"GroupValue"]
|
|
|
|
removeWhenFinishSeeding:history[@"RemoveWhenFinishSeeding"]
|
|
|
|
downloadFolder:history[@"DownloadFolder"] //upgrading from versions < 1.80
|
|
|
|
legacyIncompleteFolder:[history[@"UseIncompleteFolder"] boolValue] //upgrading from versions < 1.80
|
|
|
|
?
|
|
|
|
history[@"IncompleteFolder"] :
|
|
|
|
nil];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
if (self)
|
|
|
|
{
|
|
|
|
//start transfer
|
2021-08-15 09:41:48 +00:00
|
|
|
NSNumber* active;
|
2021-08-07 07:27:56 +00:00
|
|
|
if (!pause && (active = history[@"Active"]) && active.boolValue)
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
fStat = tr_torrentStat(fHandle);
|
2011-08-02 12:43:26 +00:00
|
|
|
[self startTransferNoQueue];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-02-14 21:15:57 +00:00
|
|
|
//upgrading from versions < 1.60: get old stop ratio settings
|
2021-08-15 09:41:48 +00:00
|
|
|
NSNumber* ratioSetting;
|
2017-07-08 14:38:47 +00:00
|
|
|
if ((ratioSetting = history[@"RatioSetting"]))
|
2009-02-14 21:15:57 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
switch (ratioSetting.intValue)
|
2009-02-14 21:15:57 +00:00
|
|
|
{
|
2021-10-31 15:18:27 +00:00
|
|
|
case NSControlStateValueOn:
|
2021-08-15 09:41:48 +00:00
|
|
|
self.ratioSetting = TR_RATIOLIMIT_SINGLE;
|
|
|
|
break;
|
2021-10-31 15:18:27 +00:00
|
|
|
case NSControlStateValueOff:
|
2021-08-15 09:41:48 +00:00
|
|
|
self.ratioSetting = TR_RATIOLIMIT_UNLIMITED;
|
|
|
|
break;
|
2021-10-31 15:18:27 +00:00
|
|
|
case NSControlStateValueMixed:
|
2021-08-15 09:41:48 +00:00
|
|
|
self.ratioSetting = TR_RATIOLIMIT_GLOBAL;
|
|
|
|
break;
|
2009-02-14 21:15:57 +00:00
|
|
|
}
|
|
|
|
}
|
2021-08-15 09:41:48 +00:00
|
|
|
NSNumber* ratioLimit;
|
2017-07-08 14:38:47 +00:00
|
|
|
if ((ratioLimit = history[@"RatioLimit"]))
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
self.ratioLimit = ratioLimit.floatValue;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSDictionary*)history
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2017-07-08 15:02:00 +00:00
|
|
|
return @{
|
2021-08-15 09:41:48 +00:00
|
|
|
@"InternalTorrentPath" : self.torrentLocation,
|
|
|
|
@"TorrentHash" : self.hashString,
|
|
|
|
@"Active" : @(self.active),
|
|
|
|
@"WaitToStart" : @(self.waitingToStart),
|
|
|
|
@"GroupValue" : @(fGroupValue),
|
|
|
|
@"RemoveWhenFinishSeeding" : @(_removeWhenFinishSeeding)
|
|
|
|
};
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)dealloc
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
[NSNotificationCenter.defaultCenter removeObserver:self];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)description
|
2008-05-12 01:32:33 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
return [@"Torrent: " stringByAppendingString:self.name];
|
2008-05-12 01:32:33 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (id)copyWithZone:(NSZone*)zone
|
2010-02-13 04:30:47 +00:00
|
|
|
{
|
2017-07-29 16:14:22 +00:00
|
|
|
return self;
|
2010-02-13 04:30:47 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)closeRemoveTorrent:(BOOL)trashFiles
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2010-11-08 12:28:30 +00:00
|
|
|
//allow the file to be indexed by Time Machine
|
2021-08-15 09:41:48 +00:00
|
|
|
[self setTimeMachineExclude:NO];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2010-12-16 03:39:11 +00:00
|
|
|
tr_torrentRemove(fHandle, trashFiles, trashDataFile);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)changeDownloadFolderBeforeUsing:(NSString*)folder determinationType:(TorrentDeterminationType)determinationType
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2012-08-06 03:59:07 +00:00
|
|
|
//if data existed in original download location, unexclude it before changing the location
|
2021-08-15 09:41:48 +00:00
|
|
|
[self setTimeMachineExclude:NO];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
tr_torrentSetDownloadDir(fHandle, folder.UTF8String);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-10-30 00:22:10 +00:00
|
|
|
fDownloadFolderDetermination = determinationType;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)currentDirectory
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2017-07-08 08:06:32 +00:00
|
|
|
return @(tr_torrentGetCurrentDir(fHandle));
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)getAvailability:(int8_t*)tab size:(NSInteger)size
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
tr_torrentAvailability(fHandle, tab, size);
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)getAmountFinished:(float*)tab size:(NSInteger)size
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
tr_torrentAmountFinished(fHandle, tab, size);
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSIndexSet*)previousFinishedPieces
|
2007-12-28 21:37:06 +00:00
|
|
|
{
|
2008-06-11 16:28:33 +00:00
|
|
|
//if the torrent hasn't been seen in a bit, and therefore hasn't been refreshed, return nil
|
2021-08-07 07:27:56 +00:00
|
|
|
if (fPreviousFinishedIndexesDate && fPreviousFinishedIndexesDate.timeIntervalSinceNow > -2.0)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2008-06-11 16:28:33 +00:00
|
|
|
return fPreviousFinishedIndexes;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2007-12-28 21:37:06 +00:00
|
|
|
else
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2008-06-11 16:28:33 +00:00
|
|
|
return nil;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2007-12-28 21:37:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setPreviousFinishedPieces:(NSIndexSet*)indexes
|
2007-12-28 21:37:06 +00:00
|
|
|
{
|
2017-07-29 16:14:22 +00:00
|
|
|
fPreviousFinishedIndexes = indexes;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-06-11 16:28:33 +00:00
|
|
|
fPreviousFinishedIndexesDate = indexes != nil ? [[NSDate alloc] init] : nil;
|
2007-12-28 21:37:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)update
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2011-10-30 03:13:20 +00:00
|
|
|
//get previous stalled value before update
|
2021-08-15 09:41:48 +00:00
|
|
|
BOOL const wasStalled = fStat != NULL && self.stalled;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
fStat = tr_torrentStat(fHandle);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2011-10-30 03:13:20 +00:00
|
|
|
//make sure the "active" filter is updated when stalled-ness changes
|
2021-08-07 07:27:56 +00:00
|
|
|
if (wasStalled != self.stalled)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2015-11-25 21:53:26 +00:00
|
|
|
//posting asynchronously with coalescing to prevent stack overflow on lots of torrents changing state at the same time
|
2021-08-15 09:41:48 +00:00
|
|
|
[NSNotificationQueue.defaultQueue enqueueNotification:[NSNotification notificationWithName:@"UpdateQueue" object:self]
|
|
|
|
postingStyle:NSPostASAP
|
|
|
|
coalesceMask:NSNotificationCoalescingOnName
|
|
|
|
forModes:nil];
|
|
|
|
}
|
2015-11-25 21:53:26 +00:00
|
|
|
|
2012-08-06 03:59:07 +00:00
|
|
|
//when the torrent is first loaded, update the time machine exclusion
|
|
|
|
if (!fTimeMachineExcludeInitialized)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2009-10-21 13:01:14 +00:00
|
|
|
[self updateTimeMachineExclude];
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)startTransferIgnoringQueue:(BOOL)ignoreQueue
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2011-08-11 01:54:14 +00:00
|
|
|
if ([self alertForRemainingDiskSpace])
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2011-08-28 00:07:30 +00:00
|
|
|
ignoreQueue ? tr_torrentStartNow(fHandle) : tr_torrentStart(fHandle);
|
2011-08-02 12:43:26 +00:00
|
|
|
[self update];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2011-08-02 12:43:26 +00:00
|
|
|
//capture, specifically, stop-seeding settings changing to unlimited
|
2021-08-15 09:41:48 +00:00
|
|
|
[NSNotificationCenter.defaultCenter postNotificationName:@"UpdateOptions" object:nil];
|
2011-08-02 12:43:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)startTransferNoQueue
|
2011-08-28 00:07:30 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
[self startTransferIgnoringQueue:YES];
|
2011-08-28 00:07:30 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)startTransfer
|
2011-08-02 12:43:26 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
[self startTransferIgnoringQueue:NO];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)stopTransfer
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2011-08-11 01:54:14 +00:00
|
|
|
tr_torrentStop(fHandle);
|
|
|
|
[self update];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)sleep
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
if ((fResumeOnWake = self.active))
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2007-09-16 01:02:06 +00:00
|
|
|
tr_torrentStop(fHandle);
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)wakeUp
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
if (fResumeOnWake)
|
2010-04-14 13:36:43 +00:00
|
|
|
{
|
2021-12-14 21:59:44 +00:00
|
|
|
tr_logAddNamedInfo(tr_torrentName(fHandle), "restarting because of wakeUp");
|
2007-09-16 01:02:06 +00:00
|
|
|
tr_torrentStart(fHandle);
|
2010-04-14 13:36:43 +00:00
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSUInteger)queuePosition
|
2011-08-11 01:54:14 +00:00
|
|
|
{
|
|
|
|
return fStat->queuePosition;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setQueuePosition:(NSUInteger)index
|
2011-08-02 12:43:26 +00:00
|
|
|
{
|
|
|
|
tr_torrentSetQueuePosition(fHandle, index);
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)manualAnnounce
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2008-05-22 20:44:41 +00:00
|
|
|
tr_torrentManualUpdate(fHandle);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)canManualAnnounce
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
return tr_torrentCanManualUpdate(fHandle);
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)resetCache
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2013-01-31 21:58:25 +00:00
|
|
|
tr_torrentVerify(fHandle, NULL, NULL);
|
2007-09-16 01:02:06 +00:00
|
|
|
[self update];
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)isMagnet
|
2009-11-25 05:04:19 +00:00
|
|
|
{
|
|
|
|
return !tr_torrentHasMetadata(fHandle);
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)magnetLink
|
2009-12-04 13:35:15 +00:00
|
|
|
{
|
2017-07-08 08:06:32 +00:00
|
|
|
return @(tr_torrentGetMagnetLink(fHandle));
|
2009-12-04 13:35:15 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (CGFloat)ratio
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
return fStat->ratio;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (tr_ratiolimit)ratioSetting
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2009-02-14 21:15:57 +00:00
|
|
|
return tr_torrentGetRatioMode(fHandle);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setRatioSetting:(tr_ratiolimit)setting
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2009-02-14 21:15:57 +00:00
|
|
|
tr_torrentSetRatioMode(fHandle, setting);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (CGFloat)ratioLimit
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2009-02-14 21:15:57 +00:00
|
|
|
return tr_torrentGetRatioLimit(fHandle);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setRatioLimit:(CGFloat)limit
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2012-08-06 04:02:18 +00:00
|
|
|
NSParameterAssert(limit >= 0);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-02-14 21:15:57 +00:00
|
|
|
tr_torrentSetRatioLimit(fHandle, limit);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (CGFloat)progressStopRatio
|
2008-06-24 04:00:39 +00:00
|
|
|
{
|
2010-04-14 00:03:34 +00:00
|
|
|
return fStat->seedRatioPercentDone;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (tr_idlelimit)idleSetting
|
2010-07-16 03:12:57 +00:00
|
|
|
{
|
2010-07-24 03:19:41 +00:00
|
|
|
return tr_torrentGetIdleMode(fHandle);
|
2010-07-16 03:12:57 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setIdleSetting:(tr_idlelimit)setting
|
2010-07-16 03:12:57 +00:00
|
|
|
{
|
2010-07-24 03:19:41 +00:00
|
|
|
tr_torrentSetIdleMode(fHandle, setting);
|
2010-07-16 03:12:57 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSUInteger)idleLimitMinutes
|
2010-07-16 03:12:57 +00:00
|
|
|
{
|
2010-07-24 03:19:41 +00:00
|
|
|
return tr_torrentGetIdleLimit(fHandle);
|
2010-07-16 03:12:57 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setIdleLimitMinutes:(NSUInteger)limit
|
2010-07-16 03:12:57 +00:00
|
|
|
{
|
2012-08-06 04:02:18 +00:00
|
|
|
NSParameterAssert(limit > 0);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2010-07-24 03:19:41 +00:00
|
|
|
tr_torrentSetIdleLimit(fHandle, limit);
|
2010-07-16 03:12:57 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)usesSpeedLimit:(BOOL)upload
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2009-03-28 17:18:43 +00:00
|
|
|
return tr_torrentUsesSpeedLimit(fHandle, upload ? TR_UP : TR_DOWN);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setUseSpeedLimit:(BOOL)use upload:(BOOL)upload
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2009-03-05 01:10:09 +00:00
|
|
|
tr_torrentUseSpeedLimit(fHandle, upload ? TR_UP : TR_DOWN, use);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)speedLimit:(BOOL)upload
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2010-07-06 03:31:17 +00:00
|
|
|
return tr_torrentGetSpeedLimit_KBps(fHandle, upload ? TR_UP : TR_DOWN);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setSpeedLimit:(NSInteger)limit upload:(BOOL)upload
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2010-07-06 03:31:17 +00:00
|
|
|
tr_torrentSetSpeedLimit_KBps(fHandle, upload ? TR_UP : TR_DOWN, limit);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)usesGlobalSpeedLimit
|
2009-03-05 01:10:09 +00:00
|
|
|
{
|
2009-03-28 17:18:43 +00:00
|
|
|
return tr_torrentUsesSessionLimits(fHandle);
|
2009-03-05 01:10:09 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setUseGlobalSpeedLimit:(BOOL)use
|
2009-03-05 01:10:09 +00:00
|
|
|
{
|
2009-03-28 17:18:43 +00:00
|
|
|
tr_torrentUseSessionLimits(fHandle, use);
|
2009-03-05 01:10:09 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setMaxPeerConnect:(uint16_t)count
|
2007-12-22 05:21:25 +00:00
|
|
|
{
|
2012-08-06 04:02:18 +00:00
|
|
|
NSParameterAssert(count > 0);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-06-17 17:17:15 +00:00
|
|
|
tr_torrentSetPeerLimit(fHandle, count);
|
2007-12-22 05:21:25 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (uint16_t)maxPeerConnect
|
2007-12-22 05:21:25 +00:00
|
|
|
{
|
2008-05-12 16:39:32 +00:00
|
|
|
return tr_torrentGetPeerLimit(fHandle);
|
2007-12-22 05:21:25 +00:00
|
|
|
}
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)waitingToStart
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2011-08-02 12:43:26 +00:00
|
|
|
return fStat->activity == TR_STATUS_DOWNLOAD_WAIT || fStat->activity == TR_STATUS_SEED_WAIT;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (tr_priority_t)priority
|
2009-04-20 02:45:27 +00:00
|
|
|
{
|
|
|
|
return tr_torrentGetPriority(fHandle);
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setPriority:(tr_priority_t)priority
|
2009-04-20 02:45:27 +00:00
|
|
|
{
|
|
|
|
return tr_torrentSetPriority(fHandle, priority);
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
+ (BOOL)trashFile:(NSString*)path error:(NSError**)error
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-11-10 18:20:06 +00:00
|
|
|
// Attempt to move to trash
|
|
|
|
if ([NSFileManager.defaultManager trashItemAtURL:[NSURL fileURLWithPath:path] resultingItemURL:nil error:nil])
|
2012-06-03 23:29:39 +00:00
|
|
|
{
|
2021-11-10 18:20:06 +00:00
|
|
|
NSLog(@"Old moved to Trash %@", path);
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
// If cannot trash, just delete it (will work if it's on a remote volume)
|
|
|
|
NSError* localError;
|
|
|
|
if ([NSFileManager.defaultManager removeItemAtPath:path error:&localError])
|
|
|
|
{
|
|
|
|
NSLog(@"Old removed %@", path);
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSLog(@"Old could not be trashed or removed %@: %@", path, localError.localizedDescription);
|
|
|
|
if (error != nil)
|
|
|
|
{
|
|
|
|
*error = localError;
|
2012-06-03 23:29:39 +00:00
|
|
|
}
|
2015-10-23 04:09:40 +00:00
|
|
|
|
2021-11-10 18:20:06 +00:00
|
|
|
return NO;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)moveTorrentDataFileTo:(NSString*)folder
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* oldFolder = self.currentDirectory;
|
|
|
|
if ([oldFolder isEqualToString:folder])
|
|
|
|
{
|
2009-10-21 13:01:14 +00:00
|
|
|
return;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-10-21 13:01:14 +00:00
|
|
|
//check if moving inside itself
|
2021-08-15 09:41:48 +00:00
|
|
|
NSArray *oldComponents = oldFolder.pathComponents, *newComponents = folder.pathComponents;
|
|
|
|
NSUInteger const oldCount = oldComponents.count;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
if (oldCount < newComponents.count && [newComponents[oldCount] isEqualToString:self.name] && [folder hasPrefix:oldFolder])
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSAlert* alert = [[NSAlert alloc] init];
|
|
|
|
alert.messageText = NSLocalizedString(@"A folder cannot be moved to inside itself.", "Move inside itself alert -> title");
|
|
|
|
alert.informativeText = [NSString
|
|
|
|
stringWithFormat:NSLocalizedString(@"The move operation of \"%@\" cannot be done.", "Move inside itself alert -> message"),
|
|
|
|
self.name];
|
|
|
|
[alert addButtonWithTitle:NSLocalizedString(@"OK", "Move inside itself alert -> button")];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-10-21 13:01:14 +00:00
|
|
|
[alert runModal];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-10-21 13:01:14 +00:00
|
|
|
return;
|
2009-10-25 03:05:25 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-11-01 21:56:50 +00:00
|
|
|
volatile int status;
|
2021-08-07 07:27:56 +00:00
|
|
|
tr_torrentSetLocation(fHandle, folder.UTF8String, YES, NULL, &status);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-11-01 22:26:35 +00:00
|
|
|
while (status == TR_LOC_MOVING) //block while moving (for now)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
[NSThread sleepForTimeInterval:0.05];
|
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-10-21 13:01:14 +00:00
|
|
|
if (status == TR_LOC_DONE)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
[NSNotificationCenter.defaultCenter postNotificationName:@"UpdateStats" object:nil];
|
|
|
|
}
|
2009-10-21 13:01:14 +00:00
|
|
|
else
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSAlert* alert = [[NSAlert alloc] init];
|
2021-08-07 07:27:56 +00:00
|
|
|
alert.messageText = NSLocalizedString(@"There was an error moving the data file.", "Move error alert -> title");
|
2021-08-15 09:41:48 +00:00
|
|
|
alert.informativeText = [NSString
|
|
|
|
stringWithFormat:NSLocalizedString(@"The move operation of \"%@\" cannot be done.", "Move error alert -> message"), self.name];
|
|
|
|
[alert addButtonWithTitle:NSLocalizedString(@"OK", "Move error alert -> button")];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-10-21 13:01:14 +00:00
|
|
|
[alert runModal];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-10-21 23:13:02 +00:00
|
|
|
[self updateTimeMachineExclude];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)copyTorrentFileTo:(NSString*)path
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
[NSFileManager.defaultManager copyItemAtPath:self.torrentLocation toPath:path error:NULL];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)alertForRemainingDiskSpace
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
if (self.allDownloaded || ![fDefaults boolForKey:@"WarningRemainingSpace"])
|
|
|
|
{
|
2007-09-16 01:02:06 +00:00
|
|
|
return YES;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* downloadFolder = self.currentDirectory;
|
|
|
|
NSDictionary* systemAttributes;
|
|
|
|
if ((systemAttributes = [NSFileManager.defaultManager attributesOfFileSystemForPath:downloadFolder error:NULL]))
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
uint64_t const remainingSpace = ((NSNumber*)systemAttributes[NSFileSystemFreeSize]).unsignedLongLongValue;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-11-06 03:45:56 +00:00
|
|
|
//if the remaining space is greater than the size left, then there is enough space regardless of preallocation
|
2021-08-07 07:27:56 +00:00
|
|
|
if (remainingSpace < self.sizeLeft && remainingSpace < tr_torrentGetBytesLeftToAllocate(fHandle))
|
2008-03-17 19:59:26 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* volumeName = [NSFileManager.defaultManager componentsToDisplayForPath:downloadFolder][0];
|
|
|
|
|
|
|
|
NSAlert* alert = [[NSAlert alloc] init];
|
|
|
|
alert.messageText = [NSString
|
|
|
|
stringWithFormat:NSLocalizedString(@"Not enough remaining disk space to download \"%@\" completely.", "Torrent disk space alert -> title"),
|
|
|
|
self.name];
|
|
|
|
alert.informativeText = [NSString stringWithFormat:NSLocalizedString(
|
|
|
|
@"The transfer will be paused."
|
|
|
|
" Clear up space on %@ or deselect files in the torrent inspector to continue.",
|
|
|
|
"Torrent disk space alert -> message"),
|
|
|
|
volumeName];
|
|
|
|
[alert addButtonWithTitle:NSLocalizedString(@"OK", "Torrent disk space alert -> button")];
|
|
|
|
[alert addButtonWithTitle:NSLocalizedString(@"Download Anyway", "Torrent disk space alert -> button")];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
alert.showsSuppressionButton = YES;
|
2021-08-15 09:41:48 +00:00
|
|
|
alert.suppressionButton.title = NSLocalizedString(@"Do not check disk space again", "Torrent disk space alert -> button");
|
2008-11-05 12:42:03 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSInteger const result = [alert runModal];
|
2021-10-31 15:18:27 +00:00
|
|
|
if (alert.suppressionButton.state == NSControlStateValueOn)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
[fDefaults setBool:NO forKey:@"WarningRemainingSpace"];
|
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-11-05 12:42:03 +00:00
|
|
|
return result != NSAlertFirstButtonReturn;
|
2008-03-17 19:59:26 +00:00
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
return YES;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSImage*)icon
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.magnet)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
return [NSImage imageNamed:@"Magnet"];
|
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
if (!fIcon)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
fIcon = self.folder ? [NSImage imageNamed:NSImageNameFolder] : [NSWorkspace.sharedWorkspace iconForFileType:self.name.pathExtension];
|
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
return fIcon;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)name
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-12-14 21:59:44 +00:00
|
|
|
return @(tr_torrentName(fHandle));
|
2011-08-05 03:11:22 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)isFolder
|
2007-11-25 04:06:26 +00:00
|
|
|
{
|
2021-12-14 21:59:44 +00:00
|
|
|
return tr_torrentView(fHandle).is_folder;
|
2007-11-25 04:06:26 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (uint64_t)size
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-12-14 21:59:44 +00:00
|
|
|
return tr_torrentTotalSize(fHandle);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (uint64_t)sizeLeft
|
2007-10-07 03:28:06 +00:00
|
|
|
{
|
|
|
|
return fStat->leftUntilDone;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSMutableArray*)allTrackerStats
|
2007-10-24 18:49:59 +00:00
|
|
|
{
|
2021-12-08 16:55:52 +00:00
|
|
|
auto const count = tr_torrentTrackerCount(fHandle);
|
|
|
|
auto tier = std::optional<int>{};
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-08 16:55:52 +00:00
|
|
|
NSMutableArray* trackers = [NSMutableArray arrayWithCapacity:count * 2];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-08 16:55:52 +00:00
|
|
|
for (size_t i = 0; i < count; ++i)
|
2007-10-24 18:49:59 +00:00
|
|
|
{
|
2021-12-08 16:55:52 +00:00
|
|
|
auto const tracker = tr_torrentTracker(fHandle, i);
|
|
|
|
|
|
|
|
if (!tier || tier != tracker.tier)
|
2008-04-24 06:42:45 +00:00
|
|
|
{
|
2021-12-08 16:55:52 +00:00
|
|
|
tier = tracker.tier;
|
|
|
|
[trackers addObject:@{ @"Tier" : @(tracker.tier + 1), @"Name" : self.name }];
|
2008-04-24 06:42:45 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-08 16:55:52 +00:00
|
|
|
auto* tracker_node = [[TrackerNode alloc] initWithTrackerView:&tracker torrent:self];
|
|
|
|
[trackers addObject:tracker_node];
|
2007-10-24 18:49:59 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-09-26 04:02:39 +00:00
|
|
|
return trackers;
|
2007-10-24 18:49:59 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSArray*)allTrackersFlat
|
2008-12-24 17:41:45 +00:00
|
|
|
{
|
2021-12-14 20:59:40 +00:00
|
|
|
auto const n = tr_torrentTrackerCount(fHandle);
|
|
|
|
NSMutableArray* allTrackers = [NSMutableArray arrayWithCapacity:n];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-14 20:59:40 +00:00
|
|
|
for (size_t i = 0; i < n; ++i)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-12-14 20:59:40 +00:00
|
|
|
[allTrackers addObject:@(tr_torrentTracker(fHandle, i).announce)];
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-09-27 15:49:33 +00:00
|
|
|
return allTrackers;
|
2008-12-24 17:41:45 +00:00
|
|
|
}
|
|
|
|
|
2021-12-14 20:59:40 +00:00
|
|
|
- (BOOL)addTrackerToNewTier:(NSString*)new_tracker
|
2008-06-02 17:26:02 +00:00
|
|
|
{
|
2021-12-14 20:59:40 +00:00
|
|
|
new_tracker = [new_tracker stringByTrimmingCharactersInSet:NSCharacterSet.whitespaceAndNewlineCharacterSet];
|
|
|
|
if ([new_tracker rangeOfString:@"://"].location == NSNotFound)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-12-14 20:59:40 +00:00
|
|
|
new_tracker = [@"http://" stringByAppendingString:new_tracker];
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-14 20:59:40 +00:00
|
|
|
auto urls = std::vector<char const*>{};
|
|
|
|
auto tiers = std::vector<tr_tracker_tier_t>{};
|
|
|
|
|
|
|
|
for (size_t i = 0, n = tr_torrentTrackerCount(fHandle); i < n; ++i)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-12-14 20:59:40 +00:00
|
|
|
auto const tracker = tr_torrentTracker(fHandle, i);
|
|
|
|
urls.push_back(tracker.announce);
|
|
|
|
tiers.push_back(tracker.tier);
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-14 20:59:40 +00:00
|
|
|
urls.push_back(new_tracker.UTF8String);
|
|
|
|
tiers.push_back(std::empty(tiers) ? 0 : tiers.back() + 1);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-14 20:59:40 +00:00
|
|
|
BOOL const success = tr_torrentSetAnnounceList(fHandle, std::data(urls), std::data(tiers), std::size(urls));
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2010-01-05 04:34:31 +00:00
|
|
|
return success;
|
2008-06-02 19:42:14 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)removeTrackers:(NSSet*)trackers
|
2008-06-02 19:42:14 +00:00
|
|
|
{
|
2021-12-14 20:59:40 +00:00
|
|
|
auto urls = std::vector<char const*>{};
|
|
|
|
auto tiers = std::vector<tr_tracker_tier_t>{};
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-14 20:59:40 +00:00
|
|
|
for (size_t i = 0, n = tr_torrentTrackerCount(fHandle); i < n; ++i)
|
2010-01-08 02:48:08 +00:00
|
|
|
{
|
2021-12-14 20:59:40 +00:00
|
|
|
auto const tracker = tr_torrentTracker(fHandle, i);
|
|
|
|
|
|
|
|
if ([trackers containsObject:@(tracker.announce)])
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-12-14 20:59:40 +00:00
|
|
|
continue;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2021-12-14 20:59:40 +00:00
|
|
|
|
|
|
|
urls.push_back(tracker.announce);
|
|
|
|
tiers.push_back(tracker.tier);
|
2010-01-08 02:48:08 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-14 20:59:40 +00:00
|
|
|
BOOL const success = tr_torrentSetAnnounceList(fHandle, std::data(urls), std::data(tiers), std::size(urls));
|
2010-01-05 04:34:31 +00:00
|
|
|
NSAssert(success, @"Removing tracker addresses failed");
|
2009-09-29 03:02:44 +00:00
|
|
|
}
|
2008-06-02 17:26:02 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)comment
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-12-14 21:59:44 +00:00
|
|
|
auto const* comment = tr_torrentView(fHandle).comment;
|
|
|
|
return comment ? @(comment) : @"";
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)creator
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-12-14 21:59:44 +00:00
|
|
|
auto const* creator = tr_torrentView(fHandle).creator;
|
|
|
|
return creator ? @(creator) : @"";
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSDate*)dateCreated
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-12-14 21:59:44 +00:00
|
|
|
auto const date = tr_torrentView(fHandle).date_created;
|
2021-08-15 09:41:48 +00:00
|
|
|
return date > 0 ? [NSDate dateWithTimeIntervalSince1970:date] : nil;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)pieceSize
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-12-14 21:59:44 +00:00
|
|
|
return tr_torrentView(fHandle).piece_size;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)pieceCount
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-12-14 21:59:44 +00:00
|
|
|
return tr_torrentView(fHandle).n_pieces;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)hashString
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-12-14 21:59:44 +00:00
|
|
|
return @(tr_torrentView(fHandle).hash_string);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)privateTorrent
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-12-14 21:59:44 +00:00
|
|
|
return tr_torrentView(fHandle).is_private;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)torrentLocation
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-12-14 21:59:44 +00:00
|
|
|
auto const* filename = tr_torrentView(fHandle).torrent_filename;
|
|
|
|
return filename ? @(filename) : @"";
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)dataLocation
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.magnet)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2009-11-25 05:04:19 +00:00
|
|
|
return nil;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.folder)
|
2009-10-21 13:01:14 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* dataLocation = [self.currentDirectory stringByAppendingPathComponent:self.name];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
if (![NSFileManager.defaultManager fileExistsAtPath:dataLocation])
|
|
|
|
{
|
2009-10-21 13:01:14 +00:00
|
|
|
return nil;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-10-21 13:01:14 +00:00
|
|
|
return dataLocation;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
char* location = tr_torrentFindFile(fHandle, 0);
|
2009-10-21 13:01:14 +00:00
|
|
|
if (location == NULL)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2009-10-21 13:01:14 +00:00
|
|
|
return nil;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* dataLocation = @(location);
|
2009-10-21 13:01:14 +00:00
|
|
|
free(location);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-10-21 13:01:14 +00:00
|
|
|
return dataLocation;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)fileLocation:(FileListNode*)node
|
2009-10-21 13:01:14 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
if (node.isFolder)
|
2009-10-21 13:01:14 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* basePath = [node.path stringByAppendingPathComponent:node.name];
|
|
|
|
NSString* dataLocation = [self.currentDirectory stringByAppendingPathComponent:basePath];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
if (![NSFileManager.defaultManager fileExistsAtPath:dataLocation])
|
|
|
|
{
|
2009-10-21 13:01:14 +00:00
|
|
|
return nil;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-10-21 13:01:14 +00:00
|
|
|
return dataLocation;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
char* location = tr_torrentFindFile(fHandle, node.indexes.firstIndex);
|
2009-10-21 13:01:14 +00:00
|
|
|
if (location == NULL)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2009-10-21 13:01:14 +00:00
|
|
|
return nil;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* dataLocation = @(location);
|
2009-10-21 13:01:14 +00:00
|
|
|
free(location);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-10-21 13:01:14 +00:00
|
|
|
return dataLocation;
|
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)renameTorrent:(NSString*)newName completionHandler:(void (^)(BOOL didRename))completionHandler
|
2013-01-22 00:09:48 +00:00
|
|
|
{
|
|
|
|
NSParameterAssert(newName != nil);
|
2021-08-15 09:41:48 +00:00
|
|
|
NSParameterAssert(![newName isEqualToString:@""]);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSDictionary* contextInfo = @{ @"Torrent" : self, @"CompletionHandler" : [completionHandler copy] };
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-14 21:59:44 +00:00
|
|
|
tr_torrentRenamePath(fHandle, tr_torrentName(fHandle), newName.UTF8String, renameCallback, (__bridge_retained void*)(contextInfo));
|
2013-01-22 00:09:48 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)renameFileNode:(FileListNode*)node
|
|
|
|
withName:(NSString*)newName
|
|
|
|
completionHandler:(void (^)(BOOL didRename))completionHandler
|
2013-01-22 00:09:48 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
NSParameterAssert(node.torrent == self);
|
2013-01-22 00:09:48 +00:00
|
|
|
NSParameterAssert(newName != nil);
|
2021-08-15 09:41:48 +00:00
|
|
|
NSParameterAssert(![newName isEqualToString:@""]);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSDictionary* contextInfo = @{ @"Torrent" : self, @"Nodes" : @[ node ], @"CompletionHandler" : [completionHandler copy] };
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* oldPath = [node.path stringByAppendingPathComponent:node.name];
|
|
|
|
tr_torrentRenamePath(fHandle, oldPath.UTF8String, newName.UTF8String, renameCallback, (__bridge_retained void*)(contextInfo));
|
2013-01-22 00:09:48 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (CGFloat)progress
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2010-05-31 14:07:35 +00:00
|
|
|
return fStat->percentComplete;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (CGFloat)progressDone
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
return fStat->percentDone;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (CGFloat)progressLeft
|
2009-11-07 02:22:57 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.size == 0) //magnet links
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2009-11-25 05:04:19 +00:00
|
|
|
return 0.0;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
return (CGFloat)self.sizeLeft / self.size;
|
2009-11-07 02:22:57 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (CGFloat)checkingProgress
|
2008-01-10 20:59:56 +00:00
|
|
|
{
|
|
|
|
return fStat->recheckProgress;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (CGFloat)availableDesired
|
2007-10-15 18:44:39 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
return (CGFloat)fStat->desiredAvailable / self.sizeLeft;
|
2007-09-27 20:42:20 +00:00
|
|
|
}
|
2007-09-27 12:44:25 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)isActive
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2011-08-02 12:43:26 +00:00
|
|
|
return fStat->activity != TR_STATUS_STOPPED && fStat->activity != TR_STATUS_DOWNLOAD_WAIT && fStat->activity != TR_STATUS_SEED_WAIT;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)isSeeding
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2008-10-20 17:54:56 +00:00
|
|
|
return fStat->activity == TR_STATUS_SEED;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)isChecking
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2008-10-20 17:54:56 +00:00
|
|
|
return fStat->activity == TR_STATUS_CHECK || fStat->activity == TR_STATUS_CHECK_WAIT;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)isCheckingWaiting
|
2008-03-19 18:03:02 +00:00
|
|
|
{
|
2008-10-20 17:54:56 +00:00
|
|
|
return fStat->activity == TR_STATUS_CHECK_WAIT;
|
2008-03-19 18:03:02 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)allDownloaded
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
return self.sizeLeft == 0 && !self.magnet;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)isComplete
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
return self.progress >= 1.0;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)isFinishedSeeding
|
2010-04-02 17:57:25 +00:00
|
|
|
{
|
|
|
|
return fStat->finished;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)isError
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2009-10-17 17:15:37 +00:00
|
|
|
return fStat->error == TR_STAT_LOCAL_ERROR;
|
2009-08-05 01:55:37 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)isAnyErrorOrWarning
|
2009-08-05 01:55:37 +00:00
|
|
|
{
|
|
|
|
return fStat->error != TR_STAT_OK;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)errorMessage
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
if (!self.anyErrorOrWarning)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2007-09-16 01:02:06 +00:00
|
|
|
return @"";
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* error;
|
|
|
|
if (!(error = @(fStat->errorString)) && !(error = [NSString stringWithCString:fStat->errorString encoding:NSISOLatin1StringEncoding]))
|
|
|
|
{
|
|
|
|
error = [NSString stringWithFormat:@"(%@)", NSLocalizedString(@"unreadable error", "Torrent -> error string unreadable")];
|
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-11-02 01:33:15 +00:00
|
|
|
//libtransmission uses "Set Location", Mac client uses "Move data file to..." - very hacky!
|
2021-08-15 09:41:48 +00:00
|
|
|
error = [error stringByReplacingOccurrencesOfString:@"Set Location" withString:[@"Move Data File To" stringByAppendingEllipsis]];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSArray*)peers
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2008-11-02 14:04:57 +00:00
|
|
|
int totalPeers;
|
2021-08-15 09:41:48 +00:00
|
|
|
tr_peer_stat* peers = tr_torrentPeers(fHandle, &totalPeers);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSMutableArray* peerDicts = [NSMutableArray arrayWithCapacity:totalPeers];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-11-02 14:04:57 +00:00
|
|
|
for (int i = 0; i < totalPeers; i++)
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
tr_peer_stat* peer = &peers[i];
|
|
|
|
NSMutableDictionary* dict = [NSMutableDictionary dictionaryWithCapacity:12];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
dict[@"Name"] = self.name;
|
2017-07-08 14:38:47 +00:00
|
|
|
dict[@"From"] = @(peer->from);
|
|
|
|
dict[@"IP"] = @(peer->addr);
|
|
|
|
dict[@"Port"] = @(peer->port);
|
|
|
|
dict[@"Progress"] = @(peer->progress);
|
|
|
|
dict[@"Seed"] = @(peer->isSeed);
|
|
|
|
dict[@"Encryption"] = @(peer->isEncrypted);
|
|
|
|
dict[@"uTP"] = @(peer->isUTP);
|
|
|
|
dict[@"Client"] = @(peer->client);
|
|
|
|
dict[@"Flags"] = @(peer->flagStr);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-01-10 00:52:02 +00:00
|
|
|
if (peer->isUploadingTo)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2017-07-08 14:38:47 +00:00
|
|
|
dict[@"UL To Rate"] = @(peer->rateToPeer_KBps);
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2008-01-10 00:52:02 +00:00
|
|
|
if (peer->isDownloadingFrom)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2017-07-08 14:38:47 +00:00
|
|
|
dict[@"DL From Rate"] = @(peer->rateToClient_KBps);
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[peerDicts addObject:dict];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
tr_torrentPeersFree(peers, totalPeers);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-03-18 21:59:17 +00:00
|
|
|
return peerDicts;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSUInteger)webSeedCount
|
2008-06-08 16:38:15 +00:00
|
|
|
{
|
2021-12-07 18:11:28 +00:00
|
|
|
return tr_torrentWebseedCount(fHandle);
|
2008-06-08 16:38:15 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSArray*)webSeeds
|
2008-06-07 23:38:05 +00:00
|
|
|
{
|
2021-12-07 18:11:28 +00:00
|
|
|
NSUInteger n = tr_torrentWebseedCount(fHandle);
|
|
|
|
NSMutableArray* webSeeds = [NSMutableArray arrayWithCapacity:n];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-07 18:11:28 +00:00
|
|
|
for (NSUInteger i = 0; i < n; ++i)
|
2008-06-08 15:54:34 +00:00
|
|
|
{
|
2021-12-07 18:11:28 +00:00
|
|
|
auto const webseed = tr_torrentWebseed(fHandle, i);
|
2021-08-15 09:41:48 +00:00
|
|
|
NSMutableDictionary* dict = [NSMutableDictionary dictionaryWithCapacity:3];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
dict[@"Name"] = self.name;
|
2021-12-07 18:11:28 +00:00
|
|
|
dict[@"Address"] = @(webseed.url);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-07 18:11:28 +00:00
|
|
|
if (webseed.is_downloading)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-12-07 18:11:28 +00:00
|
|
|
dict[@"DL From Rate"] = @(double(webseed.download_bytes_per_second) / 1000);
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[webSeeds addObject:dict];
|
2008-06-08 15:54:34 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-06-08 18:02:16 +00:00
|
|
|
return webSeeds;
|
2008-06-07 23:38:05 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)progressString
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.magnet)
|
2009-11-27 03:20:19 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* progressString = fStat->metadataPercentComplete > 0.0 ?
|
|
|
|
[NSString stringWithFormat:NSLocalizedString(@"%@ of torrent metadata retrieved", "Torrent -> progress string"),
|
|
|
|
[NSString percentString:fStat->metadataPercentComplete longDecimals:YES]] :
|
|
|
|
NSLocalizedString(@"torrent metadata needed", "Torrent -> progress string");
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
return [NSString stringWithFormat:@"%@ - %@", NSLocalizedString(@"Magnetized transfer", "Torrent -> progress string"), progressString];
|
2009-11-27 03:20:19 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* string;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
if (!self.allDownloaded)
|
2007-09-27 20:42:20 +00:00
|
|
|
{
|
2008-11-02 01:07:01 +00:00
|
|
|
CGFloat progress;
|
2021-08-15 09:41:48 +00:00
|
|
|
if (self.folder && [fDefaults boolForKey:@"DisplayStatusProgressSelected"])
|
2008-04-08 03:32:07 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
string = [NSString stringForFilePartialSize:self.haveTotal fullSize:self.totalSizeSelected];
|
2021-08-07 07:27:56 +00:00
|
|
|
progress = self.progressDone;
|
2008-04-08 03:32:07 +00:00
|
|
|
}
|
2007-09-27 20:42:20 +00:00
|
|
|
else
|
2008-04-08 03:32:07 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
string = [NSString stringForFilePartialSize:self.haveTotal fullSize:self.size];
|
2021-08-07 07:27:56 +00:00
|
|
|
progress = self.progress;
|
2008-04-08 03:32:07 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
string = [string stringByAppendingFormat:@" (%@)", [NSString percentString:progress longDecimals:YES]];
|
2007-09-27 20:42:20 +00:00
|
|
|
}
|
2008-03-31 19:36:11 +00:00
|
|
|
else
|
2007-09-27 20:42:20 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* downloadString;
|
2021-08-07 07:27:56 +00:00
|
|
|
if (!self.complete) //only multifile possible
|
2008-03-31 19:36:11 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
if ([fDefaults boolForKey:@"DisplayStatusProgressSelected"])
|
|
|
|
{
|
|
|
|
downloadString = [NSString stringWithFormat:NSLocalizedString(@"%@ selected", "Torrent -> progress string"),
|
|
|
|
[NSString stringForFileSize:self.haveTotal]];
|
|
|
|
}
|
2008-03-31 19:36:11 +00:00
|
|
|
else
|
2010-09-18 19:49:34 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
downloadString = [NSString stringForFilePartialSize:self.haveTotal fullSize:self.size];
|
|
|
|
downloadString = [downloadString stringByAppendingFormat:@" (%@)", [NSString percentString:self.progress longDecimals:YES]];
|
2010-09-18 19:49:34 +00:00
|
|
|
}
|
2008-03-31 19:36:11 +00:00
|
|
|
}
|
2007-09-27 20:42:20 +00:00
|
|
|
else
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
downloadString = [NSString stringForFileSize:self.size];
|
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* uploadString = [NSString stringWithFormat:NSLocalizedString(@"uploaded %@ (Ratio: %@)", "Torrent -> progress string"),
|
|
|
|
[NSString stringForFileSize:self.uploadedTotal],
|
|
|
|
[NSString stringForRatio:self.ratio]];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
string = [downloadString stringByAppendingFormat:@", %@", uploadString];
|
2007-09-27 20:42:20 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2010-07-16 03:12:57 +00:00
|
|
|
//add time when downloading or seed limit set
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.shouldShowEta)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
string = [string stringByAppendingFormat:@" - %@", self.etaString];
|
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-27 20:42:20 +00:00
|
|
|
return string;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)statusString
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* string;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.anyErrorOrWarning)
|
2007-09-27 20:42:20 +00:00
|
|
|
{
|
2009-08-05 01:55:37 +00:00
|
|
|
switch (fStat->error)
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_STAT_LOCAL_ERROR:
|
|
|
|
string = NSLocalizedString(@"Error", "Torrent -> status string");
|
|
|
|
break;
|
|
|
|
case TR_STAT_TRACKER_ERROR:
|
|
|
|
string = NSLocalizedString(@"Tracker returned error", "Torrent -> status string");
|
|
|
|
break;
|
|
|
|
case TR_STAT_TRACKER_WARNING:
|
|
|
|
string = NSLocalizedString(@"Tracker returned warning", "Torrent -> status string");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
NSAssert(NO, @"unknown error state");
|
2009-08-05 01:55:37 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* errorString = self.errorMessage;
|
|
|
|
if (errorString && ![errorString isEqualToString:@""])
|
|
|
|
{
|
|
|
|
string = [string stringByAppendingFormat:@": %@", errorString];
|
|
|
|
}
|
2007-09-27 20:42:20 +00:00
|
|
|
}
|
2007-09-27 21:12:56 +00:00
|
|
|
else
|
|
|
|
{
|
2008-10-20 17:54:56 +00:00
|
|
|
switch (fStat->activity)
|
2007-09-27 21:12:56 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_STATUS_STOPPED:
|
|
|
|
if (self.finishedSeeding)
|
|
|
|
{
|
|
|
|
string = NSLocalizedString(@"Seeding complete", "Torrent -> status string");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
string = NSLocalizedString(@"Paused", "Torrent -> status string");
|
|
|
|
}
|
|
|
|
break;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_STATUS_DOWNLOAD_WAIT:
|
|
|
|
string = [NSLocalizedString(@"Waiting to download", "Torrent -> status string") stringByAppendingEllipsis];
|
|
|
|
break;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_STATUS_SEED_WAIT:
|
|
|
|
string = [NSLocalizedString(@"Waiting to seed", "Torrent -> status string") stringByAppendingEllipsis];
|
|
|
|
break;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_STATUS_CHECK_WAIT:
|
|
|
|
string = [NSLocalizedString(@"Waiting to check existing data", "Torrent -> status string") stringByAppendingEllipsis];
|
|
|
|
break;
|
2007-09-27 21:12:56 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_STATUS_CHECK:
|
|
|
|
string = [NSString stringWithFormat:@"%@ (%@)",
|
|
|
|
NSLocalizedString(@"Checking existing data", "Torrent -> status string"),
|
|
|
|
[NSString percentString:self.checkingProgress longDecimals:YES]];
|
|
|
|
break;
|
2007-09-27 21:12:56 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_STATUS_DOWNLOAD:
|
|
|
|
if (self.totalPeersConnected != 1)
|
|
|
|
{
|
|
|
|
string = [NSString stringWithFormat:NSLocalizedString(@"Downloading from %d of %d peers", "Torrent -> status string"),
|
|
|
|
self.peersSendingToUs,
|
|
|
|
self.totalPeersConnected];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
string = [NSString stringWithFormat:NSLocalizedString(@"Downloading from %d of 1 peer", "Torrent -> status string"),
|
|
|
|
self.peersSendingToUs];
|
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-09-24 12:56:57 +00:00
|
|
|
if (NSInteger const webSeedCount = fStat->webseedsSendingToUs; webSeedCount > 0)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
NSString* webSeedString;
|
|
|
|
if (webSeedCount == 1)
|
2008-06-10 01:49:09 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
webSeedString = NSLocalizedString(@"web seed", "Torrent -> status string");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
webSeedString = [NSString stringWithFormat:NSLocalizedString(@"%d web seeds", "Torrent -> status string"), webSeedCount];
|
2008-06-10 02:40:40 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
string = [string stringByAppendingFormat:@" + %@", webSeedString];
|
|
|
|
}
|
2007-09-27 21:12:56 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_SEED:
|
|
|
|
if (self.totalPeersConnected != 1)
|
|
|
|
{
|
|
|
|
string = [NSString stringWithFormat:NSLocalizedString(@"Seeding to %d of %d peers", "Torrent -> status string"),
|
|
|
|
self.peersGettingFromUs,
|
|
|
|
self.totalPeersConnected];
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
string = [NSString stringWithFormat:NSLocalizedString(@"Seeding to %d of 1 peer", "Torrent -> status string"),
|
2021-08-07 07:27:56 +00:00
|
|
|
self.peersGettingFromUs];
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2007-09-27 21:12:56 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.stalled)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
string = [NSLocalizedString(@"Stalled", "Torrent -> status string") stringByAppendingFormat:@", %@", string];
|
|
|
|
}
|
2007-10-01 11:34:01 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-10-01 11:34:01 +00:00
|
|
|
//append even if error
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.active && !self.checking)
|
2007-10-01 11:34:01 +00:00
|
|
|
{
|
2008-10-20 17:54:56 +00:00
|
|
|
if (fStat->activity == TR_STATUS_DOWNLOAD)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
string = [string stringByAppendingFormat:@" - %@: %@, %@: %@",
|
|
|
|
NSLocalizedString(@"DL", "Torrent -> status string"),
|
|
|
|
[NSString stringForSpeed:self.downloadRate],
|
|
|
|
NSLocalizedString(@"UL", "Torrent -> status string"),
|
|
|
|
[NSString stringForSpeed:self.uploadRate]];
|
|
|
|
}
|
2007-10-01 11:34:01 +00:00
|
|
|
else
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
string = [string stringByAppendingFormat:@" - %@: %@",
|
|
|
|
NSLocalizedString(@"UL", "Torrent -> status string"),
|
|
|
|
[NSString stringForSpeed:self.uploadRate]];
|
|
|
|
}
|
2007-09-27 21:12:56 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-27 20:42:20 +00:00
|
|
|
return string;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)shortStatusString
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* string;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-10-20 17:54:56 +00:00
|
|
|
switch (fStat->activity)
|
2007-09-27 20:42:20 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_STATUS_STOPPED:
|
|
|
|
if (self.finishedSeeding)
|
|
|
|
{
|
|
|
|
string = NSLocalizedString(@"Seeding complete", "Torrent -> status string");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
string = NSLocalizedString(@"Paused", "Torrent -> status string");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_DOWNLOAD_WAIT:
|
|
|
|
string = [NSLocalizedString(@"Waiting to download", "Torrent -> status string") stringByAppendingEllipsis];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_SEED_WAIT:
|
|
|
|
string = [NSLocalizedString(@"Waiting to seed", "Torrent -> status string") stringByAppendingEllipsis];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_CHECK_WAIT:
|
|
|
|
string = [NSLocalizedString(@"Waiting to check existing data", "Torrent -> status string") stringByAppendingEllipsis];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_CHECK:
|
|
|
|
string = [NSString stringWithFormat:@"%@ (%@)",
|
|
|
|
NSLocalizedString(@"Checking existing data", "Torrent -> status string"),
|
|
|
|
[NSString percentString:self.checkingProgress longDecimals:YES]];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_DOWNLOAD:
|
|
|
|
string = [NSString stringWithFormat:@"%@: %@, %@: %@",
|
|
|
|
NSLocalizedString(@"DL", "Torrent -> status string"),
|
|
|
|
[NSString stringForSpeed:self.downloadRate],
|
|
|
|
NSLocalizedString(@"UL", "Torrent -> status string"),
|
|
|
|
[NSString stringForSpeed:self.uploadRate]];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TR_STATUS_SEED:
|
|
|
|
string = [NSString stringWithFormat:@"%@: %@, %@: %@",
|
|
|
|
NSLocalizedString(@"Ratio", "Torrent -> status string"),
|
|
|
|
[NSString stringForRatio:self.ratio],
|
|
|
|
NSLocalizedString(@"UL", "Torrent -> status string"),
|
|
|
|
[NSString stringForSpeed:self.uploadRate]];
|
2007-09-27 20:42:20 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-27 20:42:20 +00:00
|
|
|
return string;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)remainingTimeString
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.shouldShowEta)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
return self.etaString;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2009-02-14 21:15:57 +00:00
|
|
|
else
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
return self.shortStatusString;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)stateString
|
2007-09-28 02:58:25 +00:00
|
|
|
{
|
2008-10-20 17:54:56 +00:00
|
|
|
switch (fStat->activity)
|
2007-09-28 02:58:25 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_STATUS_STOPPED:
|
|
|
|
case TR_STATUS_DOWNLOAD_WAIT:
|
|
|
|
case TR_STATUS_SEED_WAIT:
|
2010-04-06 02:53:07 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* string = NSLocalizedString(@"Paused", "Torrent -> status string");
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* extra = nil;
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.waitingToStart)
|
2010-04-06 02:53:07 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
extra = fStat->activity == TR_STATUS_DOWNLOAD_WAIT ?
|
|
|
|
NSLocalizedString(@"Waiting to download", "Torrent -> status string") :
|
|
|
|
NSLocalizedString(@"Waiting to seed", "Torrent -> status string");
|
2010-04-06 02:53:07 +00:00
|
|
|
}
|
2021-08-07 07:27:56 +00:00
|
|
|
else if (self.finishedSeeding)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2010-04-06 02:53:07 +00:00
|
|
|
extra = NSLocalizedString(@"Seeding complete", "Torrent -> status string");
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
return extra ? [string stringByAppendingFormat:@" (%@)", extra] : string;
|
2010-04-06 02:53:07 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_STATUS_CHECK_WAIT:
|
|
|
|
return [NSLocalizedString(@"Waiting to check existing data", "Torrent -> status string") stringByAppendingEllipsis];
|
2007-09-28 02:58:25 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_STATUS_CHECK:
|
|
|
|
return [NSString stringWithFormat:@"%@ (%@)",
|
|
|
|
NSLocalizedString(@"Checking existing data", "Torrent -> status string"),
|
|
|
|
[NSString percentString:self.checkingProgress longDecimals:YES]];
|
2007-09-28 02:58:25 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_STATUS_DOWNLOAD:
|
|
|
|
return NSLocalizedString(@"Downloading", "Torrent -> status string");
|
2007-09-28 02:58:25 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_STATUS_SEED:
|
|
|
|
return NSLocalizedString(@"Seeding", "Torrent -> status string");
|
2007-09-28 02:58:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)totalPeersConnected
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
return fStat->peersConnected;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)totalPeersTracker
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
return fStat->peersFrom[TR_PEER_FROM_TRACKER];
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)totalPeersIncoming
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
return fStat->peersFrom[TR_PEER_FROM_INCOMING];
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)totalPeersCache
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2009-11-26 05:40:27 +00:00
|
|
|
return fStat->peersFrom[TR_PEER_FROM_RESUME];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)totalPeersPex
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
return fStat->peersFrom[TR_PEER_FROM_PEX];
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)totalPeersDHT
|
2009-05-19 22:51:37 +00:00
|
|
|
{
|
|
|
|
return fStat->peersFrom[TR_PEER_FROM_DHT];
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)totalPeersLocal
|
2010-05-01 16:19:40 +00:00
|
|
|
{
|
2010-05-08 08:54:45 +00:00
|
|
|
return fStat->peersFrom[TR_PEER_FROM_LPD];
|
2010-05-01 16:19:40 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)totalPeersLTEP
|
2009-11-26 06:15:29 +00:00
|
|
|
{
|
|
|
|
return fStat->peersFrom[TR_PEER_FROM_LTEP];
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)peersSendingToUs
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
return fStat->peersSendingToUs;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)peersGettingFromUs
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
return fStat->peersGettingFromUs;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (CGFloat)downloadRate
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2010-07-06 03:31:17 +00:00
|
|
|
return fStat->pieceDownloadSpeed_KBps;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (CGFloat)uploadRate
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2010-07-06 03:31:17 +00:00
|
|
|
return fStat->pieceUploadSpeed_KBps;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (CGFloat)totalRate
|
2007-11-23 16:03:49 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
return self.downloadRate + self.uploadRate;
|
2007-11-23 16:03:49 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (uint64_t)haveVerified
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2007-09-26 03:27:00 +00:00
|
|
|
return fStat->haveValid;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (uint64_t)haveTotal
|
2007-09-26 03:27:00 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
return self.haveVerified + fStat->haveUnchecked;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (uint64_t)totalSizeSelected
|
2008-02-27 19:34:55 +00:00
|
|
|
{
|
2008-04-21 00:12:05 +00:00
|
|
|
return fStat->sizeWhenDone;
|
2008-02-27 19:34:55 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (uint64_t)downloadedTotal
|
2007-09-26 18:32:32 +00:00
|
|
|
{
|
2007-09-26 18:53:11 +00:00
|
|
|
return fStat->downloadedEver;
|
2007-09-26 18:32:32 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (uint64_t)uploadedTotal
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2007-09-26 18:53:11 +00:00
|
|
|
return fStat->uploadedEver;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (uint64_t)failedHash
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2007-09-26 18:32:32 +00:00
|
|
|
return fStat->corruptEver;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)groupValue
|
2007-12-17 16:06:20 +00:00
|
|
|
{
|
|
|
|
return fGroupValue;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setGroupValue:(NSInteger)groupValue determinationType:(TorrentDeterminationType)determinationType
|
2007-12-17 16:06:20 +00:00
|
|
|
{
|
2012-10-30 00:22:10 +00:00
|
|
|
if (groupValue != fGroupValue)
|
|
|
|
{
|
|
|
|
fGroupValue = groupValue;
|
2021-08-15 09:41:48 +00:00
|
|
|
[NSNotificationCenter.defaultCenter postNotificationName:kTorrentDidChangeGroupNotification object:self];
|
2017-01-24 17:53:16 +00:00
|
|
|
}
|
2012-10-30 00:22:10 +00:00
|
|
|
fGroupValueDetermination = determinationType;
|
2007-12-17 16:06:20 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)groupOrderValue
|
2007-12-17 20:10:51 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
return [GroupsController.groups rowValueForIndex:fGroupValue];
|
2007-12-17 20:10:51 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)checkGroupValueForRemoval:(NSNotification*)notification
|
2007-12-17 16:06:20 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
if (fGroupValue != -1 && [notification.userInfo[@"Index"] integerValue] == fGroupValue)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2007-12-17 16:06:20 +00:00
|
|
|
fGroupValue = -1;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2007-12-17 16:06:20 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSArray*)fileList
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
return fFileList;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSArray*)flatFileList
|
2010-01-02 02:50:22 +00:00
|
|
|
{
|
|
|
|
return fFlatFileList;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)fileCount
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-12-08 16:55:52 +00:00
|
|
|
return tr_torrentFileCount(fHandle);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (CGFloat)fileProgress:(FileListNode*)node
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.fileCount == 1 || self.complete)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
return self.progress;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-10-27 20:56:10 +00:00
|
|
|
// #5501
|
2021-08-15 09:41:48 +00:00
|
|
|
if (node.size == 0)
|
|
|
|
{
|
2013-10-27 20:56:10 +00:00
|
|
|
return 1.0;
|
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-10-12 13:22:13 +00:00
|
|
|
uint64_t have = 0;
|
2021-10-21 18:31:03 +00:00
|
|
|
NSIndexSet* indexSet = node.indexes;
|
2021-08-15 09:41:48 +00:00
|
|
|
for (NSInteger index = indexSet.firstIndex; index != NSNotFound; index = [indexSet indexGreaterThanIndex:index])
|
|
|
|
{
|
2021-11-28 03:17:47 +00:00
|
|
|
have += tr_torrentFile(fHandle, index).have;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
return (CGFloat)have / node.size;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)canChangeDownloadCheckForFile:(NSUInteger)index
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
NSAssert2((NSInteger)index < self.fileCount, @"Index %ld is greater than file count %ld", index, self.fileCount);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
return [self canChangeDownloadCheckForFiles:[NSIndexSet indexSetWithIndex:index]];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)canChangeDownloadCheckForFiles:(NSIndexSet*)indexSet
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.fileCount == 1 || self.complete)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2007-09-16 01:02:06 +00:00
|
|
|
return NO;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-01-31 04:22:51 +00:00
|
|
|
__block BOOL canChange = NO;
|
2021-08-15 09:41:48 +00:00
|
|
|
[indexSet enumerateIndexesWithOptions:NSEnumerationConcurrent usingBlock:^(NSUInteger index, BOOL* stop) {
|
2021-11-28 03:17:47 +00:00
|
|
|
auto const file = tr_torrentFile(fHandle, index);
|
|
|
|
if (file.have < file.length)
|
2012-01-31 04:22:51 +00:00
|
|
|
{
|
|
|
|
canChange = YES;
|
|
|
|
*stop = YES;
|
|
|
|
}
|
|
|
|
}];
|
|
|
|
return canChange;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)checkForFiles:(NSIndexSet*)indexSet
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
BOOL onState = NO, offState = NO;
|
2021-08-15 09:41:48 +00:00
|
|
|
for (NSUInteger index = indexSet.firstIndex; index != NSNotFound; index = [indexSet indexGreaterThanIndex:index])
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-11-28 03:17:47 +00:00
|
|
|
auto const file = tr_torrentFile(fHandle, index);
|
|
|
|
if (file.wanted || ![self canChangeDownloadCheckForFile:index])
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2007-09-16 01:02:06 +00:00
|
|
|
onState = YES;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
else
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2007-09-16 01:02:06 +00:00
|
|
|
offState = YES;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
if (onState && offState)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-10-31 15:18:27 +00:00
|
|
|
return NSControlStateValueMixed;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
2021-10-31 15:18:27 +00:00
|
|
|
return onState ? NSControlStateValueOn : NSControlStateValueOff;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setFileCheckState:(NSInteger)state forIndexes:(NSIndexSet*)indexSet
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
NSUInteger count = indexSet.count;
|
2021-09-24 12:56:57 +00:00
|
|
|
tr_file_index_t* files = static_cast<tr_file_index_t*>(malloc(count * sizeof(tr_file_index_t)));
|
2021-08-15 09:41:48 +00:00
|
|
|
for (NSUInteger index = indexSet.firstIndex, i = 0; index != NSNotFound; index = [indexSet indexGreaterThanIndex:index], i++)
|
|
|
|
{
|
2007-09-16 01:02:06 +00:00
|
|
|
files[i] = index;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-10-31 15:18:27 +00:00
|
|
|
tr_torrentSetFileDLs(fHandle, files, count, state != NSControlStateValueOff);
|
2007-09-16 01:02:06 +00:00
|
|
|
free(files);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
[self update];
|
2021-08-15 09:41:48 +00:00
|
|
|
[NSNotificationCenter.defaultCenter postNotificationName:@"TorrentFileCheckChange" object:self];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setFilePriority:(tr_priority_t)priority forIndexes:(NSIndexSet*)indexSet
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSUInteger const count = indexSet.count;
|
2021-09-24 12:56:57 +00:00
|
|
|
tr_file_index_t* files = static_cast<tr_file_index_t*>(tr_malloc(count * sizeof(tr_file_index_t)));
|
2021-08-15 09:41:48 +00:00
|
|
|
for (NSUInteger index = indexSet.firstIndex, i = 0; index != NSNotFound; index = [indexSet indexGreaterThanIndex:index], i++)
|
|
|
|
{
|
2007-09-16 01:02:06 +00:00
|
|
|
files[i] = index;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
tr_torrentSetFilePriorities(fHandle, files, count, priority);
|
2009-12-26 00:02:20 +00:00
|
|
|
tr_free(files);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)hasFilePriority:(tr_priority_t)priority forIndexes:(NSIndexSet*)indexSet
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
for (NSUInteger index = indexSet.firstIndex; index != NSNotFound; index = [indexSet indexGreaterThanIndex:index])
|
|
|
|
{
|
2021-11-28 03:17:47 +00:00
|
|
|
if (priority == tr_torrentFile(fHandle, index).priority && [self canChangeDownloadCheckForFile:index])
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2007-09-16 01:02:06 +00:00
|
|
|
return YES;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSSet*)filePrioritiesForIndexes:(NSIndexSet*)indexSet
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
BOOL low = NO, normal = NO, high = NO;
|
2021-08-15 09:41:48 +00:00
|
|
|
NSMutableSet* priorities = [NSMutableSet setWithCapacity:MIN(indexSet.count, 3u)];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
for (NSUInteger index = indexSet.firstIndex; index != NSNotFound; index = [indexSet indexGreaterThanIndex:index])
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
if (![self canChangeDownloadCheckForFile:index])
|
|
|
|
{
|
2007-09-16 01:02:06 +00:00
|
|
|
continue;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-11-28 03:17:47 +00:00
|
|
|
auto const priority = tr_torrentFile(fHandle, index).priority;
|
2010-02-12 01:32:09 +00:00
|
|
|
switch (priority)
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_PRI_LOW:
|
|
|
|
if (low)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
low = YES;
|
|
|
|
break;
|
|
|
|
case TR_PRI_NORMAL:
|
|
|
|
if (normal)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
normal = YES;
|
|
|
|
break;
|
|
|
|
case TR_PRI_HIGH:
|
|
|
|
if (high)
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
high = YES;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
NSAssert2(NO, @"Unknown priority %d for file index %ld", priority, index);
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[priorities addObject:@(priority)];
|
2007-09-16 01:02:06 +00:00
|
|
|
if (low && normal && high)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2007-09-16 01:02:06 +00:00
|
|
|
break;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
return priorities;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSDate*)dateAdded
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
time_t const date = fStat->addedDate;
|
|
|
|
return [NSDate dateWithTimeIntervalSince1970:date];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSDate*)dateCompleted
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
time_t const date = fStat->doneDate;
|
|
|
|
return date != 0 ? [NSDate dateWithTimeIntervalSince1970:date] : nil;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSDate*)dateActivity
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
time_t const date = fStat->activityDate;
|
|
|
|
return date != 0 ? [NSDate dateWithTimeIntervalSince1970:date] : nil;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSDate*)dateActivityOrAdd
|
2007-11-23 02:46:29 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSDate* date = self.dateActivity;
|
2021-08-07 07:27:56 +00:00
|
|
|
return date ? date : self.dateAdded;
|
2007-11-23 02:46:29 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)secondsDownloading
|
2010-12-23 20:07:41 +00:00
|
|
|
{
|
|
|
|
return fStat->secondsDownloading;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)secondsSeeding
|
2010-12-23 20:07:41 +00:00
|
|
|
{
|
|
|
|
return fStat->secondsSeeding;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)stalledMinutes
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2010-07-11 21:06:28 +00:00
|
|
|
if (fStat->idleSecs == -1)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2010-07-11 21:06:28 +00:00
|
|
|
return -1;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2010-07-11 21:02:30 +00:00
|
|
|
return fStat->idleSecs / 60;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)isStalled
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2011-08-02 12:43:26 +00:00
|
|
|
return fStat->isStalled;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)updateTimeMachineExclude
|
2009-10-21 22:20:43 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
[self setTimeMachineExclude:!self.allDownloaded];
|
2009-10-21 22:20:43 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSInteger)stateSortKey
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
if (!self.active) //paused
|
2009-10-15 23:18:39 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.waitingToStart)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2009-10-15 23:18:39 +00:00
|
|
|
return 1;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2009-10-15 23:18:39 +00:00
|
|
|
else
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2009-10-15 23:18:39 +00:00
|
|
|
return 0;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2009-10-15 23:18:39 +00:00
|
|
|
}
|
2021-08-07 07:27:56 +00:00
|
|
|
else if (self.seeding) //seeding
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2009-10-15 23:18:39 +00:00
|
|
|
return 10;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2008-06-30 02:22:29 +00:00
|
|
|
else //downloading
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2009-10-15 23:18:39 +00:00
|
|
|
return 20;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)trackerSortKey
|
2009-10-11 13:42:10 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* best = nil;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-08 16:55:52 +00:00
|
|
|
for (size_t i = 0, n = tr_torrentTrackerCount(fHandle); i < n; ++i)
|
2009-10-11 13:42:10 +00:00
|
|
|
{
|
2021-12-08 16:55:52 +00:00
|
|
|
auto const tracker = tr_torrentTracker(fHandle, i);
|
|
|
|
|
|
|
|
NSString* host = @(tracker.host);
|
|
|
|
if (!best || [host localizedCaseInsensitiveCompare:best] == NSOrderedAscending)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-12-08 16:55:52 +00:00
|
|
|
best = host;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2009-10-11 13:42:10 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2009-10-11 13:42:10 +00:00
|
|
|
return best;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (tr_torrent*)torrentStruct
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2008-04-07 13:14:31 +00:00
|
|
|
return fHandle;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSURL*)previewItemURL
|
2009-09-04 04:10:46 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* location = self.dataLocation;
|
|
|
|
return location ? [NSURL fileURLWithPath:location] : nil;
|
2009-09-04 04:10:46 +00:00
|
|
|
}
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@implementation Torrent (Private)
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (instancetype)initWithPath:(NSString*)path
|
|
|
|
hash:(NSString*)hashString
|
|
|
|
torrentStruct:(tr_torrent*)torrentStruct
|
|
|
|
magnetAddress:(NSString*)magnetAddress
|
|
|
|
lib:(tr_session*)lib
|
|
|
|
groupValue:(NSNumber*)groupValue
|
|
|
|
removeWhenFinishSeeding:(NSNumber*)removeWhenFinishSeeding
|
|
|
|
downloadFolder:(NSString*)downloadFolder
|
|
|
|
legacyIncompleteFolder:(NSString*)incompleteFolder
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
|
|
|
if (!(self = [super init]))
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2007-09-16 01:02:06 +00:00
|
|
|
return nil;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
fDefaults = NSUserDefaults.standardUserDefaults;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-05-26 23:23:07 +00:00
|
|
|
if (torrentStruct)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2008-05-26 23:23:07 +00:00
|
|
|
fHandle = torrentStruct;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2008-05-26 23:23:07 +00:00
|
|
|
else
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2008-05-26 23:23:07 +00:00
|
|
|
//set libtransmission settings for initialization
|
2021-08-15 09:41:48 +00:00
|
|
|
tr_ctor* ctor = tr_ctorNew(lib);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-05-26 23:23:07 +00:00
|
|
|
tr_ctorSetPaused(ctor, TR_FORCE, YES);
|
2009-12-13 01:36:22 +00:00
|
|
|
if (downloadFolder)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
tr_ctorSetDownloadDir(ctor, TR_FORCE, downloadFolder.UTF8String);
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2009-12-13 01:36:22 +00:00
|
|
|
if (incompleteFolder)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
tr_ctorSetIncompleteDir(ctor, incompleteFolder.UTF8String);
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-26 16:25:07 +00:00
|
|
|
bool loaded = false;
|
|
|
|
|
2009-05-22 02:08:51 +00:00
|
|
|
if (path)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-12-26 16:25:07 +00:00
|
|
|
loaded = tr_ctorSetMetainfoFromFile(ctor, path.UTF8String, nullptr);
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-26 16:25:07 +00:00
|
|
|
if (!loaded && magnetAddress)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-12-26 16:25:07 +00:00
|
|
|
loaded = tr_ctorSetMetainfoFromMagnetLink(ctor, magnetAddress.UTF8String, nullptr);
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-12-26 16:25:07 +00:00
|
|
|
if (loaded)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2021-12-24 22:05:17 +00:00
|
|
|
fHandle = tr_torrentNew(ctor, NULL);
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-05-26 23:23:07 +00:00
|
|
|
tr_ctorFree(ctor);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-05-26 23:23:07 +00:00
|
|
|
if (!fHandle)
|
|
|
|
{
|
|
|
|
return nil;
|
2008-01-21 06:23:10 +00:00
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
2009-11-25 04:11:52 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
tr_torrentSetQueueStartCallback(fHandle, startQueueCallback, (__bridge void*)(self));
|
|
|
|
tr_torrentSetCompletenessCallback(fHandle, completenessChangeCallback, (__bridge void*)(self));
|
|
|
|
tr_torrentSetRatioLimitHitCallback(fHandle, ratioLimitHitCallback, (__bridge void*)(self));
|
|
|
|
tr_torrentSetIdleLimitHitCallback(fHandle, idleLimitHitCallback, (__bridge void*)(self));
|
|
|
|
tr_torrentSetMetadataCallback(fHandle, metadataCallback, (__bridge void*)(self));
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-04-25 22:23:31 +00:00
|
|
|
fResumeOnWake = NO;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2010-01-23 00:30:04 +00:00
|
|
|
//don't do after this point - it messes with auto-group functionality
|
2021-08-07 07:27:56 +00:00
|
|
|
if (!self.magnet)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2010-01-23 00:30:04 +00:00
|
|
|
[self createFileList];
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-10-30 00:22:10 +00:00
|
|
|
fDownloadFolderDetermination = TorrentDeterminationAutomatic;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-10-30 00:22:10 +00:00
|
|
|
if (groupValue)
|
|
|
|
{
|
|
|
|
fGroupValueDetermination = TorrentDeterminationUserSpecified;
|
2021-08-07 07:27:56 +00:00
|
|
|
fGroupValue = groupValue.intValue;
|
2012-10-30 00:22:10 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
fGroupValueDetermination = TorrentDeterminationAutomatic;
|
2021-08-15 09:41:48 +00:00
|
|
|
fGroupValue = [GroupsController.groups groupIndexForTorrent:self];
|
2012-10-30 00:22:10 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
_removeWhenFinishSeeding = removeWhenFinishSeeding ? removeWhenFinishSeeding.boolValue :
|
|
|
|
[fDefaults boolForKey:@"RemoveWhenFinishSeeding"];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[NSNotificationCenter.defaultCenter addObserver:self selector:@selector(checkGroupValueForRemoval:)
|
|
|
|
name:@"GroupValueRemoved"
|
|
|
|
object:nil];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-08-06 03:59:07 +00:00
|
|
|
fTimeMachineExcludeInitialized = NO;
|
2007-09-16 01:02:06 +00:00
|
|
|
[self update];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)createFileList
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
NSAssert(!self.magnet, @"Cannot create a file list until the torrent is demagnetized");
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
if (self.folder)
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSInteger const count = self.fileCount;
|
|
|
|
NSMutableArray* flatFileList = [NSMutableArray arrayWithCapacity:count];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
FileListNode* tempNode = nil;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-11-02 01:07:01 +00:00
|
|
|
for (NSInteger i = 0; i < count; i++)
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-11-28 03:17:47 +00:00
|
|
|
auto const file = tr_torrentFile(fHandle, i);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-11-28 03:17:47 +00:00
|
|
|
NSString* fullPath = @(file.name);
|
2021-08-15 09:41:48 +00:00
|
|
|
NSArray* pathComponents = fullPath.pathComponents;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-02-19 02:04:42 +00:00
|
|
|
if (!tempNode)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2017-07-08 09:16:01 +00:00
|
|
|
tempNode = [[FileListNode alloc] initWithFolderName:pathComponents[0] path:@"" torrent:self];
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-09-11 13:11:46 +00:00
|
|
|
[self insertPathForComponents:pathComponents
|
|
|
|
withComponentIndex:1
|
|
|
|
forParent:tempNode
|
2021-11-28 03:17:47 +00:00
|
|
|
fileSize:file.length
|
2021-09-11 13:11:46 +00:00
|
|
|
index:i
|
2021-08-15 09:41:48 +00:00
|
|
|
flatList:flatFileList];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[self sortFileList:tempNode.children];
|
|
|
|
[self sortFileList:flatFileList];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
fFileList = [[NSArray alloc] initWithArray:tempNode.children];
|
|
|
|
fFlatFileList = [[NSArray alloc] initWithArray:flatFileList];
|
2008-05-22 18:39:49 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
FileListNode* node = [[FileListNode alloc] initWithFileName:self.name path:@"" size:self.size index:0 torrent:self];
|
|
|
|
fFileList = @[ node ];
|
2017-07-29 16:14:22 +00:00
|
|
|
fFlatFileList = fFileList;
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)insertPathForComponents:(NSArray*)components
|
|
|
|
withComponentIndex:(NSUInteger)componentIndex
|
|
|
|
forParent:(FileListNode*)parent
|
|
|
|
fileSize:(uint64_t)size
|
|
|
|
index:(NSInteger)index
|
|
|
|
flatList:(NSMutableArray*)flatFileList
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-07 07:27:56 +00:00
|
|
|
NSParameterAssert(components.count > 0);
|
|
|
|
NSParameterAssert(componentIndex < components.count);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* name = components[componentIndex];
|
|
|
|
BOOL const isFolder = componentIndex < (components.count - 1);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-01-14 16:07:58 +00:00
|
|
|
//determine if folder node already exists
|
2021-08-15 09:41:48 +00:00
|
|
|
__block FileListNode* node = nil;
|
2007-09-16 01:02:06 +00:00
|
|
|
if (isFolder)
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
[parent.children enumerateObjectsWithOptions:NSEnumerationConcurrent
|
|
|
|
usingBlock:^(FileListNode* searchNode, NSUInteger idx, BOOL* stop) {
|
|
|
|
if ([searchNode.name isEqualToString:name] && searchNode.isFolder)
|
|
|
|
{
|
|
|
|
node = searchNode;
|
|
|
|
*stop = YES;
|
|
|
|
}
|
|
|
|
}];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-05-22 18:39:49 +00:00
|
|
|
//create new folder or file if it doesn't already exist
|
|
|
|
if (!node)
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* path = [parent.path stringByAppendingPathComponent:parent.name];
|
2007-09-16 01:02:06 +00:00
|
|
|
if (isFolder)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
node = [[FileListNode alloc] initWithFolderName:name path:path torrent:self];
|
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
else
|
2008-12-07 02:36:26 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
node = [[FileListNode alloc] initWithFileName:name path:path size:size index:index torrent:self];
|
|
|
|
[flatFileList addObject:node];
|
2008-12-07 02:36:26 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[parent insertChild:node];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
if (isFolder)
|
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
[node insertIndex:index withSize:size];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[self insertPathForComponents:components withComponentIndex:(componentIndex + 1) forParent:node fileSize:size
|
|
|
|
index:index
|
|
|
|
flatList:flatFileList];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)sortFileList:(NSMutableArray*)fileNodes
|
2010-10-23 20:20:31 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSSortDescriptor* descriptor = [NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES
|
|
|
|
selector:@selector(localizedStandardCompare:)];
|
|
|
|
[fileNodes sortUsingDescriptors:@[ descriptor ]];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[fileNodes enumerateObjectsWithOptions:NSEnumerationConcurrent usingBlock:^(FileListNode* node, NSUInteger idx, BOOL* stop) {
|
2021-08-07 07:27:56 +00:00
|
|
|
if (node.isFolder)
|
2021-08-15 09:41:48 +00:00
|
|
|
[self sortFileList:node.children];
|
2012-01-09 00:57:50 +00:00
|
|
|
}];
|
2010-10-23 20:20:31 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)startQueue
|
2011-08-04 00:36:02 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
[NSNotificationCenter.defaultCenter postNotificationName:@"UpdateQueue" object:self];
|
2011-08-04 00:36:02 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)completenessChange:(tr_completeness)status wasRunning:(BOOL)wasRunning
|
2007-09-28 15:36:46 +00:00
|
|
|
{
|
2008-06-16 23:27:38 +00:00
|
|
|
fStat = tr_torrentStat(fHandle); //don't call update yet to avoid auto-stop
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-07-14 14:35:57 +00:00
|
|
|
switch (status)
|
2007-09-28 15:36:46 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_SEED:
|
|
|
|
case TR_PARTIAL_SEED:
|
2013-07-14 14:35:57 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSDictionary* statusInfo = @{@"Status" : @(status), @"WasRunning" : @(wasRunning)};
|
|
|
|
[NSNotificationCenter.defaultCenter postNotificationName:@"TorrentFinishedDownloading" object:self userInfo:statusInfo];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-01-14 17:12:04 +00:00
|
|
|
//quarantine the finished data
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* dataLocation = [self.currentDirectory stringByAppendingPathComponent:self.name];
|
|
|
|
NSURL* dataLocationUrl = [NSURL fileURLWithPath:dataLocation];
|
|
|
|
NSDictionary* quarantineProperties = @{
|
|
|
|
(NSString*)kLSQuarantineTypeKey : (NSString*)kLSQuarantineTypeOtherDownload
|
|
|
|
};
|
|
|
|
NSError* error = nil;
|
|
|
|
if (![dataLocationUrl setResourceValue:quarantineProperties forKey:NSURLQuarantinePropertiesKey error:&error])
|
|
|
|
{
|
|
|
|
NSLog(@"Failed to quarantine %@: %@", dataLocation, error.description);
|
|
|
|
}
|
2007-09-28 15:36:46 +00:00
|
|
|
break;
|
2013-07-14 14:35:57 +00:00
|
|
|
}
|
2021-08-15 09:41:48 +00:00
|
|
|
case TR_LEECH:
|
|
|
|
[NSNotificationCenter.defaultCenter postNotificationName:@"TorrentRestartedDownloading" object:self];
|
|
|
|
break;
|
2007-09-28 15:36:46 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2008-06-16 23:27:38 +00:00
|
|
|
[self update];
|
2009-10-21 13:01:14 +00:00
|
|
|
[self updateTimeMachineExclude];
|
2009-02-14 21:15:57 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)ratioLimitHit
|
2009-02-14 21:15:57 +00:00
|
|
|
{
|
|
|
|
fStat = tr_torrentStat(fHandle);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[NSNotificationCenter.defaultCenter postNotificationName:@"TorrentFinishedSeeding" object:self];
|
2009-02-14 21:15:57 +00:00
|
|
|
}
|
2007-09-28 15:36:46 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)idleLimitHit
|
2010-07-16 03:12:57 +00:00
|
|
|
{
|
|
|
|
fStat = tr_torrentStat(fHandle);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[NSNotificationCenter.defaultCenter postNotificationName:@"TorrentFinishedSeeding" object:self];
|
2010-07-16 03:12:57 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)metadataRetrieved
|
2009-11-27 03:44:00 +00:00
|
|
|
{
|
|
|
|
fStat = tr_torrentStat(fHandle);
|
2012-10-30 00:22:10 +00:00
|
|
|
|
2010-01-23 00:30:04 +00:00
|
|
|
[self createFileList];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-10-30 00:22:10 +00:00
|
|
|
/* If the torrent is in no group, or the group was automatically determined based on criteria evaluated
|
|
|
|
* before we had metadata for this torrent, redetermine the group
|
|
|
|
*/
|
2021-08-07 07:27:56 +00:00
|
|
|
if ((fGroupValueDetermination == TorrentDeterminationAutomatic) || (self.groupValue == -1))
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
[self setGroupValue:[GroupsController.groups groupIndexForTorrent:self] determinationType:TorrentDeterminationAutomatic];
|
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2012-10-30 00:22:10 +00:00
|
|
|
//change the location if the group calls for it and it's either not already set or was set automatically before
|
|
|
|
if (((fDownloadFolderDetermination == TorrentDeterminationAutomatic) || !tr_torrentGetCurrentDir(fHandle)) &&
|
2021-08-15 09:41:48 +00:00
|
|
|
[GroupsController.groups usesCustomDownloadLocationForIndex:self.groupValue])
|
2012-10-30 00:22:10 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* location = [GroupsController.groups customDownloadLocationForIndex:self.groupValue];
|
|
|
|
[self changeDownloadFolderBeforeUsing:location determinationType:TorrentDeterminationAutomatic];
|
2012-10-30 00:22:10 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
[NSNotificationCenter.defaultCenter postNotificationName:@"ResetInspector" object:self userInfo:@{ @"Torrent" : self }];
|
2009-11-27 03:44:00 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)renameFinished:(BOOL)success
|
|
|
|
nodes:(NSArray*)nodes
|
|
|
|
completionHandler:(void (^)(BOOL))completionHandler
|
|
|
|
oldPath:(NSString*)oldPath
|
|
|
|
newName:(NSString*)newName
|
2013-02-11 01:39:44 +00:00
|
|
|
{
|
|
|
|
NSParameterAssert(completionHandler != nil);
|
|
|
|
NSParameterAssert(oldPath != nil);
|
|
|
|
NSParameterAssert(newName != nil);
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* path = oldPath.stringByDeletingLastPathComponent;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-02-11 01:39:44 +00:00
|
|
|
if (success)
|
|
|
|
{
|
2021-09-24 12:56:57 +00:00
|
|
|
using WeakUpdateNodeAndChildrenForRename = void (^__block __weak)(FileListNode*);
|
|
|
|
using UpdateNodeAndChildrenForRename = void (^)(FileListNode*);
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* oldName = oldPath.lastPathComponent;
|
2021-09-24 12:56:57 +00:00
|
|
|
WeakUpdateNodeAndChildrenForRename weakUpdateNodeAndChildrenForRename;
|
|
|
|
UpdateNodeAndChildrenForRename updateNodeAndChildrenForRename;
|
2021-08-15 09:41:48 +00:00
|
|
|
weakUpdateNodeAndChildrenForRename = updateNodeAndChildrenForRename = ^(FileListNode* node) {
|
|
|
|
[node updateFromOldName:oldName toNewName:newName inPath:path];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
if (node.isFolder)
|
|
|
|
{
|
|
|
|
[node.children enumerateObjectsWithOptions:NSEnumerationConcurrent
|
|
|
|
usingBlock:^(FileListNode* childNode, NSUInteger idx, BOOL* stop) {
|
|
|
|
weakUpdateNodeAndChildrenForRename(childNode);
|
|
|
|
}];
|
2013-02-11 01:39:44 +00:00
|
|
|
}
|
|
|
|
};
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-02-11 01:39:44 +00:00
|
|
|
if (!nodes)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2013-02-11 01:39:44 +00:00
|
|
|
nodes = fFlatFileList;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
|
|
|
[nodes enumerateObjectsWithOptions:NSEnumerationConcurrent usingBlock:^(FileListNode* node, NSUInteger idx, BOOL* stop) {
|
2013-02-11 01:39:44 +00:00
|
|
|
updateNodeAndChildrenForRename(node);
|
|
|
|
}];
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-02-11 01:39:44 +00:00
|
|
|
//resort lists
|
2021-08-15 09:41:48 +00:00
|
|
|
NSMutableArray* fileList = [fFileList mutableCopy];
|
|
|
|
[self sortFileList:fileList];
|
2013-02-11 01:39:44 +00:00
|
|
|
fFileList = fileList;
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
NSMutableArray* flatFileList = [fFlatFileList mutableCopy];
|
|
|
|
[self sortFileList:flatFileList];
|
2013-02-11 01:39:44 +00:00
|
|
|
fFlatFileList = flatFileList;
|
2017-02-21 20:52:41 +00:00
|
|
|
|
|
|
|
fIcon = nil;
|
2013-02-11 01:39:44 +00:00
|
|
|
}
|
|
|
|
else
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
|
|
|
NSLog(@"Error renaming %@ to %@", oldPath, [path stringByAppendingPathComponent:newName]);
|
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2013-02-11 01:39:44 +00:00
|
|
|
completionHandler(success);
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)shouldShowEta
|
2010-08-14 17:32:52 +00:00
|
|
|
{
|
|
|
|
if (fStat->activity == TR_STATUS_DOWNLOAD)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2010-08-14 17:32:52 +00:00
|
|
|
return YES;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2021-08-07 07:27:56 +00:00
|
|
|
else if (self.seeding)
|
2010-08-14 17:32:52 +00:00
|
|
|
{
|
2010-08-14 19:44:43 +00:00
|
|
|
//ratio: show if it's set at all
|
|
|
|
if (tr_torrentGetSeedRatio(fHandle, NULL))
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2010-08-14 17:32:52 +00:00
|
|
|
return YES;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2010-08-14 19:44:43 +00:00
|
|
|
//idle: show only if remaining time is less than cap
|
2010-08-14 17:51:04 +00:00
|
|
|
if (fStat->etaIdle != TR_ETA_NOT_AVAIL && fStat->etaIdle < ETA_IDLE_DISPLAY_SEC)
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2010-08-14 17:51:04 +00:00
|
|
|
return YES;
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2010-08-14 17:32:52 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2010-08-14 17:32:52 +00:00
|
|
|
return NO;
|
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (NSString*)etaString
|
2008-04-07 02:55:33 +00:00
|
|
|
{
|
2010-08-14 15:30:43 +00:00
|
|
|
NSInteger eta;
|
2010-08-14 19:44:43 +00:00
|
|
|
BOOL fromIdle;
|
|
|
|
//don't check for both, since if there's a regular ETA, the torrent isn't idle so it's meaningless
|
|
|
|
if (fStat->eta != TR_ETA_NOT_AVAIL && fStat->eta != TR_ETA_UNKNOWN)
|
|
|
|
{
|
2010-08-14 15:30:43 +00:00
|
|
|
eta = fStat->eta;
|
2010-08-14 19:44:43 +00:00
|
|
|
fromIdle = NO;
|
|
|
|
}
|
|
|
|
else if (fStat->etaIdle != TR_ETA_NOT_AVAIL && fStat->etaIdle < ETA_IDLE_DISPLAY_SEC)
|
|
|
|
{
|
2010-08-14 15:30:43 +00:00
|
|
|
eta = fStat->etaIdle;
|
2010-08-14 19:44:43 +00:00
|
|
|
fromIdle = YES;
|
|
|
|
}
|
2010-08-14 15:30:43 +00:00
|
|
|
else
|
2021-08-15 09:41:48 +00:00
|
|
|
{
|
2010-08-14 15:30:43 +00:00
|
|
|
return NSLocalizedString(@"remaining time unknown", "Torrent -> eta string");
|
2021-08-15 09:41:48 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
static NSDateComponentsFormatter* formatter;
|
2020-12-23 03:00:06 +00:00
|
|
|
static dispatch_once_t onceToken;
|
|
|
|
dispatch_once(&onceToken, ^{
|
|
|
|
formatter = [NSDateComponentsFormatter new];
|
|
|
|
formatter.unitsStyle = NSDateComponentsFormatterUnitsStyleShort;
|
|
|
|
formatter.maximumUnitCount = 2;
|
|
|
|
formatter.collapsesLargestUnit = YES;
|
|
|
|
formatter.includesTimeRemainingPhrase = YES;
|
|
|
|
});
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* idleString = [formatter stringFromTimeInterval:eta];
|
|
|
|
|
|
|
|
if (fromIdle)
|
|
|
|
{
|
|
|
|
idleString = [idleString stringByAppendingFormat:@" (%@)", NSLocalizedString(@"inactive", "Torrent -> eta string")];
|
2014-10-17 05:12:00 +00:00
|
|
|
}
|
2017-01-24 17:53:16 +00:00
|
|
|
|
2010-08-14 19:44:43 +00:00
|
|
|
return idleString;
|
2008-04-07 02:55:33 +00:00
|
|
|
}
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)setTimeMachineExclude:(BOOL)exclude
|
2008-01-09 16:26:58 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
NSString* path;
|
2021-08-07 07:27:56 +00:00
|
|
|
if ((path = self.dataLocation))
|
2012-08-06 03:59:07 +00:00
|
|
|
{
|
2021-08-15 09:41:48 +00:00
|
|
|
CSBackupSetItemExcluded((__bridge CFURLRef)[NSURL fileURLWithPath:path], exclude, false);
|
2012-08-06 03:59:07 +00:00
|
|
|
fTimeMachineExcludeInitialized = YES;
|
|
|
|
}
|
2008-01-09 16:26:58 +00:00
|
|
|
}
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@end
|