Browse Source

Use signed integer type for counters

adaptive-webui-19844
Chocobo1 3 years ago
parent
commit
2854630b1c
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 8
      src/base/bittorrent/cachestatus.h
  2. 8
      src/base/bittorrent/session.cpp
  3. 4
      src/base/bittorrent/session.h
  4. 50
      src/base/bittorrent/sessionstatus.h
  5. 12
      src/base/bittorrent/statistics.cpp
  6. 17
      src/base/bittorrent/statistics.h
  7. 4
      src/gui/statsdialog.cpp
  8. 4
      src/webui/api/synccontroller.cpp

8
src/base/bittorrent/cachestatus.h

@ -34,10 +34,10 @@ namespace BitTorrent @@ -34,10 +34,10 @@ namespace BitTorrent
{
struct CacheStatus
{
quint64 totalUsedBuffers = 0;
quint64 jobQueueLength = 0;
quint64 averageJobTime = 0;
quint64 queuedBytes = 0;
qint64 totalUsedBuffers = 0;
qint64 jobQueueLength = 0;
qint64 averageJobTime = 0;
qint64 queuedBytes = 0;
qreal readRatio = 0; // TODO: remove when LIBTORRENT_VERSION_NUM >= 20000
};
}

8
src/base/bittorrent/session.cpp

@ -4702,12 +4702,12 @@ void Session::startUpTorrents() @@ -4702,12 +4702,12 @@ void Session::startUpTorrents()
}
}
quint64 Session::getAlltimeDL() const
qint64 Session::getAlltimeDL() const
{
return m_statistics->getAlltimeDL();
}
quint64 Session::getAlltimeUL() const
qint64 Session::getAlltimeUL() const
{
return m_statistics->getAlltimeUL();
}
@ -5201,10 +5201,10 @@ void Session::handleSessionStatsAlert(const lt::session_stats_alert *p) @@ -5201,10 +5201,10 @@ void Session::handleSessionStatsAlert(const lt::session_stats_alert *p)
const int64_t dhtDownload = stats[m_metricIndices.dht.dhtBytesIn];
const int64_t dhtUpload = stats[m_metricIndices.dht.dhtBytesOut];
auto calcRate = [interval](const quint64 previous, const quint64 current)
const auto calcRate = [interval](const qint64 previous, const qint64 current) -> qint64
{
Q_ASSERT(current >= previous);
return static_cast<quint64>((current - previous) / interval);
return ((current - previous) / interval);
};
m_status.payloadDownloadRate = calcRate(m_status.totalPayloadDownload, totalPayloadDownload);

4
src/base/bittorrent/session.h

@ -469,8 +469,8 @@ namespace BitTorrent @@ -469,8 +469,8 @@ namespace BitTorrent
bool hasRunningSeed() const;
const SessionStatus &status() const;
const CacheStatus &cacheStatus() const;
quint64 getAlltimeDL() const;
quint64 getAlltimeUL() const;
qint64 getAlltimeDL() const;
qint64 getAlltimeUL() const;
bool isListening() const;
MaxRatioAction maxRatioAction() const;

50
src/base/bittorrent/sessionstatus.h

@ -39,37 +39,37 @@ namespace BitTorrent @@ -39,37 +39,37 @@ namespace BitTorrent
// Current download rate for the BT
// session. Payload means that it only take into
// account "useful" part of the rate
quint64 payloadDownloadRate = 0;
qint64 payloadDownloadRate = 0;
// Current upload rate for the BT
// session. Payload means that it only take into
// account "useful" part of the rate
quint64 payloadUploadRate = 0;
qint64 payloadUploadRate = 0;
// Additional download/upload rates
quint64 uploadRate = 0;
quint64 downloadRate = 0;
quint64 ipOverheadUploadRate = 0;
quint64 ipOverheadDownloadRate = 0;
quint64 dhtUploadRate = 0;
quint64 dhtDownloadRate = 0;
quint64 trackerUploadRate = 0;
quint64 trackerDownloadRate = 0;
qint64 uploadRate = 0;
qint64 downloadRate = 0;
qint64 ipOverheadUploadRate = 0;
qint64 ipOverheadDownloadRate = 0;
qint64 dhtUploadRate = 0;
qint64 dhtDownloadRate = 0;
qint64 trackerUploadRate = 0;
qint64 trackerDownloadRate = 0;
quint64 totalDownload = 0;
quint64 totalUpload = 0;
quint64 totalPayloadDownload = 0;
quint64 totalPayloadUpload = 0;
quint64 ipOverheadUpload = 0;
quint64 ipOverheadDownload = 0;
quint64 dhtUpload = 0;
quint64 dhtDownload = 0;
quint64 trackerUpload = 0;
quint64 trackerDownload = 0;
quint64 totalWasted = 0;
quint64 diskReadQueue = 0;
quint64 diskWriteQueue = 0;
quint64 dhtNodes = 0;
quint64 peersCount = 0;
qint64 totalDownload = 0;
qint64 totalUpload = 0;
qint64 totalPayloadDownload = 0;
qint64 totalPayloadUpload = 0;
qint64 ipOverheadUpload = 0;
qint64 ipOverheadDownload = 0;
qint64 dhtUpload = 0;
qint64 dhtDownload = 0;
qint64 trackerUpload = 0;
qint64 trackerDownload = 0;
qint64 totalWasted = 0;
qint64 diskReadQueue = 0;
qint64 diskWriteQueue = 0;
qint64 dhtNodes = 0;
qint64 peersCount = 0;
};
}

12
src/base/bittorrent/statistics.cpp

@ -42,10 +42,6 @@ using namespace BitTorrent; @@ -42,10 +42,6 @@ using namespace BitTorrent;
Statistics::Statistics(Session *session)
: QObject(session)
, m_session(session)
, m_sessionUL(0)
, m_sessionDL(0)
, m_lastWrite(0)
, m_dirty(false)
{
load();
connect(&m_timer, &QTimer::timeout, this, &Statistics::gather);
@ -59,12 +55,12 @@ Statistics::~Statistics() @@ -59,12 +55,12 @@ Statistics::~Statistics()
save();
}
quint64 Statistics::getAlltimeDL() const
qint64 Statistics::getAlltimeDL() const
{
return m_alltimeDL + m_sessionDL;
}
quint64 Statistics::getAlltimeUL() const
qint64 Statistics::getAlltimeUL() const
{
return m_alltimeUL + m_sessionUL;
}
@ -95,8 +91,8 @@ void Statistics::save() const @@ -95,8 +91,8 @@ void Statistics::save() const
SettingsPtr s = Profile::instance()->applicationSettings(u"qBittorrent-data"_qs);
QVariantHash v;
v.insert(u"AlltimeDL"_qs, m_alltimeDL + m_sessionDL);
v.insert(u"AlltimeUL"_qs, m_alltimeUL + m_sessionUL);
v.insert(u"AlltimeDL"_qs, (m_alltimeDL + m_sessionDL));
v.insert(u"AlltimeUL"_qs, (m_alltimeUL + m_sessionUL));
s->setValue(u"Stats/AllStats"_qs, v);
m_dirty = false;
m_lastWrite = now;

17
src/base/bittorrent/statistics.h

@ -45,8 +45,8 @@ public: @@ -45,8 +45,8 @@ public:
explicit Statistics(BitTorrent::Session *session);
~Statistics();
quint64 getAlltimeDL() const;
quint64 getAlltimeUL() const;
qint64 getAlltimeDL() const;
qint64 getAlltimeUL() const;
private slots:
void gather();
@ -56,13 +56,12 @@ private: @@ -56,13 +56,12 @@ private:
void load();
BitTorrent::Session *m_session;
// Will overflow at 15.9 EiB
quint64 m_alltimeUL;
quint64 m_alltimeDL;
quint64 m_sessionUL;
quint64 m_sessionDL;
mutable qint64 m_lastWrite;
mutable bool m_dirty;
qint64 m_alltimeUL = 0;
qint64 m_alltimeDL = 0;
qint64 m_sessionUL = 0;
qint64 m_sessionDL = 0;
mutable qint64 m_lastWrite = 0;
mutable bool m_dirty = false;
QTimer m_timer;
};

4
src/gui/statsdialog.cpp

@ -76,8 +76,8 @@ void StatsDialog::update() @@ -76,8 +76,8 @@ void StatsDialog::update()
const BitTorrent::CacheStatus &cs = BitTorrent::Session::instance()->cacheStatus();
// All-time DL/UL
quint64 atd = BitTorrent::Session::instance()->getAlltimeDL();
quint64 atu = BitTorrent::Session::instance()->getAlltimeUL();
const qint64 atd = BitTorrent::Session::instance()->getAlltimeDL();
const qint64 atu = BitTorrent::Session::instance()->getAlltimeUL();
m_ui->labelAlltimeDL->setText(Utils::Misc::friendlyUnit(atd));
m_ui->labelAlltimeUL->setText(Utils::Misc::friendlyUnit(atu));
// Total waste (this session)

4
src/webui/api/synccontroller.cpp

@ -126,8 +126,8 @@ namespace @@ -126,8 +126,8 @@ namespace
map[KEY_TRANSFER_DLRATELIMIT] = session->downloadSpeedLimit();
map[KEY_TRANSFER_UPRATELIMIT] = session->uploadSpeedLimit();
const quint64 atd = session->getAlltimeDL();
const quint64 atu = session->getAlltimeUL();
const qint64 atd = session->getAlltimeDL();
const qint64 atu = session->getAlltimeUL();
map[KEY_TRANSFER_ALLTIME_DL] = atd;
map[KEY_TRANSFER_ALLTIME_UL] = atu;
map[KEY_TRANSFER_TOTAL_WASTE_SESSION] = sessionStatus.totalWasted;

Loading…
Cancel
Save