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.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
2009-09-05 01:58:13 +00:00
|
|
|
#import <Quartz/Quartz.h>
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2018-09-30 10:37:30 +00:00
|
|
|
#include <libtransmission/transmission.h>
|
|
|
|
|
2008-10-12 13:22:13 +00:00
|
|
|
@class FileListNode;
|
|
|
|
|
2021-08-07 07:27:56 +00:00
|
|
|
typedef NS_ENUM(unsigned int, TorrentDeterminationType) {
|
2017-01-24 17:53:16 +00:00
|
|
|
TorrentDeterminationAutomatic = 0,
|
|
|
|
TorrentDeterminationUserSpecified
|
2021-08-07 07:27:56 +00:00
|
|
|
};
|
2012-10-30 00:22:10 +00:00
|
|
|
|
|
|
|
#define kTorrentDidChangeGroupNotification @"TorrentDidChangeGroup"
|
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@interface Torrent : NSObject<NSCopying, QLPreviewItem>
|
2021-08-07 07:27:56 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (instancetype)initWithPath:(NSString*)path
|
|
|
|
location:(NSString*)location
|
|
|
|
deleteTorrentFile:(BOOL)torrentDelete
|
|
|
|
lib:(tr_session*)lib;
|
|
|
|
- (instancetype)initWithTorrentStruct:(tr_torrent*)torrentStruct location:(NSString*)location lib:(tr_session*)lib;
|
|
|
|
- (instancetype)initWithMagnetAddress:(NSString*)address location:(NSString*)location lib:(tr_session*)lib;
|
|
|
|
- (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
|
|
|
@property(nonatomic, readonly) NSDictionary* history;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)closeRemoveTorrent:(BOOL)trashFiles;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)changeDownloadFolderBeforeUsing:(NSString*)folder determinationType:(TorrentDeterminationType)determinationType;
|
2009-10-21 13:01:14 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) NSString* currentDirectory;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)getAvailability:(int8_t*)tab size:(NSInteger)size;
|
|
|
|
- (void)getAmountFinished:(float*)tab size:(NSInteger)size;
|
|
|
|
@property(nonatomic) NSIndexSet* previousFinishedPieces;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)update;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)startTransferIgnoringQueue:(BOOL)ignoreQueue;
|
|
|
|
- (void)startTransferNoQueue;
|
|
|
|
- (void)startTransfer;
|
|
|
|
- (void)stopTransfer;
|
|
|
|
- (void)sleep;
|
|
|
|
- (void)wakeUp;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic) NSUInteger queuePosition;
|
2011-08-02 12:43:26 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)manualAnnounce;
|
|
|
|
@property(nonatomic, readonly) BOOL canManualAnnounce;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (void)resetCache;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, getter=isMagnet, readonly) BOOL magnet;
|
|
|
|
@property(nonatomic, readonly) NSString* magnetLink;
|
2009-11-25 05:04:19 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) CGFloat ratio;
|
|
|
|
@property(nonatomic) tr_ratiolimit ratioSetting;
|
|
|
|
@property(nonatomic) CGFloat ratioLimit;
|
|
|
|
@property(nonatomic, readonly) CGFloat progressStopRatio;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic) tr_idlelimit idleSetting;
|
|
|
|
@property(nonatomic) NSUInteger idleLimitMinutes;
|
2010-07-16 03:12:57 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
- (BOOL)usesSpeedLimit:(BOOL)upload;
|
|
|
|
- (void)setUseSpeedLimit:(BOOL)use upload:(BOOL)upload;
|
|
|
|
- (NSInteger)speedLimit:(BOOL)upload;
|
|
|
|
- (void)setSpeedLimit:(NSInteger)limit upload:(BOOL)upload;
|
|
|
|
@property(nonatomic) BOOL usesGlobalSpeedLimit;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic) uint16_t maxPeerConnect;
|
2007-12-22 05:21:25 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic) BOOL removeWhenFinishSeeding;
|
2012-07-07 01:47:12 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) BOOL waitingToStart;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic) tr_priority_t priority;
|
2009-04-20 02:45:27 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
+ (BOOL)trashFile:(NSString*)path error:(NSError**)error;
|
|
|
|
- (void)moveTorrentDataFileTo:(NSString*)folder;
|
|
|
|
- (void)copyTorrentFileTo:(NSString*)path;
|
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
|
|
|
@property(nonatomic, readonly) NSImage* icon;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) NSString* name;
|
|
|
|
@property(nonatomic, getter=isFolder, readonly) BOOL folder;
|
|
|
|
@property(nonatomic, readonly) uint64_t size;
|
|
|
|
@property(nonatomic, readonly) uint64_t sizeLeft;
|
2008-02-22 01:36:30 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) NSMutableArray* allTrackerStats;
|
|
|
|
@property(nonatomic, readonly) NSArray* allTrackersFlat; //used by GroupRules
|
|
|
|
- (BOOL)addTrackerToNewTier:(NSString*)tracker;
|
|
|
|
- (void)removeTrackers:(NSSet*)trackers;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) NSString* comment;
|
|
|
|
@property(nonatomic, readonly) NSString* creator;
|
|
|
|
@property(nonatomic, readonly) NSDate* dateCreated;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) NSInteger pieceSize;
|
|
|
|
@property(nonatomic, readonly) NSInteger pieceCount;
|
|
|
|
@property(nonatomic, readonly) NSString* hashString;
|
|
|
|
@property(nonatomic, readonly) BOOL privateTorrent;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) NSString* torrentLocation;
|
|
|
|
@property(nonatomic, readonly) NSString* dataLocation;
|
|
|
|
- (NSString*)fileLocation:(FileListNode*)node;
|
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;
|
|
|
|
- (void)renameFileNode:(FileListNode*)node
|
|
|
|
withName:(NSString*)newName
|
|
|
|
completionHandler:(void (^)(BOOL didRename))completionHandler;
|
2013-01-22 00:09:48 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) CGFloat progress;
|
|
|
|
@property(nonatomic, readonly) CGFloat progressDone;
|
|
|
|
@property(nonatomic, readonly) CGFloat progressLeft;
|
|
|
|
@property(nonatomic, readonly) CGFloat checkingProgress;
|
2021-08-07 07:27:56 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) CGFloat availableDesired;
|
2021-08-07 07:27:56 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, getter=isActive, readonly) BOOL active;
|
|
|
|
@property(nonatomic, getter=isSeeding, readonly) BOOL seeding;
|
|
|
|
@property(nonatomic, getter=isChecking, readonly) BOOL checking;
|
|
|
|
@property(nonatomic, getter=isCheckingWaiting, readonly) BOOL checkingWaiting;
|
|
|
|
@property(nonatomic, readonly) BOOL allDownloaded;
|
|
|
|
@property(nonatomic, getter=isComplete, readonly) BOOL complete;
|
|
|
|
@property(nonatomic, getter=isFinishedSeeding, readonly) BOOL finishedSeeding;
|
|
|
|
@property(nonatomic, getter=isError, readonly) BOOL error;
|
|
|
|
@property(nonatomic, getter=isAnyErrorOrWarning, readonly) BOOL anyErrorOrWarning;
|
|
|
|
@property(nonatomic, readonly) NSString* errorMessage;
|
|
|
|
|
|
|
|
@property(nonatomic, readonly) NSArray* peers;
|
|
|
|
|
|
|
|
@property(nonatomic, readonly) NSUInteger webSeedCount;
|
|
|
|
@property(nonatomic, readonly) NSArray* webSeeds;
|
|
|
|
|
|
|
|
@property(nonatomic, readonly) NSString* progressString;
|
|
|
|
@property(nonatomic, readonly) NSString* statusString;
|
|
|
|
@property(nonatomic, readonly) NSString* shortStatusString;
|
|
|
|
@property(nonatomic, readonly) NSString* remainingTimeString;
|
|
|
|
|
|
|
|
@property(nonatomic, readonly) NSString* stateString;
|
|
|
|
@property(nonatomic, readonly) NSInteger totalPeersConnected;
|
|
|
|
@property(nonatomic, readonly) NSInteger totalPeersTracker;
|
|
|
|
@property(nonatomic, readonly) NSInteger totalPeersIncoming;
|
|
|
|
@property(nonatomic, readonly) NSInteger totalPeersCache;
|
|
|
|
@property(nonatomic, readonly) NSInteger totalPeersPex;
|
|
|
|
@property(nonatomic, readonly) NSInteger totalPeersDHT;
|
|
|
|
@property(nonatomic, readonly) NSInteger totalPeersLocal;
|
|
|
|
@property(nonatomic, readonly) NSInteger totalPeersLTEP;
|
|
|
|
|
|
|
|
@property(nonatomic, readonly) NSInteger peersSendingToUs;
|
|
|
|
@property(nonatomic, readonly) NSInteger peersGettingFromUs;
|
|
|
|
|
|
|
|
@property(nonatomic, readonly) CGFloat downloadRate;
|
|
|
|
@property(nonatomic, readonly) CGFloat uploadRate;
|
|
|
|
@property(nonatomic, readonly) CGFloat totalRate;
|
|
|
|
@property(nonatomic, readonly) uint64_t haveVerified;
|
|
|
|
@property(nonatomic, readonly) uint64_t haveTotal;
|
|
|
|
@property(nonatomic, readonly) uint64_t totalSizeSelected;
|
|
|
|
@property(nonatomic, readonly) uint64_t downloadedTotal;
|
|
|
|
@property(nonatomic, readonly) uint64_t uploadedTotal;
|
|
|
|
@property(nonatomic, readonly) uint64_t failedHash;
|
|
|
|
|
|
|
|
@property(nonatomic, readonly) NSInteger groupValue;
|
|
|
|
- (void)setGroupValue:(NSInteger)groupValue determinationType:(TorrentDeterminationType)determinationType;
|
|
|
|
;
|
|
|
|
@property(nonatomic, readonly) NSInteger groupOrderValue;
|
|
|
|
- (void)checkGroupValueForRemoval:(NSNotification*)notification;
|
|
|
|
|
|
|
|
@property(nonatomic, readonly) NSArray* fileList;
|
|
|
|
@property(nonatomic, readonly) NSArray* flatFileList;
|
|
|
|
@property(nonatomic, readonly) NSInteger fileCount;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
//methods require fileStats to have been updated recently to be accurate
|
2021-08-15 09:41:48 +00:00
|
|
|
- (CGFloat)fileProgress:(FileListNode*)node;
|
|
|
|
- (BOOL)canChangeDownloadCheckForFile:(NSUInteger)index;
|
|
|
|
- (BOOL)canChangeDownloadCheckForFiles:(NSIndexSet*)indexSet;
|
|
|
|
- (NSInteger)checkForFiles:(NSIndexSet*)indexSet;
|
|
|
|
- (void)setFileCheckState:(NSInteger)state forIndexes:(NSIndexSet*)indexSet;
|
|
|
|
- (void)setFilePriority:(tr_priority_t)priority forIndexes:(NSIndexSet*)indexSet;
|
|
|
|
- (BOOL)hasFilePriority:(tr_priority_t)priority forIndexes:(NSIndexSet*)indexSet;
|
|
|
|
- (NSSet*)filePrioritiesForIndexes:(NSIndexSet*)indexSet;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) NSDate* dateAdded;
|
|
|
|
@property(nonatomic, readonly) NSDate* dateCompleted;
|
|
|
|
@property(nonatomic, readonly) NSDate* dateActivity;
|
|
|
|
@property(nonatomic, readonly) NSDate* dateActivityOrAdd;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) NSInteger secondsDownloading;
|
|
|
|
@property(nonatomic, readonly) NSInteger secondsSeeding;
|
2010-12-23 20:07:41 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) NSInteger stalledMinutes;
|
|
|
|
@property(nonatomic, getter=isStalled, readonly) BOOL stalled;
|
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
|
|
|
@property(nonatomic, readonly) NSInteger stateSortKey;
|
|
|
|
@property(nonatomic, readonly) NSString* trackerSortKey;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2021-08-15 09:41:48 +00:00
|
|
|
@property(nonatomic, readonly) tr_torrent* torrentStruct;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
@end
|