2003-10-23 01:00:57 +02:00
|
|
|
/*
|
|
|
|
|
|
|
|
Copyright (c) 2003, Arvid Norberg
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef TORRENT_STAT_HPP_INCLUDED
|
|
|
|
#define TORRENT_STAT_HPP_INCLUDED
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace libtorrent
|
|
|
|
{
|
|
|
|
|
|
|
|
class stat
|
|
|
|
{
|
|
|
|
enum { history = 5 };
|
|
|
|
public:
|
|
|
|
|
|
|
|
stat()
|
|
|
|
: m_downloaded(0)
|
|
|
|
, m_uploaded(0)
|
2003-12-07 06:53:04 +01:00
|
|
|
, m_downloaded_protocol(0)
|
|
|
|
, m_uploaded_protocol(0)
|
2003-10-23 01:00:57 +02:00
|
|
|
, m_total_download(0)
|
|
|
|
, m_total_upload(0)
|
2003-12-07 06:53:04 +01:00
|
|
|
, m_total_download_protocol(0)
|
|
|
|
, m_total_upload_protocol(0)
|
2003-10-23 01:00:57 +02:00
|
|
|
, m_peak_downloaded_per_second(0)
|
|
|
|
, m_peak_uploaded_per_second(0)
|
2003-10-25 03:31:06 +02:00
|
|
|
, m_mean_download_per_second(0)
|
|
|
|
, m_mean_upload_per_second(0)
|
2003-10-23 01:00:57 +02:00
|
|
|
{
|
|
|
|
std::fill(m_download_per_second_history, m_download_per_second_history+history, 0);
|
|
|
|
std::fill(m_upload_per_second_history, m_upload_per_second_history+history, 0);
|
|
|
|
}
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
void operator+=(const stat& s)
|
|
|
|
{
|
|
|
|
m_downloaded += s.m_downloaded;
|
|
|
|
m_total_download += s.m_downloaded;
|
|
|
|
m_downloaded_protocol += s.m_downloaded_protocol;
|
|
|
|
m_total_download_protocol += s.m_downloaded_protocol;
|
|
|
|
|
|
|
|
m_uploaded += s.m_uploaded;
|
|
|
|
m_total_upload += s.m_uploaded;
|
|
|
|
m_uploaded_protocol += s.m_uploaded_protocol;
|
|
|
|
m_total_upload_protocol += s.m_uploaded_protocol;
|
|
|
|
}
|
|
|
|
|
|
|
|
void received_bytes(int bytes_payload, int bytes_protocol)
|
|
|
|
{
|
|
|
|
m_downloaded += bytes_payload;
|
|
|
|
m_total_download += bytes_payload;
|
|
|
|
|
|
|
|
m_downloaded_protocol += bytes_protocol;
|
|
|
|
m_total_download_protocol += bytes_protocol;
|
|
|
|
}
|
|
|
|
void sent_bytes(int bytes_payload, int bytes_protocol)
|
|
|
|
{
|
|
|
|
m_uploaded += bytes_payload;
|
|
|
|
m_total_upload += bytes_payload;
|
|
|
|
|
|
|
|
m_uploaded_protocol += bytes_protocol;
|
|
|
|
m_total_upload_protocol += bytes_protocol;
|
|
|
|
}
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
// should be called once every second
|
|
|
|
void second_tick();
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
// only counts the payload data!
|
2003-10-23 01:00:57 +02:00
|
|
|
float upload_rate() const { return m_mean_upload_per_second; }
|
|
|
|
float download_rate() const { return m_mean_download_per_second; }
|
|
|
|
|
|
|
|
float down_peak() const { return m_peak_downloaded_per_second; }
|
|
|
|
float up_peak() const { return m_peak_uploaded_per_second; }
|
|
|
|
|
|
|
|
unsigned int total_upload() const { return m_total_upload; }
|
2003-10-30 00:28:09 +01:00
|
|
|
unsigned int total_download() const { return m_total_download; }
|
2003-10-23 01:00:57 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
// history of download/upload speeds a few seconds back
|
|
|
|
unsigned int m_download_per_second_history[history];
|
|
|
|
unsigned int m_upload_per_second_history[history];
|
|
|
|
|
|
|
|
// the accumulators we are adding the downloads/upploads
|
2003-12-07 06:53:04 +01:00
|
|
|
// to this second. This only counts the actual payload
|
|
|
|
// and ignores the bytes sent as protocol chatter.
|
2003-10-23 01:00:57 +02:00
|
|
|
unsigned int m_downloaded;
|
|
|
|
unsigned int m_uploaded;
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
// the accumulators we are adding the downloads/upploads
|
|
|
|
// to this second. This only counts the protocol
|
|
|
|
// chatter and ignores the actual payload
|
|
|
|
unsigned int m_downloaded_protocol;
|
|
|
|
unsigned int m_uploaded_protocol;
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
// total download/upload counters
|
2003-12-07 06:53:04 +01:00
|
|
|
// only counting payload data
|
2003-10-23 01:00:57 +02:00
|
|
|
unsigned int m_total_download;
|
|
|
|
unsigned int m_total_upload;
|
|
|
|
|
2003-12-07 06:53:04 +01:00
|
|
|
// total download/upload counters
|
|
|
|
// only counting protocol chatter
|
|
|
|
unsigned int m_total_download_protocol;
|
|
|
|
unsigned int m_total_upload_protocol;
|
|
|
|
|
2003-10-23 01:00:57 +02:00
|
|
|
// peak mean download/upload rates
|
|
|
|
unsigned int m_peak_downloaded_per_second;
|
|
|
|
unsigned int m_peak_uploaded_per_second;
|
|
|
|
|
|
|
|
// current mean download/upload rates
|
|
|
|
unsigned int m_mean_download_per_second;
|
|
|
|
unsigned int m_mean_upload_per_second;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TORRENT_STAT_HPP_INCLUDED
|