2007-09-16 01:02:06 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2008-01-02 16:55:05 +00:00
|
|
|
* Copyright (c) 2006-2008 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>
|
|
|
|
#import <transmission.h>
|
|
|
|
|
|
|
|
#define INVALID -99
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
TORRENT_FILE_DELETE,
|
|
|
|
TORRENT_FILE_SAVE,
|
|
|
|
TORRENT_FILE_DEFAULT
|
|
|
|
} torrentFileState;
|
|
|
|
|
2008-07-11 21:48:43 +00:00
|
|
|
#define STAT_TIME_NONE -1
|
|
|
|
#define STAT_TIME_NOW -2
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
@interface Torrent : NSObject
|
|
|
|
{
|
2007-09-20 20:24:33 +00:00
|
|
|
tr_torrent * fHandle;
|
|
|
|
const tr_info * fInfo;
|
|
|
|
const tr_stat * fStat;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2008-03-23 04:36:30 +00:00
|
|
|
BOOL fResumeOnWake;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2008-03-23 04:36:30 +00:00
|
|
|
BOOL fUseIncompleteFolder;
|
|
|
|
NSString * fDownloadFolder, * fIncompleteFolder;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2008-03-23 04:36:30 +00:00
|
|
|
BOOL fPublicTorrent;
|
|
|
|
NSString * fPublicTorrentLocation;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
NSUserDefaults * fDefaults;
|
|
|
|
|
|
|
|
NSImage * fIcon;
|
|
|
|
|
2008-02-16 19:32:22 +00:00
|
|
|
NSString * fNameString, * fHashString;
|
2008-02-06 23:45:44 +00:00
|
|
|
|
2008-03-17 19:59:26 +00:00
|
|
|
tr_file_stat * fFileStat;
|
2007-09-28 14:31:20 +00:00
|
|
|
NSArray * fFileList;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2008-06-11 16:28:33 +00:00
|
|
|
NSIndexSet * fPreviousFinishedIndexes;
|
|
|
|
NSDate * fPreviousFinishedIndexesDate;
|
2007-12-28 21:37:06 +00:00
|
|
|
|
2007-11-23 15:45:58 +00:00
|
|
|
float fRatioLimit;
|
|
|
|
int fRatioSetting;
|
2008-01-14 04:50:19 +00:00
|
|
|
BOOL fFinishedSeeding, fWaitToStart, fStalled;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2007-12-17 16:06:20 +00:00
|
|
|
int fOrderValue, fGroupValue;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2008-06-02 17:26:02 +00:00
|
|
|
BOOL fAddedTrackers;
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
NSDictionary * fQuickPauseDict;
|
|
|
|
}
|
|
|
|
|
|
|
|
- (id) initWithPath: (NSString *) path location: (NSString *) location deleteTorrentFile: (torrentFileState) torrentDelete
|
2007-09-20 20:24:33 +00:00
|
|
|
lib: (tr_handle *) lib;
|
2008-05-26 23:23:07 +00:00
|
|
|
- (id) initWithTorrentStruct: (tr_torrent *) torrentStruct location: (NSString *) location lib: (tr_handle *) lib;
|
2007-09-20 20:24:33 +00:00
|
|
|
- (id) initWithHistory: (NSDictionary *) history lib: (tr_handle *) lib;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
- (NSDictionary *) history;
|
|
|
|
|
2008-05-27 19:05:48 +00:00
|
|
|
- (void) closeRemoveTorrentInterface;
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) closeRemoveTorrent;
|
|
|
|
|
|
|
|
- (void) changeIncompleteDownloadFolder: (NSString *) folder;
|
|
|
|
- (void) changeDownloadFolder: (NSString *) folder;
|
|
|
|
- (NSString *) downloadFolder;
|
|
|
|
|
|
|
|
- (void) getAvailability: (int8_t *) tab size: (int) size;
|
|
|
|
- (void) getAmountFinished: (float *) tab size: (int) size;
|
2008-06-11 16:28:33 +00:00
|
|
|
- (NSIndexSet *) previousFinishedPieces;
|
|
|
|
-(void) setPreviousFinishedPieces: (NSIndexSet *) indexes;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
- (void) update;
|
|
|
|
|
|
|
|
- (void) startTransfer;
|
|
|
|
- (void) stopTransfer;
|
|
|
|
- (void) sleep;
|
|
|
|
- (void) wakeUp;
|
|
|
|
|
|
|
|
- (void) manualAnnounce;
|
|
|
|
- (BOOL) canManualAnnounce;
|
|
|
|
|
|
|
|
- (void) resetCache;
|
|
|
|
|
|
|
|
- (float) ratio;
|
|
|
|
- (int) ratioSetting;
|
|
|
|
- (void) setRatioSetting: (int) setting;
|
|
|
|
- (float) ratioLimit;
|
|
|
|
- (void) setRatioLimit: (float) limit;
|
|
|
|
- (float) actualStopRatio; //returns INVALID if will not stop
|
|
|
|
- (float) progressStopRatio;
|
|
|
|
|
2007-09-22 04:45:15 +00:00
|
|
|
- (tr_speedlimit) speedMode: (BOOL) upload;
|
|
|
|
- (void) setSpeedMode: (tr_speedlimit) mode upload: (BOOL) upload;
|
2007-09-16 01:02:06 +00:00
|
|
|
- (int) speedLimit: (BOOL) upload;
|
|
|
|
- (void) setSpeedLimit: (int) limit upload: (BOOL) upload;
|
|
|
|
|
2007-12-22 05:21:25 +00:00
|
|
|
- (void) setMaxPeerConnect: (uint16_t) count;
|
|
|
|
- (uint16_t) maxPeerConnect;
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) setWaitToStart: (BOOL) wait;
|
|
|
|
- (BOOL) waitingToStart;
|
|
|
|
|
|
|
|
- (void) revealData;
|
|
|
|
- (void) revealPublicTorrent;
|
|
|
|
- (void) trashData;
|
|
|
|
- (void) trashTorrent;
|
|
|
|
- (void) moveTorrentDataFileTo: (NSString *) folder;
|
|
|
|
- (void) copyTorrentFileTo: (NSString *) path;
|
|
|
|
|
|
|
|
- (BOOL) alertForRemainingDiskSpace;
|
|
|
|
- (BOOL) alertForFolderAvailable;
|
|
|
|
- (BOOL) alertForMoveFolderAvailable;
|
|
|
|
|
|
|
|
- (NSImage *) icon;
|
|
|
|
|
|
|
|
- (NSString *) name;
|
2008-05-29 22:16:03 +00:00
|
|
|
- (BOOL) isFolder;
|
2007-09-16 01:02:06 +00:00
|
|
|
- (uint64_t) size;
|
2007-10-07 03:28:06 +00:00
|
|
|
- (uint64_t) sizeLeft;
|
2008-02-22 01:36:30 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (NSString *) trackerAddressAnnounce;
|
2008-02-22 01:36:30 +00:00
|
|
|
- (NSDate *) lastAnnounceTime;
|
|
|
|
- (int) nextAnnounceTime;
|
|
|
|
- (NSString *) announceResponse;
|
|
|
|
|
|
|
|
- (NSString *) trackerAddressScrape;
|
|
|
|
- (NSDate *) lastScrapeTime;
|
|
|
|
- (int) nextScrapeTime;
|
|
|
|
- (NSString *) scrapeResponse;
|
|
|
|
|
2008-06-02 17:26:02 +00:00
|
|
|
- (NSMutableArray *) allTrackers: (BOOL) separators;
|
2008-06-02 19:42:14 +00:00
|
|
|
- (BOOL) updateAllTrackersForAdd: (NSMutableArray *) trackers;
|
2008-06-05 15:22:18 +00:00
|
|
|
- (void) updateAllTrackersForRemove: (NSMutableArray *) trackers;
|
2008-06-02 17:26:02 +00:00
|
|
|
- (BOOL) hasAddedTrackers;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
- (NSString *) comment;
|
|
|
|
- (NSString *) creator;
|
|
|
|
- (NSDate *) dateCreated;
|
|
|
|
|
|
|
|
- (int) pieceSize;
|
|
|
|
- (int) pieceCount;
|
|
|
|
- (NSString *) hashString;
|
|
|
|
- (BOOL) privateTorrent;
|
|
|
|
|
|
|
|
- (NSString *) torrentLocation;
|
|
|
|
- (NSString *) publicTorrentLocation;
|
|
|
|
- (NSString *) dataLocation;
|
|
|
|
|
|
|
|
- (BOOL) publicTorrent;
|
|
|
|
|
|
|
|
- (float) progress;
|
|
|
|
- (float) progressDone;
|
|
|
|
- (float) progressLeft;
|
2008-01-10 20:59:56 +00:00
|
|
|
- (float) checkingProgress;
|
2007-11-23 17:42:49 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (int) eta;
|
2007-11-23 17:42:49 +00:00
|
|
|
- (int) etaRatio;
|
2007-09-27 21:02:25 +00:00
|
|
|
|
2007-09-27 20:42:20 +00:00
|
|
|
- (float) notAvailableDesired;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
- (BOOL) isActive;
|
|
|
|
- (BOOL) isSeeding;
|
|
|
|
- (BOOL) isChecking;
|
2008-03-19 18:03:02 +00:00
|
|
|
- (BOOL) isCheckingWaiting;
|
2007-09-16 01:02:06 +00:00
|
|
|
- (BOOL) allDownloaded;
|
|
|
|
- (BOOL) isComplete;
|
|
|
|
- (BOOL) isError;
|
|
|
|
- (NSString *) errorMessage;
|
|
|
|
|
|
|
|
- (NSArray *) peers;
|
2008-06-08 16:38:15 +00:00
|
|
|
|
|
|
|
- (NSUInteger) webSeedCount;
|
2008-06-08 18:02:16 +00:00
|
|
|
- (NSArray *) webSeeds;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
- (NSString *) progressString;
|
|
|
|
- (NSString *) statusString;
|
|
|
|
- (NSString *) shortStatusString;
|
|
|
|
- (NSString *) remainingTimeString;
|
|
|
|
|
2007-09-28 02:58:25 +00:00
|
|
|
- (NSString *) stateString;
|
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (int) seeders;
|
|
|
|
- (int) leechers;
|
|
|
|
- (int) completedFromTracker;
|
|
|
|
|
|
|
|
- (int) totalPeersConnected;
|
|
|
|
- (int) totalPeersTracker;
|
|
|
|
- (int) totalPeersIncoming;
|
|
|
|
- (int) totalPeersCache;
|
|
|
|
- (int) totalPeersPex;
|
2007-10-01 16:23:00 +00:00
|
|
|
- (int) totalPeersKnown;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
- (int) peersSendingToUs;
|
|
|
|
- (int) peersGettingFromUs;
|
|
|
|
|
|
|
|
- (float) downloadRate;
|
|
|
|
- (float) uploadRate;
|
2007-11-23 16:03:49 +00:00
|
|
|
- (float) totalRate;
|
2007-09-26 03:27:00 +00:00
|
|
|
- (uint64_t) haveVerified;
|
|
|
|
- (uint64_t) haveTotal;
|
2008-02-27 19:34:55 +00:00
|
|
|
- (uint64_t) totalSizeSelected;
|
2007-09-26 18:32:32 +00:00
|
|
|
- (uint64_t) downloadedTotal;
|
2007-09-26 18:43:32 +00:00
|
|
|
- (uint64_t) uploadedTotal;
|
2007-09-26 18:32:32 +00:00
|
|
|
- (uint64_t) failedHash;
|
2007-09-16 01:02:06 +00:00
|
|
|
- (float) swarmSpeed;
|
|
|
|
|
2007-11-23 15:45:58 +00:00
|
|
|
- (int) orderValue;
|
2007-09-16 01:02:06 +00:00
|
|
|
- (void) setOrderValue: (int) orderValue;
|
|
|
|
|
2007-12-17 16:06:20 +00:00
|
|
|
- (int) groupValue;
|
|
|
|
- (void) setGroupValue: (int) groupValue;
|
2007-12-17 20:10:51 +00:00
|
|
|
- (int) groupOrderValue;
|
2007-12-19 21:11:49 +00:00
|
|
|
- (void) checkGroupValueForRemoval: (NSNotification *) notification;
|
2007-12-17 16:06:20 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
- (NSArray *) fileList;
|
|
|
|
- (int) fileCount;
|
|
|
|
- (void) updateFileStat;
|
|
|
|
|
|
|
|
//methods require fileStats to have been updated recently to be accurate
|
|
|
|
- (float) fileProgress: (int) index;
|
|
|
|
- (BOOL) canChangeDownloadCheckForFile: (int) index;
|
|
|
|
- (BOOL) canChangeDownloadCheckForFiles: (NSIndexSet *) indexSet;
|
|
|
|
- (int) checkForFiles: (NSIndexSet *) indexSet;
|
|
|
|
- (void) setFileCheckState: (int) state forIndexes: (NSIndexSet *) indexSet;
|
|
|
|
- (void) setFilePriority: (int) priority forIndexes: (NSIndexSet *) indexSet;
|
|
|
|
- (BOOL) hasFilePriority: (int) priority forIndexes: (NSIndexSet *) indexSet;
|
|
|
|
- (NSSet *) filePrioritiesForIndexes: (NSIndexSet *) indexSet;
|
|
|
|
|
|
|
|
- (NSDate *) dateAdded;
|
|
|
|
- (NSDate *) dateCompleted;
|
|
|
|
- (NSDate *) dateActivity;
|
2007-11-23 02:46:29 +00:00
|
|
|
- (NSDate *) dateActivityOrAdd;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
- (int) stalledMinutes;
|
|
|
|
- (BOOL) isStalled;
|
|
|
|
|
2008-06-30 02:22:29 +00:00
|
|
|
- (NSInteger) stateSortKey;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2008-04-07 13:14:31 +00:00
|
|
|
- (tr_torrent *) torrentStruct;
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
@end
|