transmission/libtransmission/stats.c

235 lines
5.7 KiB
C
Raw Normal View History

/*
2008-01-01 17:20:20 +00:00
* This file Copyright (C) 2007-2008 Charles Kerr <charles@rebelbase.com>
*
* This file is licensed by the GPL version 2. Works owned by the
* Transmission project are granted a special exemption to clause 2(b)
* so that the bulk of its code can remain under the MIT license.
* This exemption does not extend to derived works not owned by
* the Transmission project.
*
* $Id$
*/
#include "transmission.h"
#include "bencode.h"
2008-05-18 16:44:30 +00:00
#include "platform.h" /* tr_sessionGetConfigDir() */
#include "stats.h"
#include "utils.h" /* tr_buildPath */
/***
****
***/
2007-11-26 18:55:36 +00:00
struct tr_stats_handle
{
tr_session_stats single;
tr_session_stats old;
time_t startTime;
2007-11-26 18:55:36 +00:00
};
2008-04-18 16:23:59 +00:00
static char*
getOldFilename( const tr_handle * handle )
2008-04-18 16:23:59 +00:00
{
return tr_buildPath( tr_sessionGetConfigDir( handle ), "stats.benc", NULL );
2008-04-18 16:23:59 +00:00
}
static char*
getFilename( const tr_handle * handle )
{
return tr_buildPath( tr_sessionGetConfigDir( handle ), "stats.json", NULL );
}
static void
loadCumulativeStats( const tr_handle * handle,
tr_session_stats * setme )
{
int loaded = FALSE;
char * filename;
tr_benc top;
filename = getFilename( handle );
loaded = !tr_bencLoadJSONFile( filename, &top );
tr_free( filename );
if( !loaded )
{
filename = getOldFilename( handle );
loaded = !tr_bencLoadFile( filename, &top );
tr_free( filename );
}
if( loaded )
{
int64_t i;
if( tr_bencDictFindInt( &top, "downloaded-bytes", &i ) )
setme->downloadedBytes = (uint64_t) i;
if( tr_bencDictFindInt( &top, "files-added", &i ) )
setme->filesAdded = (uint64_t) i;
if( tr_bencDictFindInt( &top, "seconds-active", &i ) )
setme->secondsActive = (uint64_t) i;
if( tr_bencDictFindInt( &top, "session-count", &i ) )
setme->sessionCount = (uint64_t) i;
if( tr_bencDictFindInt( &top, "uploaded-bytes", &i ) )
setme->uploadedBytes = (uint64_t) i;
tr_bencFree( &top );
}
}
2007-11-26 18:55:36 +00:00
static void
saveCumulativeStats( const tr_handle * handle,
const tr_session_stats * s )
2007-11-26 18:55:36 +00:00
{
char * filename;
tr_benc top;
2007-11-26 18:55:36 +00:00
tr_bencInitDict( &top, 5 );
2008-04-18 16:23:59 +00:00
tr_bencDictAddInt( &top, "downloaded-bytes", s->downloadedBytes );
tr_bencDictAddInt( &top, "files-added", s->filesAdded );
tr_bencDictAddInt( &top, "seconds-active", s->secondsActive );
tr_bencDictAddInt( &top, "session-count", s->sessionCount );
tr_bencDictAddInt( &top, "uploaded-bytes", s->uploadedBytes );
2007-11-26 18:55:36 +00:00
filename = getFilename( handle );
tr_deepLog( __FILE__, __LINE__, NULL, "Saving stats to \"%s\"", filename );
tr_bencSaveJSONFile( filename, &top );
2007-11-26 18:55:36 +00:00
tr_free( filename );
2007-11-26 19:10:53 +00:00
tr_bencFree( &top );
2007-11-26 18:55:36 +00:00
}
/***
****
***/
void
tr_statsInit( tr_handle * handle )
{
2007-11-26 18:55:36 +00:00
struct tr_stats_handle * stats = tr_new0( struct tr_stats_handle, 1 );
loadCumulativeStats( handle, &stats->old );
stats->single.sessionCount = 1;
stats->startTime = time( NULL );
2007-11-26 18:55:36 +00:00
handle->sessionStats = stats;
}
void
2007-11-26 18:55:36 +00:00
tr_statsClose( tr_handle * handle )
{
tr_session_stats cumulative;
tr_sessionGetCumulativeStats( handle, &cumulative );
saveCumulativeStats( handle, &cumulative );
2007-11-26 18:55:36 +00:00
tr_free( handle->sessionStats );
handle->sessionStats = NULL;
}
static struct tr_stats_handle *
getStats( const tr_handle * handle )
{
return handle ? handle->sessionStats : NULL;
}
/***
****
***/
static void
updateRatio( tr_session_stats * setme )
{
setme->ratio = tr_getRatio( setme->uploadedBytes,
setme->downloadedBytes );
}
static void
addStats( tr_session_stats * setme,
const tr_session_stats * a,
const tr_session_stats * b )
{
setme->uploadedBytes = a->uploadedBytes + b->uploadedBytes;
setme->downloadedBytes = a->downloadedBytes + b->downloadedBytes;
setme->filesAdded = a->filesAdded + b->filesAdded;
setme->sessionCount = a->sessionCount + b->sessionCount;
setme->secondsActive = a->secondsActive + b->secondsActive;
updateRatio( setme );
}
void
tr_sessionGetStats( const tr_handle * handle,
tr_session_stats * setme )
{
const struct tr_stats_handle * stats = getStats( handle );
if( stats )
{
*setme = stats->single;
setme->secondsActive = time( NULL ) - stats->startTime;
updateRatio( setme );
}
}
void
tr_sessionGetCumulativeStats( const tr_handle * handle,
tr_session_stats * setme )
{
const struct tr_stats_handle * stats = getStats( handle );
tr_session_stats current;
if( stats )
{
tr_sessionGetStats( handle, &current );
addStats( setme, &stats->old, &current );
}
}
2008-04-22 14:07:42 +00:00
void
tr_sessionClearStats( tr_handle * handle )
2008-04-22 14:07:42 +00:00
{
tr_session_stats zero;
2008-04-22 14:07:42 +00:00
zero.uploadedBytes = 0;
zero.downloadedBytes = 0;
zero.ratio = TR_RATIO_NA;
zero.filesAdded = 0;
zero.sessionCount = 0;
zero.secondsActive = 0;
handle->sessionStats->single = handle->sessionStats->old = zero;
handle->sessionStats->startTime = time( NULL );
}
/**
***
**/
void
tr_statsAddUploaded( tr_handle * handle,
uint32_t bytes )
{
struct tr_stats_handle * s;
if( ( s = getStats( handle ) ) )
s->single.uploadedBytes += bytes;
}
void
tr_statsAddDownloaded( tr_handle * handle,
uint32_t bytes )
{
struct tr_stats_handle * s;
if( ( s = getStats( handle ) ) )
s->single.downloadedBytes += bytes;
2007-11-26 18:55:36 +00:00
}
void
2007-11-26 20:37:07 +00:00
tr_statsFileCreated( tr_handle * handle )
2007-11-26 18:55:36 +00:00
{
struct tr_stats_handle * s;
if( ( s = getStats( handle ) ) )
s->single.filesAdded++;
}