2010-03-08 04:29:58 +00:00
|
|
|
/*
|
2014-01-18 20:56:57 +00:00
|
|
|
* This file Copyright (C) 2010-2014 Mnemosyne LLC
|
2010-03-08 04:29:58 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2010-03-08 04:29:58 +00:00
|
|
|
*
|
2010-10-01 13:33:39 +00:00
|
|
|
* $Id$
|
2010-03-08 04:29:58 +00:00
|
|
|
*/
|
|
|
|
|
2010-11-16 15:17:34 +00:00
|
|
|
#include <assert.h>
|
2012-12-05 17:29:46 +00:00
|
|
|
#include <string.h> /* memset () */
|
2010-11-16 15:17:34 +00:00
|
|
|
|
2010-03-08 04:29:58 +00:00
|
|
|
#include "transmission.h"
|
|
|
|
#include "history.h"
|
|
|
|
#include "utils.h"
|
|
|
|
|
|
|
|
void
|
2012-12-05 17:29:46 +00:00
|
|
|
tr_historyAdd (tr_recentHistory * h, time_t now, unsigned int n)
|
2010-03-08 04:29:58 +00:00
|
|
|
{
|
2012-12-05 17:29:46 +00:00
|
|
|
if (h->slices[h->newest].date == now)
|
|
|
|
{
|
|
|
|
h->slices[h->newest].n += n;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (++h->newest == TR_RECENT_HISTORY_PERIOD_SEC)
|
|
|
|
h->newest = 0;
|
|
|
|
h->slices[h->newest].date = now;
|
|
|
|
h->slices[h->newest].n = n;
|
2010-03-08 04:29:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-06-30 06:03:55 +00:00
|
|
|
unsigned int
|
2012-12-05 17:29:46 +00:00
|
|
|
tr_historyGet (const tr_recentHistory * h, time_t now, unsigned int sec)
|
2010-03-08 04:29:58 +00:00
|
|
|
{
|
2012-12-05 17:29:46 +00:00
|
|
|
unsigned int n = 0;
|
|
|
|
const time_t cutoff = (now?now:tr_time ()) - sec;
|
|
|
|
int i = h->newest;
|
2010-03-08 04:29:58 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
for (;;)
|
2010-03-08 04:29:58 +00:00
|
|
|
{
|
2012-12-05 17:29:46 +00:00
|
|
|
if (h->slices[i].date <= cutoff)
|
|
|
|
break;
|
|
|
|
|
|
|
|
n += h->slices[i].n;
|
2010-03-08 04:29:58 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
if (--i == -1)
|
|
|
|
i = TR_RECENT_HISTORY_PERIOD_SEC - 1; /* circular history */
|
2010-03-08 04:29:58 +00:00
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
if (i == h->newest)
|
|
|
|
break; /* we've come all the way around */
|
2010-03-08 04:29:58 +00:00
|
|
|
}
|
|
|
|
|
2012-12-05 17:29:46 +00:00
|
|
|
return n;
|
2010-03-08 04:29:58 +00:00
|
|
|
}
|