2009-01-07 06:53:29 +00:00
|
|
|
/*
|
2011-01-19 13:48:47 +00:00
|
|
|
* This file Copyright (C) Mnemosyne LLC
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
2010-12-27 19:18:17 +00:00
|
|
|
* This file is licensed by the GPL version 2. Works owned by the
|
2009-01-07 06:53:29 +00:00
|
|
|
* Transmission project are granted a special exemption to clause 2(b)
|
2009-08-10 20:04:08 +00:00
|
|
|
* so that the bulk of its code can remain under the MIT license.
|
2009-01-07 06:53:29 +00:00
|
|
|
* This exemption does not extend to derived works not owned by
|
|
|
|
* the Transmission project.
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
2009-01-07 06:53:29 +00:00
|
|
|
* $Id$
|
|
|
|
*/
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2008-11-24 20:17:36 +00:00
|
|
|
#ifndef __TRANSMISSION__
|
2009-01-07 06:53:29 +00:00
|
|
|
#error only libtransmission should #include this header.
|
2008-11-24 20:17:36 +00:00
|
|
|
#endif
|
|
|
|
|
2010-01-14 14:20:49 +00:00
|
|
|
#ifndef TR_COMPLETION_H
|
|
|
|
#define TR_COMPLETION_H
|
|
|
|
|
2009-01-02 17:01:55 +00:00
|
|
|
#include <assert.h>
|
|
|
|
|
2007-06-18 03:40:41 +00:00
|
|
|
#include "transmission.h"
|
2011-02-23 03:54:04 +00:00
|
|
|
#include "bitset.h"
|
|
|
|
#include "utils.h" /* tr_getRatio() */
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2009-01-02 17:01:55 +00:00
|
|
|
typedef struct tr_completion
|
|
|
|
{
|
2011-03-22 15:19:54 +00:00
|
|
|
bool sizeWhenDoneIsDirty;
|
|
|
|
bool blocksWantedIsDirty;
|
|
|
|
bool haveValidIsDirty;
|
2007-07-30 18:04:10 +00:00
|
|
|
|
2009-01-02 17:01:55 +00:00
|
|
|
tr_torrent * tor;
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2009-01-02 17:01:55 +00:00
|
|
|
/* do we have this block? */
|
2011-02-23 03:54:04 +00:00
|
|
|
tr_bitset blockBitset;
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2009-01-02 17:01:55 +00:00
|
|
|
/* a block is complete if and only if we have it */
|
|
|
|
uint16_t * completeBlocks;
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2011-02-15 16:04:56 +00:00
|
|
|
/* total number of blocks that we want downloaded
|
|
|
|
DON'T access this directly; it's a lazy field.
|
|
|
|
Used by tr_cpBlocksMissing(). */
|
|
|
|
tr_block_index_t blocksWantedLazy;
|
|
|
|
|
|
|
|
/* total number of completed blocks that we want downloaded
|
|
|
|
DON'T access this directly; it's a lazy field.
|
|
|
|
Used by tr_cpBlocksMissing(). */
|
|
|
|
tr_block_index_t blocksWantedCompleteLazy;
|
|
|
|
|
2009-01-02 17:01:55 +00:00
|
|
|
/* number of bytes we'll have when done downloading. [0..info.totalSize]
|
|
|
|
DON'T access this directly; it's a lazy field.
|
|
|
|
use tr_cpSizeWhenDone() instead! */
|
|
|
|
uint64_t sizeWhenDoneLazy;
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2009-01-02 17:01:55 +00:00
|
|
|
/* number of bytes we'll have when done downloading. [0..info.totalSize]
|
|
|
|
DON'T access this directly; it's a lazy field.
|
|
|
|
use tr_cpHaveValid() instead! */
|
|
|
|
uint64_t haveValidLazy;
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2009-01-02 17:01:55 +00:00
|
|
|
/* number of bytes we want or have now. [0..sizeWhenDone] */
|
|
|
|
uint64_t sizeNow;
|
|
|
|
}
|
|
|
|
tr_completion;
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2009-01-02 17:01:55 +00:00
|
|
|
/**
|
|
|
|
*** Life Cycle
|
|
|
|
**/
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2009-01-02 17:01:55 +00:00
|
|
|
tr_completion * tr_cpConstruct( tr_completion *, tr_torrent * );
|
|
|
|
|
|
|
|
tr_completion * tr_cpDestruct( tr_completion * );
|
|
|
|
|
|
|
|
/**
|
|
|
|
*** General
|
|
|
|
**/
|
|
|
|
|
2011-02-23 03:54:04 +00:00
|
|
|
tr_completeness tr_cpGetStatus( const tr_completion * );
|
2009-01-02 17:01:55 +00:00
|
|
|
|
2011-02-23 03:54:04 +00:00
|
|
|
uint64_t tr_cpHaveValid( const tr_completion * );
|
2009-01-02 17:01:55 +00:00
|
|
|
|
2011-02-23 03:54:04 +00:00
|
|
|
tr_block_index_t tr_cpBlocksMissing( const tr_completion * );
|
2011-02-15 16:04:56 +00:00
|
|
|
|
2011-02-23 03:54:04 +00:00
|
|
|
uint64_t tr_cpSizeWhenDone( const tr_completion * );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2011-02-23 03:54:04 +00:00
|
|
|
void tr_cpInvalidateDND( tr_completion * );
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2011-02-23 03:54:04 +00:00
|
|
|
void tr_cpGetAmountDone( const tr_completion * completion,
|
|
|
|
float * tab,
|
|
|
|
int tabCount );
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline uint64_t tr_cpHaveTotal( const tr_completion * cp )
|
2009-01-02 17:01:55 +00:00
|
|
|
{
|
|
|
|
return cp->sizeNow;
|
|
|
|
}
|
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline uint64_t tr_cpLeftUntilComplete( const tr_completion * cp )
|
2009-01-02 17:01:55 +00:00
|
|
|
{
|
|
|
|
return tr_torrentInfo(cp->tor)->totalSize - cp->sizeNow;
|
|
|
|
}
|
|
|
|
|
2010-01-01 22:26:35 +00:00
|
|
|
static inline uint64_t tr_cpLeftUntilDone( const tr_completion * cp )
|
2009-01-02 17:01:55 +00:00
|
|
|
{
|
|
|
|
return tr_cpSizeWhenDone( cp ) - cp->sizeNow;
|
|
|
|
}
|
|
|
|
|
2010-07-01 05:14:34 +00:00
|
|
|
static inline double tr_cpPercentComplete( const tr_completion * cp )
|
2009-01-02 17:01:55 +00:00
|
|
|
{
|
2009-11-25 05:01:51 +00:00
|
|
|
const double ratio = tr_getRatio( cp->sizeNow, tr_torrentInfo(cp->tor)->totalSize );
|
|
|
|
if( (int)ratio == TR_RATIO_NA )
|
|
|
|
return 0.0;
|
|
|
|
else if( (int)ratio == TR_RATIO_INF )
|
|
|
|
return 1.0;
|
|
|
|
else
|
|
|
|
return ratio;
|
2009-01-02 17:01:55 +00:00
|
|
|
}
|
|
|
|
|
2010-07-01 05:14:34 +00:00
|
|
|
static inline double tr_cpPercentDone( const tr_completion * cp )
|
2009-01-02 17:01:55 +00:00
|
|
|
{
|
2009-03-14 19:55:24 +00:00
|
|
|
const double ratio = tr_getRatio( cp->sizeNow, tr_cpSizeWhenDone( cp ) );
|
2010-06-30 15:05:43 +00:00
|
|
|
const int iratio = (int)ratio;
|
2010-07-16 03:12:57 +00:00
|
|
|
return ((iratio == TR_RATIO_NA) || (iratio == TR_RATIO_INF)) ? 0.0 : ratio;
|
2009-01-02 17:01:55 +00:00
|
|
|
}
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2009-01-02 17:01:55 +00:00
|
|
|
/**
|
|
|
|
*** Pieces
|
|
|
|
**/
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2011-02-23 03:54:04 +00:00
|
|
|
int tr_cpMissingBlocksInPiece( const tr_completion * cp, tr_piece_index_t i );
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2011-03-22 15:19:54 +00:00
|
|
|
static inline bool
|
2011-02-23 03:54:04 +00:00
|
|
|
tr_cpPieceIsComplete( const tr_completion * cp, tr_piece_index_t i )
|
|
|
|
{
|
|
|
|
return tr_cpMissingBlocksInPiece( cp, i ) == 0;
|
|
|
|
}
|
2009-01-02 17:01:55 +00:00
|
|
|
|
2011-03-22 15:19:54 +00:00
|
|
|
void tr_cpPieceAdd( tr_completion * cp, tr_piece_index_t i );
|
2009-01-02 17:01:55 +00:00
|
|
|
|
2011-03-22 15:19:54 +00:00
|
|
|
void tr_cpPieceRem( tr_completion * cp, tr_piece_index_t i );
|
2009-01-02 17:01:55 +00:00
|
|
|
|
2011-03-22 15:19:54 +00:00
|
|
|
bool tr_cpFileIsComplete( const tr_completion * cp, tr_file_index_t );
|
2009-01-12 21:59:53 +00:00
|
|
|
|
2009-01-02 17:01:55 +00:00
|
|
|
/**
|
|
|
|
*** Blocks
|
|
|
|
**/
|
|
|
|
|
2011-03-22 15:19:54 +00:00
|
|
|
static inline bool
|
2011-02-23 03:54:04 +00:00
|
|
|
tr_cpBlockIsComplete( const tr_completion * cp, tr_block_index_t i )
|
2009-04-11 03:24:36 +00:00
|
|
|
{
|
2011-02-23 03:54:04 +00:00
|
|
|
return tr_bitsetHas( &cp->blockBitset, i );
|
2009-04-11 03:24:36 +00:00
|
|
|
}
|
|
|
|
|
2011-02-23 03:54:04 +00:00
|
|
|
void tr_cpBlockAdd( tr_completion * cp, tr_block_index_t i );
|
2008-10-02 23:37:58 +00:00
|
|
|
|
2011-03-22 15:19:54 +00:00
|
|
|
bool tr_cpBlockBitsetInit( tr_completion * cp, const tr_bitset * blocks );
|
2010-03-15 23:29:56 +00:00
|
|
|
|
2009-01-02 17:01:55 +00:00
|
|
|
/***
|
|
|
|
****
|
|
|
|
***/
|
2007-06-18 03:40:41 +00:00
|
|
|
|
2011-02-23 03:54:04 +00:00
|
|
|
static inline const tr_bitset *
|
|
|
|
tr_cpBlockBitset( const tr_completion * cp )
|
|
|
|
{
|
|
|
|
return &cp->blockBitset;
|
2009-01-02 17:01:55 +00:00
|
|
|
}
|
2008-09-23 19:11:04 +00:00
|
|
|
|
2011-02-23 03:54:04 +00:00
|
|
|
tr_bitfield * tr_cpCreatePieceBitfield( const tr_completion * cp );
|
2007-07-30 18:04:10 +00:00
|
|
|
|
2007-06-18 03:40:41 +00:00
|
|
|
#endif
|