Merge pull request #469 from Gelmir/ul_eta

ETA calculation for seed_only torrents; ETA column sorting
This commit is contained in:
Christophe Dumez 2013-03-10 12:53:26 -07:00
commit c36b2774ed
2 changed files with 55 additions and 20 deletions

View file

@ -172,7 +172,7 @@ QVariant TorrentModelItem::data(int column, int role) const
return m_torrent.upload_payload_rate(); return m_torrent.upload_payload_rate();
case TR_ETA: { case TR_ETA: {
// XXX: Is this correct? // XXX: Is this correct?
if (m_torrent.is_seed() || m_torrent.is_paused() || m_torrent.is_queued()) return MAX_ETA; if (m_torrent.is_paused() || m_torrent.is_queued()) return MAX_ETA;
return QBtSession::instance()->getETA(m_torrent.hash()); return QBtSession::instance()->getETA(m_torrent.hash());
} }
case TR_RATIO: case TR_RATIO:

View file

@ -38,19 +38,25 @@
using namespace libtorrent; using namespace libtorrent;
template<class T> struct Sample {
Sample(const T down = 0, const T up = 0) : download(down), upload(up) {}
T download;
T upload;
};
class SpeedSample { class SpeedSample {
public: public:
SpeedSample() {} SpeedSample() {}
void addSample(int s); void addSample(int speedDL, int speedUL);
qreal average() const; Sample<qreal> average() const;
void clear(); void clear();
private: private:
static const int max_samples = 30; static const int max_samples = 30;
private: private:
QList<int> m_speedSamples; QList<Sample<int> > m_speedSamples;
}; };
TorrentSpeedMonitor::TorrentSpeedMonitor(QBtSession* session) : TorrentSpeedMonitor::TorrentSpeedMonitor(QBtSession* session) :
@ -76,21 +82,28 @@ void TorrentSpeedMonitor::run()
} while(!m_abort); } while(!m_abort);
} }
void SpeedSample::addSample(int s) void SpeedSample::addSample(int speedDL, int speedUL)
{ {
m_speedSamples << s; m_speedSamples << Sample<int>(speedDL, speedUL);
if (m_speedSamples.size() > max_samples) if (m_speedSamples.size() > max_samples)
m_speedSamples.removeFirst(); m_speedSamples.removeFirst();
} }
qreal SpeedSample::average() const Sample<qreal> SpeedSample::average() const
{ {
if (m_speedSamples.empty()) return 0; if (m_speedSamples.empty())
qlonglong sum = 0; return Sample<qreal>();
foreach (int s, m_speedSamples) {
sum += s; qlonglong sumDL = 0;
qlonglong sumUL = 0;
foreach (const Sample<int>& s, m_speedSamples) {
sumDL += s.download;
sumUL += s.upload;
} }
return sum/static_cast<float>(m_speedSamples.size());
const qreal numSamples = m_speedSamples.size();
return Sample<qreal>(sumDL/numSamples, sumUL/numSamples);
} }
void SpeedSample::clear() void SpeedSample::clear()
@ -113,10 +126,31 @@ qlonglong TorrentSpeedMonitor::getETA(const QString &hash) const
{ {
QMutexLocker locker(&m_mutex); QMutexLocker locker(&m_mutex);
QTorrentHandle h = m_session->getTorrentHandle(hash); QTorrentHandle h = m_session->getTorrentHandle(hash);
if (h.is_paused() || !m_samples.contains(hash)) return -1; if (h.is_paused() || !m_samples.contains(hash))
const qreal speed_average = m_samples.value(hash).average(); return MAX_ETA;
if (speed_average == 0) return -1;
return (h.total_wanted() - h.total_done()) / speed_average; const Sample<qreal> speed_average = m_samples[hash].average();
if (h.is_seed()) {
if (!speed_average.upload)
return MAX_ETA;
bool _unused;
qreal max_ratio = m_session->getMaxRatioPerTorrent(hash, &_unused);
if (max_ratio < 0)
return MAX_ETA;
libtorrent::size_type realDL = h.all_time_download();
if (realDL <= 0)
realDL = h.total_wanted();
return (realDL * max_ratio - h.all_time_upload()) / speed_average.upload;
}
if (!speed_average.download)
return MAX_ETA;
return (h.total_wanted() - h.total_done()) / speed_average.download;
} }
void TorrentSpeedMonitor::getSamples() void TorrentSpeedMonitor::getSamples()
@ -129,12 +163,13 @@ void TorrentSpeedMonitor::getSamples()
try { try {
#if LIBTORRENT_VERSION_MINOR > 15 #if LIBTORRENT_VERSION_MINOR > 15
torrent_status st = it->status(0x0); torrent_status st = it->status(0x0);
if (!st.paused) if (!st.paused) {
m_samples[misc::toQString(it->info_hash())].addSample(st.download_payload_rate);
#else #else
if (!it->is_paused()) if (!it->is_paused()) {
m_samples[misc::toQString(it->info_hash())].addSample(it->status().download_payload_rate); torrent_status st = it->status();
#endif #endif
m_samples[misc::toQString(it->info_hash())].addSample(st.download_payload_rate, st.upload_payload_rate);
}
} catch(invalid_handle&) {} } catch(invalid_handle&) {}
} }
} }