Use user-defined literals for time units

This commit is contained in:
Tatsuhiro Tsujikawa 2015-06-21 15:17:00 +09:00
parent dd277b33af
commit 0b48bb1dbd
44 changed files with 108 additions and 88 deletions

View file

@ -237,8 +237,7 @@ bool AbstractCommand::execute()
if (req_ && fileEntry_->getLength() > 0 && if (req_ && fileEntry_->getLength() > 0 &&
e_->getRequestGroupMan()->getMaxOverallDownloadSpeedLimit() == 0 && e_->getRequestGroupMan()->getMaxOverallDownloadSpeedLimit() == 0 &&
requestGroup_->getMaxDownloadSpeedLimit() == 0 && requestGroup_->getMaxDownloadSpeedLimit() == 0 &&
serverStatTimer_.difference(global::wallclock()) >= serverStatTimer_.difference(global::wallclock()) >= 10_s) {
std::chrono::seconds(10)) {
serverStatTimer_ = global::wallclock(); serverStatTimer_ = global::wallclock();
std::vector<std::pair<size_t, std::string>> usedHosts; std::vector<std::pair<size_t, std::string>> usedHosts;
if (getOption()->getAsBool(PREF_SELECT_LEAST_USED_HOST)) { if (getOption()->getAsBool(PREF_SELECT_LEAST_USED_HOST)) {

View file

@ -119,8 +119,7 @@ bool AbstractHttpServerResponseCommand::execute()
afterSend(httpServer_, e_); afterSend(httpServer_, e_);
return true; return true;
} else { } else {
if (timeoutTimer_.difference(global::wallclock()) >= if (timeoutTimer_.difference(global::wallclock()) >= 30_s) {
std::chrono::seconds(30)) {
A2_LOG_INFO(fmt("CUID#%" PRId64 A2_LOG_INFO(fmt("CUID#%" PRId64
" - HttpServer: Timeout while trasmitting response.", " - HttpServer: Timeout while trasmitting response.",
getCuid())); getCuid()));

View file

@ -97,7 +97,7 @@ std::string AdaptiveURISelector::select
} }
namespace { namespace {
constexpr auto MAX_TIMEOUT = std::chrono::seconds(60); constexpr auto MAX_TIMEOUT = 60_s;
} // namespace } // namespace
void AdaptiveURISelector::mayRetryWithIncreasedTimeout(FileEntry* fileEntry) void AdaptiveURISelector::mayRetryWithIncreasedTimeout(FileEntry* fileEntry)

View file

@ -54,6 +54,6 @@ const std::string BtAnnounce::PEERS("peers");
const std::string BtAnnounce::PEERS6("peers6"); const std::string BtAnnounce::PEERS6("peers6");
constexpr std::chrono::seconds BtAnnounce::DEFAULT_ANNOUNCE_INTERVAL; constexpr std::chrono::minutes BtAnnounce::DEFAULT_ANNOUNCE_INTERVAL;
} // namespace aria2 } // namespace aria2

View file

@ -41,6 +41,7 @@
#include <memory> #include <memory>
#include "a2time.h" #include "a2time.h"
#include "a2functional.h"
namespace aria2 { namespace aria2 {
@ -138,7 +139,7 @@ public:
static const std::string PEERS6; static const std::string PEERS6;
constexpr static auto DEFAULT_ANNOUNCE_INTERVAL = std::chrono::seconds(120); constexpr static auto DEFAULT_ANNOUNCE_INTERVAL = 2_min;
}; };
} // namespace aria2 } // namespace aria2

View file

@ -56,9 +56,9 @@ BtLeecherStateChoke::PeerEntry::PeerEntry(const std::shared_ptr<Peer>& peer)
: peer_(peer), : peer_(peer),
downloadSpeed_(peer->calculateDownloadSpeed()), downloadSpeed_(peer->calculateDownloadSpeed()),
// peer must be interested to us and sent block in the last 30 seconds // peer must be interested to us and sent block in the last 30 seconds
regularUnchoker_(peer->peerInterested() && regularUnchoker_(
peer->getLastDownloadUpdate().difference( peer->peerInterested() &&
global::wallclock()) < std::chrono::seconds(30)) peer->getLastDownloadUpdate().difference(global::wallclock()) < 30_s)
{ {
} }

View file

@ -53,7 +53,7 @@ BtSeederStateChoke::BtSeederStateChoke()
BtSeederStateChoke::~BtSeederStateChoke() {} BtSeederStateChoke::~BtSeederStateChoke() {}
namespace { namespace {
constexpr auto TIME_FRAME = std::chrono::seconds(20); constexpr auto TIME_FRAME = 20_s;
} // namespace } // namespace
BtSeederStateChoke::PeerEntry::PeerEntry BtSeederStateChoke::PeerEntry::PeerEntry

View file

@ -126,8 +126,7 @@ void BtSetup::setup(std::vector<std::unique_ptr<Command>>& commands,
} }
{ {
auto c = make_unique<ActivePeerConnectionCommand>( auto c = make_unique<ActivePeerConnectionCommand>(
e->newCUID(), requestGroup, e, e->newCUID(), requestGroup, e, metadataGetMode ? 2_s : 10_s);
std::chrono::seconds(metadataGetMode ? 2 : 10));
c->setBtRuntime(btRuntime); c->setBtRuntime(btRuntime);
c->setPieceStorage(pieceStorage); c->setPieceStorage(pieceStorage);
c->setPeerStorage(peerStorage); c->setPeerStorage(peerStorage);

View file

@ -51,7 +51,7 @@ BtStopDownloadCommand::BtStopDownloadCommand
RequestGroup* requestGroup, RequestGroup* requestGroup,
DownloadEngine* e, DownloadEngine* e,
std::chrono::seconds timeout) std::chrono::seconds timeout)
: TimeBasedCommand(cuid, e, std::chrono::seconds(1)), : TimeBasedCommand(cuid, e, 1_s),
requestGroup_(requestGroup), requestGroup_(requestGroup),
timeout_(std::move(timeout)) timeout_(std::move(timeout))
{} {}

View file

@ -318,7 +318,7 @@ ConsoleStatCalc::calculateStat(const DownloadEngine* e)
} }
ColorizedStream o; ColorizedStream o;
if(e->getRequestGroupMan()->countRequestGroup() > 0) { if(e->getRequestGroupMan()->countRequestGroup() > 0) {
if((summaryInterval_ > std::chrono::seconds(0)) && if((summaryInterval_ > 0_s) &&
lastSummaryNotified_.difference(global::wallclock())+ lastSummaryNotified_.difference(global::wallclock())+
A2_DELTA_MILLIS >= summaryInterval_*1000) { A2_DELTA_MILLIS >= summaryInterval_*1000) {
lastSummaryNotified_ = global::wallclock(); lastSummaryNotified_ = global::wallclock();

View file

@ -37,6 +37,7 @@
#include "common.h" #include "common.h"
#include "TimerA2.h" #include "TimerA2.h"
#include "a2functional.h"
// Increment this if major improvements or bug fixes are made in DHT // Increment this if major improvements or bug fixes are made in DHT
// code. This is 2 bytes unsigned integer. // code. This is 2 bytes unsigned integer.
@ -48,21 +49,25 @@
#define DHT_TOKEN_LENGTH 4 #define DHT_TOKEN_LENGTH 4
namespace aria2 {
// See --dht-message-timeout option. // See --dht-message-timeout option.
constexpr auto DHT_MESSAGE_TIMEOUT = std::chrono::seconds(10); constexpr auto DHT_MESSAGE_TIMEOUT = 10_s;
constexpr auto DHT_NODE_CONTACT_INTERVAL = std::chrono::minutes(15); constexpr auto DHT_NODE_CONTACT_INTERVAL = 15_min;
constexpr auto DHT_BUCKET_REFRESH_INTERVAL = std::chrono::minutes(15); constexpr auto DHT_BUCKET_REFRESH_INTERVAL = 15_min;
constexpr auto DHT_BUCKET_REFRESH_CHECK_INTERVAL = std::chrono::minutes(5); constexpr auto DHT_BUCKET_REFRESH_CHECK_INTERVAL = 5_min;
constexpr auto DHT_PEER_ANNOUNCE_PURGE_INTERVAL = std::chrono::minutes(30); constexpr auto DHT_PEER_ANNOUNCE_PURGE_INTERVAL = 30_min;
constexpr auto DHT_PEER_ANNOUNCE_INTERVAL = std::chrono::minutes(15); constexpr auto DHT_PEER_ANNOUNCE_INTERVAL = 15_min;
constexpr auto DHT_PEER_ANNOUNCE_CHECK_INTERVAL = std::chrono::minutes(5); constexpr auto DHT_PEER_ANNOUNCE_CHECK_INTERVAL = 5_min;
constexpr auto DHT_TOKEN_UPDATE_INTERVAL = std::chrono::minutes(10); constexpr auto DHT_TOKEN_UPDATE_INTERVAL = 10_min;
} // namespace aria2
#endif // D_DHT_CONSTANTS_H #endif // D_DHT_CONSTANTS_H

View file

@ -55,13 +55,13 @@ namespace aria2 {
namespace { namespace {
constexpr auto GET_PEER_INTERVAL = std::chrono::minutes(15); constexpr auto GET_PEER_INTERVAL = 15_min;
// Interval when the size of peer list is low. // Interval when the size of peer list is low.
constexpr auto GET_PEER_INTERVAL_LOW = std::chrono::minutes(5); constexpr auto GET_PEER_INTERVAL_LOW = 5_min;
// Interval when the peer list is empty. // Interval when the peer list is empty.
constexpr auto GET_PEER_INTERVAL_ZERO = std::chrono::minutes(1); constexpr auto GET_PEER_INTERVAL_ZERO = 1_min;
// Interval for retry. // Interval for retry.
constexpr auto GET_PEER_INTERVAL_RETRY = std::chrono::seconds(5); constexpr auto GET_PEER_INTERVAL_RETRY = 5_s;
// Maximum retries. Try more than 5 to drop bad node. // Maximum retries. Try more than 5 to drop bad node.
const int MAX_RETRIES = 10; const int MAX_RETRIES = 10;

View file

@ -92,7 +92,7 @@ bool DHTMessageDispatcherImpl::sendMessage(DHTMessageEntry* entry)
// DHTTask(such as DHTAbstractNodeLookupTask) don't finish // DHTTask(such as DHTAbstractNodeLookupTask) don't finish
// forever. // forever.
if(!entry->message->isReply()) { if(!entry->message->isReply()) {
tracker_->addMessage(entry->message.get(), std::chrono::seconds(0), tracker_->addMessage(entry->message.get(), 0_s,
std::move(entry->callback)); std::move(entry->callback));
} }
} }

View file

@ -235,7 +235,7 @@ std::vector<std::unique_ptr<Command>> DHTSetup::setup
} }
{ {
auto command = make_unique<DHTAutoSaveCommand>(e->newCUID(), e, family, auto command = make_unique<DHTAutoSaveCommand>(e->newCUID(), e, family,
std::chrono::minutes(30)); 30_min);
command->setLocalNode(localNode); command->setLocalNode(localNode);
command->setRoutingTable(routingTable.get()); command->setRoutingTable(routingTable.get());
tempCommands.push_back(std::move(command)); tempCommands.push_back(std::move(command));

View file

@ -64,7 +64,7 @@ DefaultBtAnnounce::DefaultBtAnnounce
prevAnnounceTimer_(Timer::zero()), prevAnnounceTimer_(Timer::zero()),
interval_(DEFAULT_ANNOUNCE_INTERVAL), interval_(DEFAULT_ANNOUNCE_INTERVAL),
minInterval_(DEFAULT_ANNOUNCE_INTERVAL), minInterval_(DEFAULT_ANNOUNCE_INTERVAL),
userDefinedInterval_(std::chrono::seconds(0)), userDefinedInterval_(0_s),
complete_(0), complete_(0),
incomplete_(0), incomplete_(0),
announceList_(bittorrent::getTorrentAttrs(downloadContext)->announceList), announceList_(bittorrent::getTorrentAttrs(downloadContext)->announceList),

View file

@ -255,7 +255,7 @@ void DefaultBtInteractive::decideChoking() {
} }
namespace { namespace {
constexpr auto MAX_HAVE_DELAY_SEC = std::chrono::seconds(10); constexpr auto MAX_HAVE_DELAY_SEC = 10_s;
} // namespace } // namespace
void DefaultBtInteractive::checkHave() { void DefaultBtInteractive::checkHave() {
@ -434,7 +434,7 @@ void DefaultBtInteractive::sendPendingMessage() {
} }
namespace { namespace {
constexpr auto FLOODING_CHECK_INTERVAL = std::chrono::seconds(5); constexpr auto FLOODING_CHECK_INTERVAL = 5_s;
} // namespace } // namespace
void DefaultBtInteractive::detectMessageFlooding() { void DefaultBtInteractive::detectMessageFlooding() {
@ -529,8 +529,7 @@ void DefaultBtInteractive::doInteractionProcessing() {
dispatcher_->addMessageToQueue(std::move(i)); dispatcher_->addMessageToQueue(std::move(i));
} }
} }
if(perSecTimer_.difference(global::wallclock()) >= if(perSecTimer_.difference(global::wallclock()) >= 1_s) {
std::chrono::seconds(1)) {
perSecTimer_ = global::wallclock(); perSecTimer_ = global::wallclock();
// Drop timeout request after queuing message to give a chance // Drop timeout request after queuing message to give a chance
// to other connection to request piece. // to other connection to request piece.
@ -548,8 +547,7 @@ void DefaultBtInteractive::doInteractionProcessing() {
checkActiveInteraction(); checkActiveInteraction();
decideChoking(); decideChoking();
detectMessageFlooding(); detectMessageFlooding();
if(perSecTimer_.difference(global::wallclock()) >= if(perSecTimer_.difference(global::wallclock()) >= 1_s) {
std::chrono::seconds(1)) {
perSecTimer_ = global::wallclock(); perSecTimer_ = global::wallclock();
dispatcher_->checkRequestSlotAndDoNecessaryThing(); dispatcher_->checkRequestSlotAndDoNecessaryThing();
} }

View file

@ -197,8 +197,7 @@ bool DefaultPeerStorage::isBadPeer(const std::string& ipaddr)
void DefaultPeerStorage::addBadPeer(const std::string& ipaddr) void DefaultPeerStorage::addBadPeer(const std::string& ipaddr)
{ {
if(lastBadPeerCleaned_.difference(global::wallclock()) >= if(lastBadPeerCleaned_.difference(global::wallclock()) >= 1_h) {
std::chrono::hours(1)) {
for(auto i = std::begin(badPeers_); i != std::end(badPeers_);) { for(auto i = std::begin(badPeers_); i != std::end(badPeers_);) {
if((*i).second <= global::wallclock()) { if((*i).second <= global::wallclock()) {
A2_LOG_DEBUG(fmt("Purge %s from bad peer", (*i).first.c_str())); A2_LOG_DEBUG(fmt("Purge %s from bad peer", (*i).first.c_str()));
@ -284,7 +283,7 @@ void DefaultPeerStorage::returnPeer(const std::shared_ptr<Peer>& peer)
bool DefaultPeerStorage::chokeRoundIntervalElapsed() bool DefaultPeerStorage::chokeRoundIntervalElapsed()
{ {
constexpr auto CHOKE_ROUND_INTERVAL = std::chrono::seconds(10); constexpr auto CHOKE_ROUND_INTERVAL = 10_s;
if(pieceStorage_->downloadFinished()) { if(pieceStorage_->downloadFinished()) {
return seederStateChoke_->getLastRound(). return seederStateChoke_->getLastRound().
difference(global::wallclock()) >= CHOKE_ROUND_INTERVAL; difference(global::wallclock()) >= CHOKE_ROUND_INTERVAL;

View file

@ -91,7 +91,7 @@ volatile sig_atomic_t globalHaltRequested = 0;
} // namespace global } // namespace global
namespace { namespace {
constexpr auto DEFAULT_REFRESH_INTERVAL = std::chrono::seconds(1); constexpr auto DEFAULT_REFRESH_INTERVAL = 1_s;
} // namespace } // namespace
DownloadEngine::DownloadEngine(std::unique_ptr<EventPoll> eventPoll) DownloadEngine::DownloadEngine(std::unique_ptr<EventPoll> eventPoll)
@ -312,8 +312,7 @@ void DownloadEngine::poolSocket(const std::string& key,
std::multimap<std::string, SocketPoolEntry>::value_type p(key, entry); std::multimap<std::string, SocketPoolEntry>::value_type p(key, entry);
socketPool_.insert(p); socketPool_.insert(p);
if(lastSocketPoolScan_.difference(global::wallclock()) < if(lastSocketPoolScan_.difference(global::wallclock()) < 1_min) {
std::chrono::minutes(1)) {
return; return;
} }
std::multimap<std::string, SocketPoolEntry> newPool; std::multimap<std::string, SocketPoolEntry> newPool;

View file

@ -269,24 +269,24 @@ public:
const std::string& proxyhost, uint16_t proxyport, const std::string& proxyhost, uint16_t proxyport,
const std::shared_ptr<SocketCore>& sock, const std::shared_ptr<SocketCore>& sock,
const std::string& options, const std::string& options,
std::chrono::seconds timeout = std::chrono::seconds(15)); std::chrono::seconds timeout = 15_s);
void poolSocket(const std::shared_ptr<Request>& request, void poolSocket(const std::shared_ptr<Request>& request,
const std::string& username, const std::string& username,
const std::shared_ptr<Request>& proxyRequest, const std::shared_ptr<Request>& proxyRequest,
const std::shared_ptr<SocketCore>& socket, const std::shared_ptr<SocketCore>& socket,
const std::string& options, const std::string& options,
std::chrono::seconds timeout = std::chrono::seconds(15)); std::chrono::seconds timeout = 15_s);
void poolSocket(const std::string& ipaddr, uint16_t port, void poolSocket(const std::string& ipaddr, uint16_t port,
const std::string& proxyhost, uint16_t proxyport, const std::string& proxyhost, uint16_t proxyport,
const std::shared_ptr<SocketCore>& sock, const std::shared_ptr<SocketCore>& sock,
std::chrono::seconds timeout = std::chrono::seconds(15)); std::chrono::seconds timeout = 15_s);
void poolSocket(const std::shared_ptr<Request>& request, void poolSocket(const std::shared_ptr<Request>& request,
const std::shared_ptr<Request>& proxyRequest, const std::shared_ptr<Request>& proxyRequest,
const std::shared_ptr<SocketCore>& socket, const std::shared_ptr<SocketCore>& socket,
std::chrono::seconds timeout = std::chrono::seconds(15)); std::chrono::seconds timeout = 15_s);
std::shared_ptr<SocketCore> popPooledSocket std::shared_ptr<SocketCore> popPooledSocket
(const std::string& ipaddr, (const std::string& ipaddr,

View file

@ -175,8 +175,8 @@ DownloadEngineFactory::newDownloadEngine
e->newCUID(), e.get(), e->newCUID(), e.get(),
std::chrono::seconds(op->getAsInt(PREF_SAVE_SESSION_INTERVAL)))); std::chrono::seconds(op->getAsInt(PREF_SAVE_SESSION_INTERVAL))));
} }
e->addRoutineCommand(make_unique<HaveEraseCommand> e->addRoutineCommand(
(e->newCUID(), e.get(), std::chrono::seconds(10))); make_unique<HaveEraseCommand>(e->newCUID(), e.get(), 10_s));
{ {
auto stopSec = op->getAsInt(PREF_STOP); auto stopSec = op->getAsInt(PREF_STOP);
if(stopSec > 0) { if(stopSec > 0) {

View file

@ -214,7 +214,7 @@ FileEntry::getRequest
} }
namespace { namespace {
constexpr auto startupIdleTime = std::chrono::seconds(10); constexpr auto startupIdleTime = 10_s;
} // namespace } // namespace
std::shared_ptr<Request> std::shared_ptr<Request>

View file

@ -63,7 +63,7 @@ void HaveEraseCommand::process()
for(auto & group : groups) { for(auto & group : groups) {
const auto& ps = group->getPieceStorage(); const auto& ps = group->getPieceStorage();
if(ps) { if(ps) {
ps->removeAdvertisedPiece(std::chrono::seconds(5)); ps->removeAdvertisedPiece(5_s);
} }
} }
} }

View file

@ -149,7 +149,7 @@ void HttpServerBodyCommand::addHttpServerResponseCommand(bool delayed)
make_unique<HttpServerResponseCommand>(getCuid(), httpServer_, e_, socket_); make_unique<HttpServerResponseCommand>(getCuid(), httpServer_, e_, socket_);
if (delayed) { if (delayed) {
e_->addCommand(make_unique<DelayedCommand>( e_->addCommand(make_unique<DelayedCommand>(
getCuid(), e_, std::chrono::seconds(1), std::move(resp), true)); getCuid(), e_, 1_s, std::move(resp), true));
return; return;
} }
@ -320,8 +320,7 @@ bool HttpServerBodyCommand::execute()
return false; return false;
} }
} else { } else {
if(timeoutTimer_.difference(global::wallclock()) >= if(timeoutTimer_.difference(global::wallclock()) >= 30_s) {
std::chrono::seconds(30)) {
A2_LOG_INFO("HTTP request body timeout."); A2_LOG_INFO("HTTP request body timeout.");
return true; return true;
} else { } else {

View file

@ -253,8 +253,7 @@ bool HttpServerCommand::execute()
return true; return true;
} }
} else { } else {
if(timeoutTimer_.difference(global::wallclock()) >= if(timeoutTimer_.difference(global::wallclock()) >= 30_s) {
std::chrono::seconds(30)) {
A2_LOG_INFO("HTTP request timeout."); A2_LOG_INFO("HTTP request timeout.");
return true; return true;
} else { } else {

View file

@ -58,7 +58,7 @@ public:
LpdMessageDispatcher( LpdMessageDispatcher(
const std::string& infoHash, uint16_t port, const std::string& infoHash, uint16_t port,
const std::string& multicastAddr, uint16_t multicastPort, const std::string& multicastAddr, uint16_t multicastPort,
std::chrono::seconds interval = std::chrono::minutes(5)); std::chrono::seconds interval = 5_min);
~LpdMessageDispatcher(); ~LpdMessageDispatcher();

View file

@ -978,7 +978,7 @@ void RequestGroup::releaseRuntimeResource(DownloadEngine* e)
peerStorage_ = nullptr; peerStorage_ = nullptr;
#endif // ENABLE_BITTORRENT #endif // ENABLE_BITTORRENT
if(pieceStorage_) { if(pieceStorage_) {
pieceStorage_->removeAdvertisedPiece(std::chrono::seconds(0)); pieceStorage_->removeAdvertisedPiece(0_s);
} }
// Don't reset segmentMan_ and pieceStorage_ here to provide // Don't reset segmentMan_ and pieceStorage_ here to provide
// progress information via RPC // progress information via RPC

View file

@ -1306,8 +1306,8 @@ std::unique_ptr<ValueBase> goingShutdown
{ {
// Schedule shutdown after 3seconds to give time to client to // Schedule shutdown after 3seconds to give time to client to
// receive RPC response. // receive RPC response.
e->addRoutineCommand(make_unique<TimedHaltCommand>( e->addRoutineCommand(
e->newCUID(), e, std::chrono::seconds(3), forceHalt)); make_unique<TimedHaltCommand>(e->newCUID(), e, 3_s, forceHalt));
A2_LOG_INFO("Scheduled shutdown in 3 seconds."); A2_LOG_INFO("Scheduled shutdown in 3 seconds.");
return createOKResponse(); return createOKResponse();
} }

View file

@ -42,7 +42,7 @@
namespace aria2 { namespace aria2 {
namespace { namespace {
constexpr auto WINDOW_TIME = std::chrono::seconds(15); constexpr auto WINDOW_TIME = 15_s;
} // namespace } // namespace
SpeedCalc::SpeedCalc() SpeedCalc::SpeedCalc()
@ -94,7 +94,7 @@ void SpeedCalc::update(size_t bytes)
removeStaleTimeSlot(now); removeStaleTimeSlot(now);
if(timeSlots_.empty() || if(timeSlots_.empty() ||
std::chrono::duration_cast<std::chrono::seconds>( std::chrono::duration_cast<std::chrono::seconds>(
timeSlots_.back().first.difference(now)) >= std::chrono::seconds(1)) { timeSlots_.back().first.difference(now)) >= 1_s) {
timeSlots_.push_back(std::make_pair(now, bytes)); timeSlots_.push_back(std::make_pair(now, bytes));
} else { } else {
timeSlots_.back().second += bytes; timeSlots_.back().second += bytes;

View file

@ -55,7 +55,7 @@ Timer::Clock::duration Timer::difference() const
{ {
auto now = Clock::now(); auto now = Clock::now();
if (now < tp_) { if (now < tp_) {
return Timer::Clock::duration(std::chrono::seconds(0)); return Timer::Clock::duration(0_s);
} }
return now - tp_; return now - tp_;
@ -64,7 +64,7 @@ Timer::Clock::duration Timer::difference() const
Timer::Clock::duration Timer::difference(const Timer& timer) const Timer::Clock::duration Timer::difference(const Timer& timer) const
{ {
if (timer.tp_ < tp_) { if (timer.tp_ < tp_) {
return Timer::Clock::duration(std::chrono::seconds(0)); return Timer::Clock::duration(0_s);
} }
return timer.tp_ - tp_; return timer.tp_ - tp_;

View file

@ -40,6 +40,7 @@
#include <chrono> #include <chrono>
#include "a2time.h" #include "a2time.h"
#include "a2functional.h"
namespace aria2 { namespace aria2 {
@ -92,7 +93,7 @@ public:
const Clock::time_point& getTime() const { return tp_; } const Clock::time_point& getTime() const { return tp_; }
constexpr static Timer zero() { return Timer(std::chrono::seconds(0)); } constexpr static Timer zero() { return Timer(0_s); }
private: private:
Clock::time_point tp_; Clock::time_point tp_;

View file

@ -370,7 +370,7 @@ struct TimeoutCheck {
{ {
auto t = req->dispatched.difference(now); auto t = req->dispatched.difference(now);
if(req->failCount == 0) { if(req->failCount == 0) {
if(t >= std::chrono::seconds(15)) { if(t >= 15_s) {
switch(req->action) { switch(req->action) {
case UDPT_ACT_CONNECT: case UDPT_ACT_CONNECT:
A2_LOG_INFO(fmt("UDPT resend CONNECT to %s:%u transaction_id=%u", A2_LOG_INFO(fmt("UDPT resend CONNECT to %s:%u transaction_id=%u",
@ -396,7 +396,7 @@ struct TimeoutCheck {
return false; return false;
} }
} else { } else {
if(t >= std::chrono::minutes(1)) { if(t >= 1_min) {
switch(req->action) { switch(req->action) {
case UDPT_ACT_CONNECT: case UDPT_ACT_CONNECT:
A2_LOG_INFO(fmt("UDPT timeout CONNECT to %s:%u transaction_id=%u", A2_LOG_INFO(fmt("UDPT timeout CONNECT to %s:%u transaction_id=%u",
@ -475,7 +475,7 @@ UDPTrackerConnection* UDPTrackerClient::getConnectionId
return nullptr; return nullptr;
} }
if((*i).second.state == UDPT_CST_CONNECTED && if((*i).second.state == UDPT_CST_CONNECTED &&
(*i).second.lastUpdated.difference(now) > std::chrono::minutes(1)) { (*i).second.lastUpdated.difference(now) > 1_min) {
connectionIdCache_.erase(i); connectionIdCache_.erase(i);
return nullptr; return nullptr;
} else { } else {

View file

@ -65,7 +65,7 @@ void UTMetadataRequestTracker::remove(size_t index)
} }
namespace { namespace {
constexpr auto TIMEOUT = std::chrono::seconds(20); constexpr auto TIMEOUT = 20_s;
} // namespace } // namespace
std::vector<size_t> UTMetadataRequestTracker::removeTimeoutEntry() std::vector<size_t> UTMetadataRequestTracker::removeTimeoutEntry()

View file

@ -42,6 +42,7 @@
#include <memory> #include <memory>
#include "a2time.h" #include "a2time.h"
#include "a2functional.h"
namespace aria2 { namespace aria2 {
@ -120,7 +121,7 @@ public:
return maxDroppedPeer_; return maxDroppedPeer_;
} }
constexpr static auto DEFAULT_INTERVAL = std::chrono::minutes(1); constexpr static auto DEFAULT_INTERVAL = 1_min;
}; };
} // namespace aria2 } // namespace aria2

View file

@ -70,7 +70,7 @@ WatchProcessCommand::WatchProcessCommand
DownloadEngine* e, DownloadEngine* e,
unsigned int pid, unsigned int pid,
bool forceHalt) bool forceHalt)
: TimeBasedCommand(cuid, e, std::chrono::seconds(1), true), : TimeBasedCommand(cuid, e, 1_s, true),
pid_(pid), pid_(pid),
forceHalt_(forceHalt) forceHalt_(forceHalt)
{} {}

View file

@ -290,8 +290,8 @@ void WebSocketSession::addTextMessage(const std::string& msg, bool delayed)
auto e = getDownloadEngine(); auto e = getDownloadEngine();
auto cuid = command_->getCuid(); auto cuid = command_->getCuid();
auto c = make_unique<TextMessageCommand>(cuid, command_->getSession(), msg); auto c = make_unique<TextMessageCommand>(cuid, command_->getSession(), msg);
e->addCommand(make_unique<DelayedCommand>(cuid, e, std::chrono::seconds(1), e->addCommand(
std::move(c), false)); make_unique<DelayedCommand>(cuid, e, 1_s, std::move(c), false));
return; return;
} }

View file

@ -41,6 +41,7 @@
#include <string> #include <string>
#include <algorithm> #include <algorithm>
#include <memory> #include <memory>
#include <chrono>
#include "A2STR.h" #include "A2STR.h"
@ -187,6 +188,26 @@ make_unique(size_t size)
return std::unique_ptr<T>(new typename std::remove_extent<T>::type[size]()); return std::unique_ptr<T>(new typename std::remove_extent<T>::type[size]());
} }
constexpr std::chrono::hours operator"" _h(unsigned long long h)
{
return std::chrono::hours(h);
}
constexpr std::chrono::minutes operator"" _min(unsigned long long min)
{
return std::chrono::minutes(min);
}
constexpr std::chrono::seconds operator"" _s(unsigned long long s)
{
return std::chrono::seconds(s);
}
constexpr std::chrono::milliseconds operator"" _ms(unsigned long long ms)
{
return std::chrono::milliseconds(ms);
}
} // namespace aria2 } // namespace aria2
#endif // D_A2_FUNCTIONAL_H #endif // D_A2_FUNCTIONAL_H

View file

@ -43,7 +43,7 @@ void DHTMessageTrackerEntryTest::testMatch()
DHTMessageTrackerEntry entry(msg1->getRemoteNode(), DHTMessageTrackerEntry entry(msg1->getRemoteNode(),
msg1->getTransactionID(), msg1->getTransactionID(),
msg1->getMessageType(), msg1->getMessageType(),
std::chrono::seconds(30)); 30_s);
CPPUNIT_ASSERT(entry.match(msg1->getTransactionID(), CPPUNIT_ASSERT(entry.match(msg1->getTransactionID(),
msg1->getRemoteNode()->getIPAddress(), msg1->getRemoteNode()->getIPAddress(),

View file

@ -40,7 +40,7 @@ void DHTPeerAnnounceEntryTest::testRemoveStalePeerAddrEntry()
entry.addPeerAddrEntry(PeerAddrEntry("192.168.0.3", 6883)); entry.addPeerAddrEntry(PeerAddrEntry("192.168.0.3", 6883));
entry.addPeerAddrEntry(PeerAddrEntry("192.168.0.4", 6884, Timer::zero())); entry.addPeerAddrEntry(PeerAddrEntry("192.168.0.4", 6884, Timer::zero()));
entry.removeStalePeerAddrEntry(std::chrono::seconds(10)); entry.removeStalePeerAddrEntry(10_s);
CPPUNIT_ASSERT_EQUAL((size_t)2, entry.countPeerAddrEntry()); CPPUNIT_ASSERT_EQUAL((size_t)2, entry.countPeerAddrEntry());

View file

@ -209,7 +209,7 @@ void DefaultBtMessageDispatcherTest::testCheckRequestSlotAndDoNecessaryThing()
CPPUNIT_ASSERT(piece->getMissingUnusedBlockIndex(index)); CPPUNIT_ASSERT(piece->getMissingUnusedBlockIndex(index));
CPPUNIT_ASSERT_EQUAL((size_t)0, index); CPPUNIT_ASSERT_EQUAL((size_t)0, index);
btMessageDispatcher->setRequestTimeout(std::chrono::minutes(1)); btMessageDispatcher->setRequestTimeout(1_min);
btMessageDispatcher->addOutstandingRequest btMessageDispatcher->addOutstandingRequest
(make_unique<RequestSlot>(0, 0, MY_PIECE_LENGTH, 0, piece)); (make_unique<RequestSlot>(0, 0, MY_PIECE_LENGTH, 0, piece));
@ -228,7 +228,7 @@ testCheckRequestSlotAndDoNecessaryThing_timeout() {
CPPUNIT_ASSERT(piece->getMissingUnusedBlockIndex(index)); CPPUNIT_ASSERT(piece->getMissingUnusedBlockIndex(index));
CPPUNIT_ASSERT_EQUAL((size_t)0, index); CPPUNIT_ASSERT_EQUAL((size_t)0, index);
btMessageDispatcher->setRequestTimeout(std::chrono::minutes(1)); btMessageDispatcher->setRequestTimeout(1_min);
auto slot = make_unique<RequestSlot>(0, 0, MY_PIECE_LENGTH, 0, piece); auto slot = make_unique<RequestSlot>(0, 0, MY_PIECE_LENGTH, 0, piece);
// make this slot timeout // make this slot timeout
slot->setDispatchedTime(Timer::zero()); slot->setDispatchedTime(Timer::zero());
@ -247,7 +247,7 @@ void DefaultBtMessageDispatcherTest::
testCheckRequestSlotAndDoNecessaryThing_completeBlock() { testCheckRequestSlotAndDoNecessaryThing_completeBlock() {
auto piece = std::make_shared<Piece>(0, MY_PIECE_LENGTH); auto piece = std::make_shared<Piece>(0, MY_PIECE_LENGTH);
piece->completeBlock(0); piece->completeBlock(0);
btMessageDispatcher->setRequestTimeout(std::chrono::minutes(1)); btMessageDispatcher->setRequestTimeout(1_min);
btMessageDispatcher->addOutstandingRequest btMessageDispatcher->addOutstandingRequest
(make_unique<RequestSlot>(0, 0, MY_PIECE_LENGTH, 0, piece)); (make_unique<RequestSlot>(0, 0, MY_PIECE_LENGTH, 0, piece));

View file

@ -915,7 +915,7 @@ void RpcMethodTest::testGatherStoppedDownload()
d->fileEntries = fileEntries; d->fileEntries = fileEntries;
d->inMemoryDownload = false; d->inMemoryDownload = false;
d->sessionDownloadLength = UINT64_MAX; d->sessionDownloadLength = UINT64_MAX;
d->sessionTime = std::chrono::seconds(1); d->sessionTime = 1_s;
d->result = error_code::FINISHED; d->result = error_code::FINISHED;
d->followedBy = followedBy; d->followedBy = followedBy;
d->belongsTo = 2; d->belongsTo = 2;

View file

@ -159,7 +159,7 @@ void ServerStatManTest::testRemoveStaleServerStat()
CPPUNIT_ASSERT(ssm.add(localhost_ftp)); CPPUNIT_ASSERT(ssm.add(localhost_ftp));
CPPUNIT_ASSERT(ssm.add(mirror)); CPPUNIT_ASSERT(ssm.add(mirror));
ssm.removeStaleServerStat(std::chrono::hours(24)); ssm.removeStaleServerStat(24_h);
CPPUNIT_ASSERT(ssm.find("localhost", "http")); CPPUNIT_ASSERT(ssm.find("localhost", "http"));
CPPUNIT_ASSERT(!ssm.find("localhost", "ftp")); CPPUNIT_ASSERT(!ssm.find("localhost", "ftp"));

View file

@ -21,12 +21,12 @@ public:
CPPUNIT_TEST_SUITE_REGISTRATION(TimeSeedCriteriaTest); CPPUNIT_TEST_SUITE_REGISTRATION(TimeSeedCriteriaTest);
void TimeSeedCriteriaTest::testEvaluate() { void TimeSeedCriteriaTest::testEvaluate() {
TimeSeedCriteria cri(std::chrono::seconds(1)); TimeSeedCriteria cri(1_s);
global::wallclock().reset(); global::wallclock().reset();
global::wallclock().advance(std::chrono::seconds(2)); global::wallclock().advance(2_s);
CPPUNIT_ASSERT(cri.evaluate()); CPPUNIT_ASSERT(cri.evaluate());
cri.reset(); cri.reset();
cri.setDuration(std::chrono::seconds(10)); cri.setDuration(10_s);
CPPUNIT_ASSERT(!cri.evaluate()); CPPUNIT_ASSERT(!cri.evaluate());
} }

View file

@ -270,7 +270,7 @@ void UDPTrackerClientTest::testConnectFollowedByAnnounce()
req4->infohash = "bittorrent-infohash4"; req4->infohash = "bittorrent-infohash4";
tr.addRequest(req4); tr.addRequest(req4);
Timer future = now; Timer future = now;
future.advance(std::chrono::hours(1)); future.advance(1_h);
rv = tr.createRequest(data, sizeof(data), remoteAddr, remotePort, rv = tr.createRequest(data, sizeof(data), remoteAddr, remotePort,
future); future);
// connection ID is stale because of the timeout // connection ID is stale because of the timeout
@ -384,7 +384,7 @@ void UDPTrackerClientTest::testTimeout()
CPPUNIT_ASSERT_EQUAL((int)UDPT_ACT_CONNECT, CPPUNIT_ASSERT_EQUAL((int)UDPT_ACT_CONNECT,
(int)bittorrent::getIntParam(data, 8)); (int)bittorrent::getIntParam(data, 8));
tr.requestSent(now); tr.requestSent(now);
now.advance(std::chrono::seconds(20)); now.advance(20_s);
// 15 seconds 1st stage timeout passed // 15 seconds 1st stage timeout passed
tr.handleTimeout(now); tr.handleTimeout(now);
CPPUNIT_ASSERT(tr.getConnectRequests().empty()); CPPUNIT_ASSERT(tr.getConnectRequests().empty());
@ -396,7 +396,7 @@ void UDPTrackerClientTest::testTimeout()
CPPUNIT_ASSERT_EQUAL((int)UDPT_ACT_CONNECT, CPPUNIT_ASSERT_EQUAL((int)UDPT_ACT_CONNECT,
(int)bittorrent::getIntParam(data, 8)); (int)bittorrent::getIntParam(data, 8));
tr.requestSent(now); tr.requestSent(now);
now.advance(std::chrono::seconds(65)); now.advance(65_s);
// 60 seconds 2nd stage timeout passed // 60 seconds 2nd stage timeout passed
tr.handleTimeout(now); tr.handleTimeout(now);
CPPUNIT_ASSERT(tr.getConnectRequests().empty()); CPPUNIT_ASSERT(tr.getConnectRequests().empty());
@ -428,7 +428,7 @@ void UDPTrackerClientTest::testTimeout()
CPPUNIT_ASSERT_EQUAL((int)UDPT_ACT_ANNOUNCE, CPPUNIT_ASSERT_EQUAL((int)UDPT_ACT_ANNOUNCE,
(int)bittorrent::getIntParam(data, 8)); (int)bittorrent::getIntParam(data, 8));
tr.requestSent(now); tr.requestSent(now);
now.advance(std::chrono::seconds(20)); now.advance(20_s);
// 15 seconds 1st stage timeout passed // 15 seconds 1st stage timeout passed
tr.handleTimeout(now); tr.handleTimeout(now);
CPPUNIT_ASSERT(tr.getConnectRequests().empty()); CPPUNIT_ASSERT(tr.getConnectRequests().empty());
@ -439,7 +439,7 @@ void UDPTrackerClientTest::testTimeout()
CPPUNIT_ASSERT_EQUAL((int)UDPT_ACT_ANNOUNCE, CPPUNIT_ASSERT_EQUAL((int)UDPT_ACT_ANNOUNCE,
(int)bittorrent::getIntParam(data, 8)); (int)bittorrent::getIntParam(data, 8));
tr.requestSent(now); tr.requestSent(now);
now.advance(std::chrono::seconds(65)); now.advance(65_s);
// 60 seconds 2nd stage timeout passed // 60 seconds 2nd stage timeout passed
tr.handleTimeout(now); tr.handleTimeout(now);
CPPUNIT_ASSERT(tr.getConnectRequests().empty()); CPPUNIT_ASSERT(tr.getConnectRequests().empty());

View file

@ -246,7 +246,7 @@ void UTPexExtensionMessageTest::testAddFreshPeer()
std::shared_ptr<Peer> p1(new Peer("192.168.0.1", 6881)); std::shared_ptr<Peer> p1(new Peer("192.168.0.1", 6881));
CPPUNIT_ASSERT(msg.addFreshPeer(p1)); CPPUNIT_ASSERT(msg.addFreshPeer(p1));
std::shared_ptr<Peer> p2(new Peer("10.1.1.2", 9999)); std::shared_ptr<Peer> p2(new Peer("10.1.1.2", 9999));
p2->setFirstContactTime(Timer(Timer().getTime() - std::chrono::seconds(61))); p2->setFirstContactTime(Timer(Timer().getTime() - 61_s));
CPPUNIT_ASSERT(!msg.addFreshPeer(p2)); CPPUNIT_ASSERT(!msg.addFreshPeer(p2));
std::shared_ptr<Peer> p3(new Peer("10.1.1.3", 9999, true)); std::shared_ptr<Peer> p3(new Peer("10.1.1.3", 9999, true));
CPPUNIT_ASSERT(!msg.addFreshPeer(p3)); CPPUNIT_ASSERT(!msg.addFreshPeer(p3));