|
|
|
@ -97,9 +97,11 @@ namespace
@@ -97,9 +97,11 @@ namespace
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
#if (LIBTORRENT_VERSION_NUM >= 20000) |
|
|
|
|
TrackerEntry fromNativeAnnouncerEntry(const lt::announce_entry &nativeEntry, const lt::info_hash_t &hashes) |
|
|
|
|
TrackerEntry fromNativeAnnouncerEntry(const lt::announce_entry &nativeEntry |
|
|
|
|
, const lt::info_hash_t &hashes, const QMap<lt::tcp::endpoint, int> &trackerPeerCounts) |
|
|
|
|
#else |
|
|
|
|
TrackerEntry fromNativeAnnouncerEntry(const lt::announce_entry &nativeEntry) |
|
|
|
|
TrackerEntry fromNativeAnnouncerEntry(const lt::announce_entry &nativeEntry |
|
|
|
|
, const QMap<lt::tcp::endpoint, int> &trackerPeerCounts) |
|
|
|
|
#endif |
|
|
|
|
{ |
|
|
|
|
TrackerEntry trackerEntry {QString::fromStdString(nativeEntry.url), nativeEntry.tier}; |
|
|
|
@ -107,6 +109,8 @@ namespace
@@ -107,6 +109,8 @@ namespace
|
|
|
|
|
int numUpdating = 0; |
|
|
|
|
int numWorking = 0; |
|
|
|
|
int numNotWorking = 0; |
|
|
|
|
QString firstTrackerMessage; |
|
|
|
|
QString firstErrorMessage; |
|
|
|
|
#if (LIBTORRENT_VERSION_NUM >= 20000) |
|
|
|
|
const int numEndpoints = nativeEntry.endpoints.size() * ((hashes.has_v1() && hashes.has_v2()) ? 2 : 1); |
|
|
|
|
trackerEntry.endpoints.reserve(numEndpoints); |
|
|
|
@ -120,9 +124,11 @@ namespace
@@ -120,9 +124,11 @@ namespace
|
|
|
|
|
|
|
|
|
|
TrackerEntry::EndpointStats trackerEndpoint; |
|
|
|
|
trackerEndpoint.protocolVersion = (protocolVersion == lt::protocol_version::V1) ? 1 : 2; |
|
|
|
|
trackerEndpoint.numPeers = trackerPeerCounts.value(endpoint.local_endpoint, -1); |
|
|
|
|
trackerEndpoint.numSeeds = infoHash.scrape_complete; |
|
|
|
|
trackerEndpoint.numLeeches = infoHash.scrape_incomplete; |
|
|
|
|
trackerEndpoint.numDownloaded = infoHash.scrape_downloaded; |
|
|
|
|
|
|
|
|
|
if (infoHash.updating) |
|
|
|
|
{ |
|
|
|
|
trackerEndpoint.status = TrackerEntry::Updating; |
|
|
|
@ -142,11 +148,21 @@ namespace
@@ -142,11 +148,21 @@ namespace
|
|
|
|
|
{ |
|
|
|
|
trackerEndpoint.status = TrackerEntry::NotContacted; |
|
|
|
|
} |
|
|
|
|
trackerEntry.endpoints.append(trackerEndpoint); |
|
|
|
|
|
|
|
|
|
trackerEntry.numSeeds = std::max(trackerEntry.numSeeds, infoHash.scrape_complete); |
|
|
|
|
trackerEntry.numLeeches = std::max(trackerEntry.numLeeches, infoHash.scrape_incomplete); |
|
|
|
|
trackerEntry.numDownloaded = std::max(trackerEntry.numDownloaded, infoHash.scrape_downloaded); |
|
|
|
|
const QString trackerMessage = QString::fromStdString(infoHash.message); |
|
|
|
|
const QString errorMessage = QString::fromLocal8Bit(infoHash.last_error.message().c_str()); |
|
|
|
|
trackerEndpoint.message = (!trackerMessage.isEmpty() ? trackerMessage : errorMessage); |
|
|
|
|
|
|
|
|
|
trackerEntry.endpoints.append(trackerEndpoint); |
|
|
|
|
trackerEntry.numPeers = std::max(trackerEntry.numPeers, trackerEndpoint.numPeers); |
|
|
|
|
trackerEntry.numSeeds = std::max(trackerEntry.numSeeds, trackerEndpoint.numSeeds); |
|
|
|
|
trackerEntry.numLeeches = std::max(trackerEntry.numLeeches, trackerEndpoint.numLeeches); |
|
|
|
|
trackerEntry.numDownloaded = std::max(trackerEntry.numDownloaded, trackerEndpoint.numDownloaded); |
|
|
|
|
|
|
|
|
|
if (firstTrackerMessage.isEmpty()) |
|
|
|
|
firstTrackerMessage = trackerMessage; |
|
|
|
|
if (firstErrorMessage.isEmpty()) |
|
|
|
|
firstErrorMessage = errorMessage; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -156,9 +172,11 @@ namespace
@@ -156,9 +172,11 @@ namespace
|
|
|
|
|
for (const lt::announce_endpoint &endpoint : nativeEntry.endpoints) |
|
|
|
|
{ |
|
|
|
|
TrackerEntry::EndpointStats trackerEndpoint; |
|
|
|
|
trackerEndpoint.numPeers = trackerPeerCounts.value(endpoint.local_endpoint, -1); |
|
|
|
|
trackerEndpoint.numSeeds = endpoint.scrape_complete; |
|
|
|
|
trackerEndpoint.numLeeches = endpoint.scrape_incomplete; |
|
|
|
|
trackerEndpoint.numDownloaded = endpoint.scrape_downloaded; |
|
|
|
|
|
|
|
|
|
if (endpoint.updating) |
|
|
|
|
{ |
|
|
|
|
trackerEndpoint.status = TrackerEntry::Updating; |
|
|
|
@ -178,22 +196,40 @@ namespace
@@ -178,22 +196,40 @@ namespace
|
|
|
|
|
{ |
|
|
|
|
trackerEndpoint.status = TrackerEntry::NotContacted; |
|
|
|
|
} |
|
|
|
|
trackerEntry.endpoints.append(trackerEndpoint); |
|
|
|
|
|
|
|
|
|
trackerEntry.numSeeds = std::max(trackerEntry.numSeeds, endpoint.scrape_complete); |
|
|
|
|
trackerEntry.numLeeches = std::max(trackerEntry.numLeeches, endpoint.scrape_incomplete); |
|
|
|
|
trackerEntry.numDownloaded = std::max(trackerEntry.numDownloaded, endpoint.scrape_downloaded); |
|
|
|
|
const QString trackerMessage = QString::fromStdString(endpoint.message); |
|
|
|
|
const QString errorMessage = QString::fromLocal8Bit(endpoint.last_error.message().c_str()); |
|
|
|
|
trackerEndpoint.message = (!trackerMessage.isEmpty() ? trackerMessage : errorMessage); |
|
|
|
|
|
|
|
|
|
trackerEntry.endpoints.append(trackerEndpoint); |
|
|
|
|
trackerEntry.numPeers = std::max(trackerEntry.numPeers, trackerEndpoint.numPeers); |
|
|
|
|
trackerEntry.numSeeds = std::max(trackerEntry.numSeeds, trackerEndpoint.numSeeds); |
|
|
|
|
trackerEntry.numLeeches = std::max(trackerEntry.numLeeches, trackerEndpoint.numLeeches); |
|
|
|
|
trackerEntry.numDownloaded = std::max(trackerEntry.numDownloaded, trackerEndpoint.numDownloaded); |
|
|
|
|
|
|
|
|
|
if (firstTrackerMessage.isEmpty()) |
|
|
|
|
firstTrackerMessage = trackerMessage; |
|
|
|
|
if (firstErrorMessage.isEmpty()) |
|
|
|
|
firstErrorMessage = errorMessage; |
|
|
|
|
} |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
if (numEndpoints > 0) |
|
|
|
|
{ |
|
|
|
|
if (numUpdating > 0) |
|
|
|
|
{ |
|
|
|
|
trackerEntry.status = TrackerEntry::Updating; |
|
|
|
|
} |
|
|
|
|
else if (numWorking > 0) |
|
|
|
|
{ |
|
|
|
|
trackerEntry.status = TrackerEntry::Working; |
|
|
|
|
trackerEntry.message = firstTrackerMessage; |
|
|
|
|
} |
|
|
|
|
else if (numNotWorking == numEndpoints) |
|
|
|
|
{ |
|
|
|
|
trackerEntry.status = TrackerEntry::NotWorking; |
|
|
|
|
trackerEntry.message = (!firstTrackerMessage.isEmpty() ? firstTrackerMessage : firstErrorMessage); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return trackerEntry; |
|
|
|
@ -440,20 +476,18 @@ QVector<TrackerEntry> TorrentImpl::trackers() const
@@ -440,20 +476,18 @@ QVector<TrackerEntry> TorrentImpl::trackers() const
|
|
|
|
|
entries.reserve(nativeTrackers.size()); |
|
|
|
|
|
|
|
|
|
for (const lt::announce_entry &tracker : nativeTrackers) |
|
|
|
|
{ |
|
|
|
|
const QString trackerURL = QString::fromStdString(tracker.url); |
|
|
|
|
#if (LIBTORRENT_VERSION_NUM >= 20000) |
|
|
|
|
entries << fromNativeAnnouncerEntry(tracker, m_nativeHandle.info_hashes()); |
|
|
|
|
entries << fromNativeAnnouncerEntry(tracker, m_nativeHandle.info_hashes(), m_trackerPeerCounts[trackerURL]); |
|
|
|
|
#else |
|
|
|
|
entries << fromNativeAnnouncerEntry(tracker); |
|
|
|
|
entries << fromNativeAnnouncerEntry(tracker, m_trackerPeerCounts[trackerURL]); |
|
|
|
|
#endif |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return entries; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
QHash<QString, TrackerInfo> TorrentImpl::trackerInfos() const |
|
|
|
|
{ |
|
|
|
|
return m_trackerInfos; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void TorrentImpl::addTrackers(const QVector<TrackerEntry> &trackers) |
|
|
|
|
{ |
|
|
|
|
QSet<TrackerEntry> currentTrackers; |
|
|
|
@ -1623,10 +1657,8 @@ void TorrentImpl::handleMoveStorageJobFinished(const bool hasOutstandingJob)
@@ -1623,10 +1657,8 @@ void TorrentImpl::handleMoveStorageJobFinished(const bool hasOutstandingJob)
|
|
|
|
|
|
|
|
|
|
void TorrentImpl::handleTrackerReplyAlert(const lt::tracker_reply_alert *p) |
|
|
|
|
{ |
|
|
|
|
const QString trackerUrl(p->tracker_url()); |
|
|
|
|
qDebug("Received a tracker reply from %s (Num_peers = %d)", qUtf8Printable(trackerUrl), p->num_peers); |
|
|
|
|
// Connection was successful now. Remove possible old errors
|
|
|
|
|
m_trackerInfos[trackerUrl] = {{}, p->num_peers}; |
|
|
|
|
const QString trackerUrl = p->tracker_url(); |
|
|
|
|
m_trackerPeerCounts[trackerUrl][p->local_endpoint] = p->num_peers; |
|
|
|
|
|
|
|
|
|
m_session->handleTorrentTrackerReply(this, trackerUrl); |
|
|
|
|
} |
|
|
|
@ -1634,20 +1666,12 @@ void TorrentImpl::handleTrackerReplyAlert(const lt::tracker_reply_alert *p)
@@ -1634,20 +1666,12 @@ void TorrentImpl::handleTrackerReplyAlert(const lt::tracker_reply_alert *p)
|
|
|
|
|
void TorrentImpl::handleTrackerWarningAlert(const lt::tracker_warning_alert *p) |
|
|
|
|
{ |
|
|
|
|
const QString trackerUrl = p->tracker_url(); |
|
|
|
|
const QString message = p->warning_message(); |
|
|
|
|
|
|
|
|
|
// Connection was successful now but there is a warning message
|
|
|
|
|
m_trackerInfos[trackerUrl].lastMessage = message; // Store warning message
|
|
|
|
|
|
|
|
|
|
m_session->handleTorrentTrackerWarning(this, trackerUrl); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
void TorrentImpl::handleTrackerErrorAlert(const lt::tracker_error_alert *p) |
|
|
|
|
{ |
|
|
|
|
const QString trackerUrl = p->tracker_url(); |
|
|
|
|
const QString message = p->error_message(); |
|
|
|
|
|
|
|
|
|
m_trackerInfos[trackerUrl].lastMessage = message; |
|
|
|
|
|
|
|
|
|
// Starting with libtorrent 1.2.x each tracker has multiple local endpoints from which
|
|
|
|
|
// an announce is attempted. Some endpoints might succeed while others might fail.
|
|
|
|
|