Simplify TrackerEntry::status() logic

This commit is contained in:
Chocobo1 2020-02-14 19:49:53 +08:00
parent 04132f6266
commit e825473289
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
2 changed files with 17 additions and 35 deletions

View file

@ -52,24 +52,6 @@ QString TrackerEntry::url() const
return QString::fromStdString(nativeEntry().url);
}
bool TrackerEntry::isWorking() const
{
// lt::announce_entry::is_working() returns
// true when the tracker hasn't been tried yet.
#if (LIBTORRENT_VERSION_NUM < 10200)
return nativeEntry().verified && nativeEntry().is_working();
#else
if (!nativeEntry().verified)
return false;
const auto &endpoints = nativeEntry().endpoints;
return std::any_of(endpoints.begin(), endpoints.end()
, [](const lt::announce_endpoint &endpoint)
{
return endpoint.is_working();
});
#endif
}
int TrackerEntry::tier() const
{
return nativeEntry().tier;
@ -77,35 +59,36 @@ int TrackerEntry::tier() const
TrackerEntry::Status TrackerEntry::status() const
{
if (isWorking())
return Working;
#if (LIBTORRENT_VERSION_NUM < 10200)
if ((nativeEntry().fails == 0) && nativeEntry().updating)
if (nativeEntry().fails > 0)
return NotWorking;
if (nativeEntry().updating)
return Updating;
if (nativeEntry().fails == 0)
return NotContacted;
#else
const auto &endpoints = nativeEntry().endpoints;
const bool allFailed = std::all_of(endpoints.begin(), endpoints.end()
, [](const lt::announce_endpoint &endpoint)
const bool allFailed = !endpoints.empty() && std::all_of(endpoints.begin(), endpoints.end()
, [](const lt::announce_endpoint &endpoint)
{
return (endpoint.fails > 0);
});
const bool updating = std::any_of(endpoints.begin(), endpoints.end()
, [](const lt::announce_endpoint &endpoint)
if (allFailed)
return NotWorking;
const bool isUpdating = std::any_of(endpoints.begin(), endpoints.end()
, [](const lt::announce_endpoint &endpoint)
{
return endpoint.updating;
});
if (!allFailed && updating)
if (isUpdating)
return Updating;
if (!allFailed)
return NotContacted;
#endif
return NotWorking;
if (!nativeEntry().verified)
return NotContacted;
return Working;
}
void TrackerEntry::setTier(const int value)

View file

@ -55,7 +55,6 @@ namespace BitTorrent
TrackerEntry &operator=(const TrackerEntry &other) = default;
QString url() const;
bool isWorking() const;
Status status() const;
int tier() const;