2006-07-16 19:39:23 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* $Id$
|
|
|
|
*
|
2007-03-23 08:28:01 +00:00
|
|
|
* Copyright (c) 2005-2007 Transmission authors and contributors
|
2006-07-16 19:39:23 +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.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef TR_INTERNAL_H
|
|
|
|
#define TR_INTERNAL_H 1
|
|
|
|
|
2007-07-29 18:11:21 +00:00
|
|
|
#define TR_NAME "Transmission"
|
2007-03-23 08:28:01 +00:00
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
#ifdef __GNUC__
|
2007-07-31 01:21:10 +00:00
|
|
|
#define UNUSED __attribute__((unused))
|
2006-07-16 19:39:23 +00:00
|
|
|
#else
|
2007-07-31 01:21:10 +00:00
|
|
|
#define UNUSED
|
2006-07-16 19:39:23 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define TR_MAX_PEER_COUNT 60
|
|
|
|
|
2007-01-14 12:00:21 +00:00
|
|
|
typedef enum { TR_NET_OK, TR_NET_ERROR, TR_NET_WAIT } tr_tristate_t;
|
2006-09-25 18:37:45 +00:00
|
|
|
|
2007-06-18 03:40:41 +00:00
|
|
|
#ifndef TRUE
|
|
|
|
#define TRUE 1
|
|
|
|
#endif
|
2007-07-31 14:26:44 +00:00
|
|
|
|
2007-06-18 03:40:41 +00:00
|
|
|
#ifndef FALSE
|
|
|
|
#define FALSE 0
|
|
|
|
#endif
|
|
|
|
|
2007-09-23 13:53:44 +00:00
|
|
|
|
|
|
|
void tr_torrentRecheckCompleteness( tr_torrent * );
|
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
int tr_trackerInfoInit( struct tr_tracker_info * info,
|
|
|
|
const char * address,
|
|
|
|
int address_len );
|
2007-08-14 15:24:48 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
void tr_trackerInfoClear( struct tr_tracker_info * info );
|
2007-07-31 14:26:44 +00:00
|
|
|
|
2007-07-16 11:19:44 +00:00
|
|
|
void tr_peerIdNew ( char* buf, int buflen );
|
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
void tr_torrentResetTransferStats( tr_torrent * );
|
2007-06-26 18:45:03 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
void tr_torrentSetHasPiece( tr_torrent * tor, int pieceIndex, int has );
|
2007-01-21 06:42:05 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
void tr_torrentLock ( const tr_torrent * );
|
|
|
|
void tr_torrentUnlock ( const tr_torrent * );
|
2007-06-26 18:45:03 +00:00
|
|
|
|
2007-09-21 05:31:29 +00:00
|
|
|
void tr_torrentChangeMyPort ( tr_torrent * );
|
2007-06-26 18:45:03 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
int tr_torrentExists( tr_handle *, const uint8_t * );
|
|
|
|
tr_torrent* tr_torrentFindFromHash( tr_handle *, const uint8_t * );
|
|
|
|
tr_torrent* tr_torrentFindFromObfuscatedHash( tr_handle *, const uint8_t* );
|
2007-08-16 20:00:06 +00:00
|
|
|
|
2007-07-28 15:43:34 +00:00
|
|
|
/* get the index of this piece's first block */
|
|
|
|
#define tr_torPieceFirstBlock(tor,piece) ( (piece) * (tor)->blockCountInPiece )
|
2007-07-19 11:54:37 +00:00
|
|
|
|
2007-07-28 15:43:34 +00:00
|
|
|
/* what piece index is this block in? */
|
|
|
|
#define tr_torBlockPiece(tor,block) ( (block) / (tor)->blockCountInPiece )
|
2007-07-25 01:59:46 +00:00
|
|
|
|
2007-07-28 15:43:34 +00:00
|
|
|
/* how many blocks are in this piece? */
|
|
|
|
#define tr_torPieceCountBlocks(tor,piece) \
|
|
|
|
( ((piece)==((tor)->info.pieceCount-1)) ? (tor)->blockCountInLastPiece : (tor)->blockCountInPiece )
|
2007-07-19 11:54:37 +00:00
|
|
|
|
2007-07-28 15:43:34 +00:00
|
|
|
/* how many bytes are in this piece? */
|
|
|
|
#define tr_torPieceCountBytes(tor,piece) \
|
|
|
|
( ((piece)==((tor)->info.pieceCount-1)) ? (tor)->lastPieceSize : (tor)->info.pieceSize )
|
2007-07-19 11:54:37 +00:00
|
|
|
|
2007-07-28 15:43:34 +00:00
|
|
|
/* how many bytes are in this block? */
|
|
|
|
#define tr_torBlockCountBytes(tor,block) \
|
|
|
|
( ((block)==((tor)->blockCount-1)) ? (tor)->lastBlockSize : (tor)->blockSize )
|
2007-07-19 11:54:37 +00:00
|
|
|
|
|
|
|
#define tr_block(a,b) _tr_block(tor,a,b)
|
2007-09-20 16:32:01 +00:00
|
|
|
int _tr_block( const tr_torrent * tor, int index, int begin );
|
2007-07-19 11:54:37 +00:00
|
|
|
|
2007-09-23 23:38:39 +00:00
|
|
|
uint64_t tr_pieceOffset( const tr_torrent * tor, int index, int begin, int length );
|
2007-07-19 11:54:37 +00:00
|
|
|
|
2007-06-26 18:45:03 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
2007-09-20 16:32:01 +00:00
|
|
|
TR_RUN_CHECKING_WAIT = (1<<0), /* waiting to be checked */
|
|
|
|
TR_RUN_CHECKING = (1<<1), /* checking files' checksums */
|
|
|
|
TR_RUN_RUNNING = (1<<2), /* seeding or leeching */
|
|
|
|
TR_RUN_STOPPING = (1<<3), /* waiting for acknowledgment from tracker */
|
2007-07-12 20:48:13 +00:00
|
|
|
TR_RUN_STOPPED = (1<<4) /* stopped */
|
2007-06-26 18:45:03 +00:00
|
|
|
}
|
|
|
|
run_status_t;
|
|
|
|
|
2007-08-16 20:00:06 +00:00
|
|
|
#define TR_ID_LEN 20
|
2007-07-16 11:19:44 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_torrent
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2007-09-20 16:32:01 +00:00
|
|
|
tr_handle * handle;
|
|
|
|
tr_info info;
|
|
|
|
|
|
|
|
tr_speedlimit uploadLimitMode;
|
|
|
|
tr_speedlimit downloadLimitMode;
|
|
|
|
struct tr_ratecontrol * upload;
|
|
|
|
struct tr_ratecontrol * download;
|
|
|
|
struct tr_ratecontrol * swarmspeed;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_timer * saveTimer;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-08-16 20:00:06 +00:00
|
|
|
int error;
|
|
|
|
char errorString[128];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
uint8_t obfuscatedHash[SHA_DIGEST_LENGTH];
|
|
|
|
|
2007-08-16 20:00:06 +00:00
|
|
|
uint8_t * azId;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
/* Where to download */
|
2007-08-16 20:00:06 +00:00
|
|
|
char * destination;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
/* How many bytes we ask for per request */
|
2007-08-16 20:00:06 +00:00
|
|
|
int blockSize;
|
|
|
|
int blockCount;
|
2007-07-28 15:43:34 +00:00
|
|
|
|
2007-08-16 20:00:06 +00:00
|
|
|
int lastBlockSize;
|
|
|
|
int lastPieceSize;
|
2007-07-28 15:43:34 +00:00
|
|
|
|
2007-08-16 20:00:06 +00:00
|
|
|
int blockCountInPiece;
|
|
|
|
int blockCountInLastPiece;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_completion * completion;
|
2007-08-16 20:00:06 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_bitfield * uncheckedPieces;
|
2007-08-16 20:00:06 +00:00
|
|
|
run_status_t runStatus;
|
2007-08-20 23:36:18 +00:00
|
|
|
run_status_t runStatusToSave;
|
2007-08-16 20:00:06 +00:00
|
|
|
cp_status_t cpStatus;
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_lock * lock;
|
2007-08-16 20:00:06 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_tracker * tracker;
|
2007-08-16 20:00:06 +00:00
|
|
|
struct tr_publisher_tag * trackerSubscription;
|
|
|
|
|
|
|
|
uint64_t downloadedCur;
|
|
|
|
uint64_t downloadedPrev;
|
|
|
|
uint64_t uploadedCur;
|
|
|
|
uint64_t uploadedPrev;
|
2007-08-21 15:17:02 +00:00
|
|
|
uint64_t corruptCur;
|
|
|
|
uint64_t corruptPrev;
|
2007-09-21 14:20:55 +00:00
|
|
|
|
|
|
|
uint64_t startDate;
|
|
|
|
uint64_t stopDate;
|
2007-08-16 20:00:06 +00:00
|
|
|
uint64_t activityDate;
|
|
|
|
|
2007-09-21 14:50:29 +00:00
|
|
|
uint8_t hasChangedState;
|
|
|
|
|
2007-09-21 14:20:55 +00:00
|
|
|
unsigned int runStatusToSaveIsSet : 1;
|
|
|
|
unsigned int pexDisabled : 1;
|
|
|
|
unsigned int doStopAfterHashCheck : 1;
|
|
|
|
unsigned int statCur : 1;
|
2007-08-16 20:00:06 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
tr_stat stats[2];
|
2007-08-16 20:00:06 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
tr_torrent * next;
|
2006-07-16 19:39:23 +00:00
|
|
|
};
|
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_handle
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2007-09-20 16:32:01 +00:00
|
|
|
tr_encryption_mode encryptionMode;
|
|
|
|
|
|
|
|
struct tr_event_handle * events;
|
2007-08-18 03:02:32 +00:00
|
|
|
|
2007-08-16 20:00:06 +00:00
|
|
|
int torrentCount;
|
2007-09-20 16:32:01 +00:00
|
|
|
tr_torrent * torrentList;
|
2007-05-16 02:03:18 +00:00
|
|
|
|
2007-08-16 20:00:06 +00:00
|
|
|
char * tag;
|
|
|
|
int isPortSet;
|
2007-05-16 02:03:18 +00:00
|
|
|
|
2007-08-16 20:00:06 +00:00
|
|
|
char useUploadLimit;
|
|
|
|
char useDownloadLimit;
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_ratecontrol * upload;
|
|
|
|
struct tr_ratecontrol * download;
|
2007-05-16 02:03:18 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
struct tr_peerMgr * peerMgr;
|
|
|
|
struct tr_shared * shared;
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
tr_handle_status stats[2];
|
2007-08-16 20:00:06 +00:00
|
|
|
int statCur;
|
2007-02-06 04:26:40 +00:00
|
|
|
|
2007-09-20 16:32:01 +00:00
|
|
|
uint8_t isClosed;
|
|
|
|
|
2007-08-16 20:00:06 +00:00
|
|
|
#define TR_AZ_ID_LEN 20
|
|
|
|
uint8_t azId[TR_AZ_ID_LEN];
|
2006-07-16 19:39:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|