transmission/libtransmission/transmission.c

189 lines
5.2 KiB
C
Raw Normal View History

2006-07-16 19:39:23 +00:00
/******************************************************************************
* $Id$
*
2007-01-19 08:36:49 +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.
*****************************************************************************/
2007-07-12 17:51:45 +00:00
#include <signal.h>
2006-07-16 19:39:23 +00:00
#include "transmission.h"
2007-07-09 20:10:42 +00:00
#include "fdlimit.h"
#include "net.h"
#include "shared.h"
2006-07-16 19:39:23 +00:00
/***********************************************************************
* tr_init
***********************************************************************
* Allocates a tr_handle_t structure and initializes a few things
**********************************************************************/
tr_handle_t * tr_init( const char * tag )
2006-07-16 19:39:23 +00:00
{
tr_handle_t * h;
int i;
2006-07-16 19:39:23 +00:00
tr_msgInit();
2006-07-16 19:39:23 +00:00
tr_netResolveThreadInit();
h = calloc( 1, sizeof( tr_handle_t ) );
if( NULL == h )
{
return NULL;
}
h->tag = strdup( tag );
if( NULL == h->tag )
{
free( h );
return NULL;
}
2006-07-16 19:39:23 +00:00
/* Generate a peer id : "-TRxxyz-" + 12 random alphanumeric
characters, where xx is the major version number, y is the
minor version number, and z is the maintenance number (Azureus-style) */
snprintf( h->id, sizeof h->id, "-TR" VERSION_MAJOR VERSION_MINOR VERSION_MAINTENANCE VERSION_BETA "-" );
assert( strlen(h->id) == 8 );
for( i=8; i<TR_ID_LEN; ++i )
2006-07-16 19:39:23 +00:00
{
const int r = tr_rand( 36 );
2006-07-16 19:39:23 +00:00
h->id[i] = ( r < 26 ) ? ( 'a' + r ) : ( '0' + r - 26 ) ;
}
tr_dbg( "Transmission ID is [%s]", h->id );
2006-07-16 19:39:23 +00:00
/* Random key */
for( i=0; i < TR_KEY_LEN; ++i )
2006-07-16 19:39:23 +00:00
{
const int r = tr_rand( 36 );
2006-07-16 19:39:23 +00:00
h->key[i] = ( r < 26 ) ? ( 'a' + r ) : ( '0' + r - 26 ) ;
}
2007-03-23 08:28:01 +00:00
/* Azureus identity */
for( i=0; i < TR_AZ_ID_LEN; ++i )
2007-03-23 08:28:01 +00:00
{
h->azId[i] = tr_rand( 0xff );
}
2006-07-16 19:39:23 +00:00
/* Don't exit when writing on a broken socket */
signal( SIGPIPE, SIG_IGN );
/* Initialize rate and file descripts controls */
h->upload = tr_rcInit();
h->download = tr_rcInit();
tr_fdInit();
h->shared = tr_sharedInit( h );
2006-07-16 19:39:23 +00:00
tr_inf( TR_NAME " " LONG_VERSION_STRING " started" );
2006-07-16 19:39:23 +00:00
return h;
}
/***********************************************************************
* tr_setBindPort
***********************************************************************
*
**********************************************************************/
void tr_setBindPort( tr_handle_t * h, int port )
{
h->isPortSet = 1;
tr_sharedSetPort( h->shared, port );
2006-09-25 18:37:45 +00:00
}
void tr_natTraversalEnable( tr_handle_t * h, int enable )
2006-09-25 18:37:45 +00:00
{
tr_sharedLock( h->shared );
tr_sharedTraversalEnable( h->shared, enable );
tr_sharedUnlock( h->shared );
2006-09-25 18:37:45 +00:00
}
tr_handle_status_t * tr_handleStatus( tr_handle_t * h )
2006-09-25 18:37:45 +00:00
{
tr_handle_status_t * s;
h->statCur = ( h->statCur + 1 ) % 2;
s = &h->stats[h->statCur];
tr_sharedLock( h->shared );
s->natTraversalStatus = tr_sharedTraversalStatus( h->shared );
s->publicPort = tr_sharedGetPublicPort( h->shared );
tr_sharedUnlock( h->shared );
return s;
2006-09-25 18:37:45 +00:00
}
void tr_setGlobalUploadLimit( tr_handle_t * h, int limit )
2006-07-16 19:39:23 +00:00
{
tr_rcSetLimit( h->upload, limit );
tr_sharedSetLimit( h->shared, limit );
2006-07-16 19:39:23 +00:00
}
void tr_setGlobalDownloadLimit( tr_handle_t * h, int limit )
2006-07-16 19:39:23 +00:00
{
tr_rcSetLimit( h->download, limit );
}
2006-07-16 19:39:23 +00:00
void tr_torrentRates( tr_handle_t * h, float * dl, float * ul )
{
tr_torrent_t * tor;
*dl = 0.0;
*ul = 0.0;
tr_sharedLock( h->shared );
2006-07-16 19:39:23 +00:00
for( tor = h->torrentList; tor; tor = tor->next )
{
tr_torrentReaderLock( tor );
if( tor->cpStatus == TR_CP_INCOMPLETE )
2006-07-16 19:39:23 +00:00
*dl += tr_rcRate( tor->download );
*ul += tr_rcRate( tor->upload );
tr_torrentReaderUnlock( tor );
2006-07-16 19:39:23 +00:00
}
tr_sharedUnlock( h->shared );
2006-07-16 19:39:23 +00:00
}
int tr_torrentCount( tr_handle_t * h )
{
return h->torrentCount;
}
void tr_torrentIterate( tr_handle_t * h, tr_callback_t func, void * d )
{
tr_torrent_t * tor, * next;
2006-07-16 19:39:23 +00:00
for( tor = h->torrentList; tor; tor = next )
2006-07-16 19:39:23 +00:00
{
next = tor->next;
2006-07-16 19:39:23 +00:00
func( tor, d );
}
}
void tr_close( tr_handle_t * h )
{
tr_rcClose( h->upload );
tr_rcClose( h->download );
tr_sharedClose( h->shared );
tr_fdClose();
free( h->tag );
2006-07-16 19:39:23 +00:00
free( h );
tr_netResolveThreadClose();
}