transmission/macosx/Torrent.h

263 lines
6.9 KiB
C
Raw Normal View History

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;
@interface Torrent : NSObject
{
2007-09-20 20:24:33 +00:00
tr_handle * fLib;
tr_torrent * fHandle;
const tr_info * fInfo;
const tr_stat * fStat;
2007-09-16 01:02:06 +00:00
int fID;
BOOL fResumeOnWake;
NSDate * fDateAdded, * fDateCompleted, * fDateActivity;
BOOL fUseIncompleteFolder;
NSString * fDownloadFolder, * fIncompleteFolder;
BOOL fPublicTorrent;
NSString * fPublicTorrentLocation;
NSUserDefaults * fDefaults;
NSImage * fIcon;
2008-02-16 19:32:22 +00:00
NSString * fNameString, * fHashString;
2007-09-20 20:24:33 +00:00
tr_file_stat * fileStat;
2007-09-28 14:31:20 +00:00
NSArray * fFileList;
2007-09-16 01:02:06 +00:00
NSMenu * fFileMenu;
float * fPreviousFinishedPieces;
NSDate * fFinishedPiecesDate;
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
NSDictionary * fQuickPauseDict;
}
- (id) initWithPath: (NSString *) path location: (NSString *) location deleteTorrentFile: (torrentFileState) torrentDelete
2007-09-20 20:24:33 +00:00
lib: (tr_handle *) lib;
- (id) initWithData: (NSData *) data 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;
- (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;
- (float *) getPreviousAmountFinished;
-(void) setPreviousAmountFinished: (float *) tab;
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;
- (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;
- (BOOL) folder;
2007-09-16 01:02:06 +00:00
- (uint64_t) size;
- (uint64_t) sizeLeft;
2008-02-22 01:36:30 +00:00
2007-09-16 01:02:06 +00:00
- (NSString *) trackerAddress;
- (NSString *) trackerAddressAnnounce;
2008-02-22 01:36:30 +00:00
- (NSDate *) lastAnnounceTime;
- (int) nextAnnounceTime;
- (NSString *) announceResponse;
- (NSString *) trackerAddressScrape;
- (NSDate *) lastScrapeTime;
- (int) nextScrapeTime;
- (NSString *) scrapeResponse;
- (NSArray *) allTrackers;
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;
- (float) checkingProgress;
2007-09-16 01:02:06 +00:00
- (int) eta;
- (int) etaRatio;
- (float) notAvailableDesired;
2007-09-16 01:02:06 +00:00
- (BOOL) isActive;
- (BOOL) isSeeding;
- (BOOL) isChecking;
- (BOOL) allDownloaded;
- (BOOL) isComplete;
- (BOOL) isError;
- (NSString *) errorMessage;
- (NSArray *) peers;
- (NSString *) progressString;
- (NSString *) statusString;
- (NSString *) shortStatusString;
- (NSString *) remainingTimeString;
- (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;
- (uint64_t) haveVerified;
- (uint64_t) haveTotal;
- (uint64_t) downloadedTotal;
- (uint64_t) uploadedTotal;
- (uint64_t) failedHash;
2007-09-16 01:02:06 +00:00
- (float) swarmSpeed;
- (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;
- (int) groupOrderValue;
- (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;
- (NSMenu *) fileMenu;
- (NSDate *) dateAdded;
- (NSDate *) dateCompleted;
- (NSDate *) dateActivity;
- (NSDate *) dateActivityOrAdd;
2007-09-16 01:02:06 +00:00
- (int) stalledMinutes;
- (BOOL) isStalled;
- (NSNumber *) stateSortKey;
- (int) torrentID;
2007-09-20 20:24:33 +00:00
- (const tr_info *) torrentInfo;
- (const tr_stat *) torrentStat;
2007-09-16 01:02:06 +00:00
@end