2015-04-19 18:17:47 +03:00
|
|
|
/*
|
|
|
|
* Bittorrent Client using Qt and libtorrent.
|
|
|
|
* Copyright (C) 2015 Vladimir Golovnev <glassez@yandex.ru>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
|
|
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
|
|
* and distribute the linked executables. You must obey the GNU General Public
|
|
|
|
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
|
|
* modify file(s), you may extend this exception to your version of the file(s),
|
|
|
|
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
|
|
* exception statement from your version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "sessionstatus.h"
|
|
|
|
|
|
|
|
using namespace BitTorrent;
|
|
|
|
|
|
|
|
SessionStatus::SessionStatus(const libtorrent::session_status &nativeStatus)
|
|
|
|
: m_nativeStatus(nativeStatus)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SessionStatus::hasIncomingConnections() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.has_incoming_connections;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SessionStatus::payloadDownloadRate() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.payload_download_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SessionStatus::payloadUploadRate() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.payload_upload_rate;
|
|
|
|
}
|
|
|
|
|
2014-08-25 15:58:48 +04:00
|
|
|
int SessionStatus::downloadRate() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.download_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SessionStatus::uploadRate() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.upload_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SessionStatus::ipOverheadDownloadRate() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.ip_overhead_download_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SessionStatus::ipOverheadUploadRate() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.ip_overhead_upload_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SessionStatus::dhtDownloadRate() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.dht_download_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SessionStatus::dhtUploadRate() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.dht_upload_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SessionStatus::trackerDownloadRate() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.tracker_download_rate;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SessionStatus::trackerUploadRate() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.tracker_upload_rate;
|
|
|
|
}
|
|
|
|
|
2015-04-19 18:17:47 +03:00
|
|
|
qlonglong SessionStatus::totalDownload() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.total_download;
|
|
|
|
}
|
|
|
|
|
|
|
|
qlonglong SessionStatus::totalUpload() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.total_upload;
|
|
|
|
}
|
|
|
|
|
|
|
|
qlonglong SessionStatus::totalPayloadDownload() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.total_payload_download;
|
|
|
|
}
|
|
|
|
|
|
|
|
qlonglong SessionStatus::totalPayloadUpload() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.total_payload_upload;
|
|
|
|
}
|
|
|
|
|
|
|
|
qlonglong SessionStatus::totalWasted() const
|
|
|
|
{
|
|
|
|
return (m_nativeStatus.total_redundant_bytes + m_nativeStatus.total_failed_bytes);
|
|
|
|
}
|
|
|
|
|
|
|
|
int SessionStatus::diskReadQueue() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.disk_read_queue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SessionStatus::diskWriteQueue() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.disk_write_queue;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SessionStatus::dhtNodes() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.dht_nodes;
|
|
|
|
}
|
|
|
|
|
|
|
|
int SessionStatus::peersCount() const
|
|
|
|
{
|
|
|
|
return m_nativeStatus.num_peers;
|
|
|
|
}
|