transmission/libtransmission/internal.h

256 lines
7.4 KiB
C
Raw Normal View History

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
/* Standard headers used here and there.
That is probably ugly to put them all here, but it is sooo
convenient */
2006-09-25 18:37:45 +00:00
#if ( defined( __unix__ ) || defined( unix ) ) && !defined( USG )
#include <sys/param.h>
#endif
2006-07-16 19:39:23 +00:00
#include <stdio.h>
2007-01-21 08:43:58 +00:00
#ifdef SYS_BEOS
/* BeOS doesn't declare vasprintf in its headers, but actually
* implements it */
int vasprintf( char **, const char *, va_list );
#endif
2006-07-16 19:39:23 +00:00
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <time.h>
2006-07-23 19:39:02 +00:00
#ifndef __AMIGAOS4__
2006-07-16 19:39:23 +00:00
#include <sys/resource.h>
2006-07-23 19:39:02 +00:00
#endif
2006-07-16 19:39:23 +00:00
#include <assert.h>
2006-10-17 18:48:04 +00:00
#ifdef SYS_BEOS
# define socklen_t uint32_t
#endif
2006-07-16 19:39:23 +00:00
#ifdef BEOS_NETSERVER
# define in_port_t uint16_t
#else
# include <arpa/inet.h>
#endif
2007-03-23 08:28:01 +00:00
#define TR_NAME "Transmission"
2006-09-25 18:37:45 +00:00
#ifndef INADDR_NONE
#define INADDR_NONE 0xffffffff
#endif
2006-07-16 19:39:23 +00:00
#ifdef __GNUC__
# define UNUSED __attribute__((unused))
2006-09-25 18:37:45 +00:00
# define PRINTF( fmt, args ) __attribute__((format (printf, fmt, args)))
2006-07-16 19:39:23 +00:00
#else
# define UNUSED
2006-09-25 18:37:45 +00:00
# define PRINTF( fmt, args )
2006-07-16 19:39:23 +00:00
#endif
/* We use OpenSSL whenever possible, since it is likely to be more
optimized and it is ok to use it with a MIT-licensed application.
Otherwise, we use the included implementation by vi@nwr.jp. */
#if defined(HAVE_OPENSSL) || defined(HAVE_LIBSSL)
2006-07-16 19:39:23 +00:00
# undef SHA_DIGEST_LENGTH
# include <openssl/sha.h>
#else
# include "sha1.h"
# define SHA1(p,i,h) \
{ \
sha1_state_s pms; \
sha1_init( &pms ); \
sha1_update( &pms, (sha1_byte_t *) p, i ); \
sha1_finish( &pms, (sha1_byte_t *) h ); \
}
#endif
#define TR_MAX_PEER_COUNT 60
typedef struct tr_completion_s tr_completion_t;
typedef struct tr_shared_s tr_shared_t;
2006-07-16 19:39:23 +00:00
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
2006-07-16 19:39:23 +00:00
#include "platform.h"
#include "tracker.h"
#include "peer.h"
#include "inout.h"
#include "ratecontrol.h"
#include "utils.h"
2006-07-16 19:39:23 +00:00
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
void tr_peerIdNew ( char* buf, int buflen );
void tr_torrentResetTransferStats( tr_torrent_t * );
int tr_torrentAddCompact( tr_torrent_t * tor, int from,
2007-03-23 08:28:01 +00:00
uint8_t * buf, int count );
int tr_torrentAttachPeer( tr_torrent_t * tor, tr_peer_t * peer );
void tr_torrentSetHasPiece( tr_torrent_t * tor, int pieceIndex, int has );
void tr_torrentReaderLock ( const tr_torrent_t * );
void tr_torrentReaderUnlock ( const tr_torrent_t * );
void tr_torrentWriterLock ( tr_torrent_t * );
void tr_torrentWriterUnlock ( tr_torrent_t * );
/* get the index of this piece's first block */
#define tr_torPieceFirstBlock(tor,piece) ( (piece) * (tor)->blockCountInPiece )
/* what piece index is this block in? */
#define tr_torBlockPiece(tor,block) ( (block) / (tor)->blockCountInPiece )
/* how many blocks are in this piece? */
#define tr_torPieceCountBlocks(tor,piece) \
( ((piece)==((tor)->info.pieceCount-1)) ? (tor)->blockCountInLastPiece : (tor)->blockCountInPiece )
/* how many bytes are in this piece? */
#define tr_torPieceCountBytes(tor,piece) \
( ((piece)==((tor)->info.pieceCount-1)) ? (tor)->lastPieceSize : (tor)->info.pieceSize )
/* how many bytes are in this block? */
#define tr_torBlockCountBytes(tor,block) \
( ((block)==((tor)->blockCount-1)) ? (tor)->lastBlockSize : (tor)->blockSize )
#define tr_block(a,b) _tr_block(tor,a,b)
int _tr_block( const tr_torrent_t * tor, int index, int begin );
typedef enum
{
TR_RUN_CHECKING = (1<<0), /* checking files' checksums */
TR_RUN_RUNNING = (1<<1), /* seeding or leeching */
TR_RUN_STOPPING = (1<<2), /* stopping */
TR_RUN_STOPPING_NET_WAIT = (1<<3), /* waiting on network -- we're
telling tracker we've stopped */
TR_RUN_STOPPED = (1<<4) /* stopped */
}
run_status_t;
#define TR_ID_LEN 20
#define TR_KEY_LEN 20
2006-07-16 19:39:23 +00:00
struct tr_torrent_s
{
tr_handle_t * handle;
2006-07-16 19:39:23 +00:00
tr_info_t info;
tr_speedlimit_t uploadLimitMode;
tr_speedlimit_t downloadLimitMode;
2006-07-16 19:39:23 +00:00
tr_ratecontrol_t * upload;
tr_ratecontrol_t * download;
tr_ratecontrol_t * swarmspeed;
2006-07-16 19:39:23 +00:00
int error;
2007-01-14 12:00:21 +00:00
char errorString[128];
int hasChangedState;
2006-07-16 19:39:23 +00:00
char peer_id[TR_ID_LEN+1];
2006-07-16 19:39:23 +00:00
char * key;
2007-03-23 08:28:01 +00:00
uint8_t * azId;
int publicPort;
2006-07-16 19:39:23 +00:00
/* An escaped string used to include the hash in HTTP queries */
char escapedHashString[3*SHA_DIGEST_LENGTH+1];
2006-07-16 19:39:23 +00:00
/* Where to download */
char * destination;
/* How many bytes we ask for per request */
int blockSize;
int blockCount;
int lastBlockSize;
int lastPieceSize;
int blockCountInPiece;
int blockCountInLastPiece;
2006-07-16 19:39:23 +00:00
tr_completion_t * completion;
volatile char dieFlag;
tr_bitfield_t * uncheckedPieces;
run_status_t runStatus;
cp_status_t cpStatus;
2006-07-16 19:39:23 +00:00
tr_thread_t thread;
tr_rwlock_t lock;
2006-07-16 19:39:23 +00:00
tr_tracker_t * tracker;
tr_io_t * io;
2007-05-25 19:14:42 +00:00
uint64_t startDate;
2006-07-16 19:39:23 +00:00
uint64_t stopDate;
char ioLoaded;
char fastResumeDirty;
2006-07-16 19:39:23 +00:00
int peerCount;
tr_peer_t * peers[TR_MAX_PEER_COUNT];
uint64_t downloadedCur;
uint64_t downloadedPrev;
uint64_t uploadedCur;
uint64_t uploadedPrev;
2007-05-25 19:14:42 +00:00
uint64_t activityDate;
2006-07-16 19:39:23 +00:00
uint8_t pexDisabled;
int8_t statCur;
2006-07-16 19:39:23 +00:00
tr_stat_t stats[2];
tr_torrent_t * next;
};
#include "utils.h"
#include "completion.h"
struct tr_handle_s
{
int torrentCount;
tr_torrent_t * torrentList;
char * tag;
int isPortSet;
char useUploadLimit;
tr_ratecontrol_t * upload;
char useDownloadLimit;
tr_ratecontrol_t * download;
tr_shared_t * shared;
2006-07-16 19:39:23 +00:00
char key[TR_KEY_LEN+1];
tr_handle_status_t stats[2];
int statCur;
2007-03-23 08:28:01 +00:00
#define TR_AZ_ID_LEN 20
uint8_t azId[TR_AZ_ID_LEN];
2006-07-16 19:39:23 +00:00
};
#endif