diff --git a/ChangeLog b/ChangeLog index 10ffb112..54410146 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2010-06-08 Tatsuhiro Tsujikawa + + Made public member variables of DownloadEngine private. Added + accessor funcs. + 2010-06-04 Tatsuhiro Tsujikawa Release 1.9.4 diff --git a/src/AbstractCommand.cc b/src/AbstractCommand.cc index 337babdd..10423400 100644 --- a/src/AbstractCommand.cc +++ b/src/AbstractCommand.cc @@ -66,6 +66,8 @@ #include "DownloadContext.h" #include "wallclock.h" #include "NameResolver.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" namespace aria2 { @@ -134,7 +136,7 @@ bool AbstractCommand::execute() { InitiateConnectionCommandFactory::createInitiateConnectionCommand (cuid, fasterRequest, _fileEntry, _requestGroup, e); e->setNoWait(true); - e->commands.push_back(command); + e->addCommand(command); return true; } } @@ -204,13 +206,13 @@ bool AbstractCommand::execute() { // timeout triggers ServerStat error state. SharedHandle ss = - e->_requestGroupMan->getOrCreateServerStat(req->getHost(), - req->getProtocol()); + e->getRequestGroupMan()->getOrCreateServerStat(req->getHost(), + req->getProtocol()); ss->setError(); throw DL_RETRY_EX2(EX_TIME_OUT, downloadresultcode::TIME_OUT); } - e->commands.push_back(this); + e->addCommand(this); return false; } } catch(DlAbortEx& err) { @@ -318,11 +320,11 @@ bool AbstractCommand::prepareForRetry(time_t wait) { Command* command = new CreateRequestCommand(cuid, _requestGroup, e); if(wait == 0) { e->setNoWait(true); - e->commands.push_back(command); + e->addCommand(command); } else { SleepCommand* scom = new SleepCommand(cuid, e, _requestGroup, command, wait); - e->commands.push_back(scom); + e->addCommand(scom); } return true; } @@ -330,8 +332,8 @@ bool AbstractCommand::prepareForRetry(time_t wait) { void AbstractCommand::onAbort() { if(!req.isNull()) { // TODO This might be a problem if the failure is caused by proxy. - e->_requestGroupMan->getOrCreateServerStat(req->getHost(), - req->getProtocol())->setError(); + e->getRequestGroupMan()->getOrCreateServerStat(req->getHost(), + req->getProtocol())->setError(); _fileEntry->removeIdenticalURI(req->getUri()); _fileEntry->removeRequest(req); } @@ -610,7 +612,7 @@ bool AbstractCommand::asyncResolveHostname() case AsyncNameResolver::STATUS_ERROR: disableNameResolverCheck(_asyncNameResolver); if(!isProxyRequest(req->getProtocol(), getOption())) { - e->_requestGroupMan->getOrCreateServerStat + e->getRequestGroupMan()->getOrCreateServerStat (req->getHost(), req->getProtocol())->setError(); } throw DL_ABORT_EX(StringFormat(MSG_NAME_RESOLUTION_FAILED, @@ -671,7 +673,7 @@ std::string AbstractCommand::resolveHostname { NameResolver res; res.setSocktype(SOCK_STREAM); - if(e->option->getAsBool(PREF_DISABLE_IPV6)) { + if(e->getOption()->getAsBool(PREF_DISABLE_IPV6)) { res.setFamily(AF_INET); } res.resolve(addrs, hostname); @@ -737,14 +739,14 @@ bool AbstractCommand::checkIfConnectionEstablished InitiateConnectionCommandFactory::createInitiateConnectionCommand (cuid, req, _fileEntry, _requestGroup, e); e->setNoWait(true); - e->commands.push_back(command); + e->addCommand(command); return false; } e->removeCachedIPAddress(connectedHostname, connectedPort); // Don't set error if proxy server is used and its method is GET. if(resolveProxyMethod(req->getProtocol()) != V_GET || !isProxyRequest(req->getProtocol(), getOption())) { - e->_requestGroupMan->getOrCreateServerStat + e->getRequestGroupMan()->getOrCreateServerStat (req->getHost(), req->getProtocol())->setError(); } throw DL_RETRY_EX diff --git a/src/AbstractProxyRequestCommand.cc b/src/AbstractProxyRequestCommand.cc index a4a2070a..d15d9dfc 100644 --- a/src/AbstractProxyRequestCommand.cc +++ b/src/AbstractProxyRequestCommand.cc @@ -46,6 +46,10 @@ #include "AuthConfigFactory.h" #include "AuthConfig.h" #include "DownloadContext.h" +#include "RequestGroupMan.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -86,11 +90,11 @@ bool AbstractProxyRequestCommand::executeInternal() { httpConnection->sendPendingData(); } if(httpConnection->sendBufferIsEmpty()) { - e->commands.push_back(getNextCommand()); + e->addCommand(getNextCommand()); return true; } else { setWriteCheckSocket(socket); - e->commands.push_back(this); + e->addCommand(this); return false; } } diff --git a/src/AbstractProxyResponseCommand.cc b/src/AbstractProxyResponseCommand.cc index 1c46b8d9..e0e5b16a 100644 --- a/src/AbstractProxyResponseCommand.cc +++ b/src/AbstractProxyResponseCommand.cc @@ -46,6 +46,10 @@ #include "message.h" #include "HttpHeader.h" #include "DownloadContext.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -66,13 +70,13 @@ bool AbstractProxyResponseCommand::executeInternal() { SharedHandle httpResponse = httpConnection->receiveResponse(); if(httpResponse.isNull()) { // the server has not responded our request yet. - e->commands.push_back(this); + e->addCommand(this); return false; } if(httpResponse->getResponseStatus() != HttpHeader::S200) { throw DL_RETRY_EX(EX_PROXY_CONNECTION_FAILED); } - e->commands.push_back(getNextCommand()); + e->addCommand(getNextCommand()); return true; } diff --git a/src/ActivePeerConnectionCommand.cc b/src/ActivePeerConnectionCommand.cc index 9ee973f6..361e1097 100644 --- a/src/ActivePeerConnectionCommand.cc +++ b/src/ActivePeerConnectionCommand.cc @@ -51,6 +51,10 @@ #include "bittorrent_helper.h" #include "wallclock.h" #include "util.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -125,7 +129,7 @@ bool ActivePeerConnectionCommand::execute() { } } } - e->commands.push_back(this); + e->addCommand(this); return false; } @@ -140,7 +144,7 @@ void ActivePeerConnectionCommand::connectToPeer(const SharedHandle& peer) _btRuntime); command->setPeerStorage(_peerStorage); command->setPieceStorage(_pieceStorage); - e->commands.push_back(command); + e->addCommand(command); if(logger->info()) { logger->info(MSG_CONNECTING_TO_PEER, util::itos(cuid).c_str(), peer->ipaddr.c_str()); diff --git a/src/AutoSaveCommand.cc b/src/AutoSaveCommand.cc index af98f316..2fd7001d 100644 --- a/src/AutoSaveCommand.cc +++ b/src/AutoSaveCommand.cc @@ -36,6 +36,9 @@ #include "DownloadEngine.h" #include "RequestGroupMan.h" #include "FileEntry.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -46,14 +49,14 @@ AutoSaveCommand::~AutoSaveCommand() {} void AutoSaveCommand::preProcess() { - if(_e->_requestGroupMan->downloadFinished() || _e->isHaltRequested()) { + if(_e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested()) { _exit = true; } } void AutoSaveCommand::process() { - _e->_requestGroupMan->save(); + _e->getRequestGroupMan()->save(); } } // namespace aria2 diff --git a/src/BtCheckIntegrityEntry.cc b/src/BtCheckIntegrityEntry.cc index dc712c07..701224c9 100644 --- a/src/BtCheckIntegrityEntry.cc +++ b/src/BtCheckIntegrityEntry.cc @@ -41,6 +41,8 @@ #include "prefs.h" #include "Option.h" #include "DownloadContext.h" +#include "RequestGroupMan.h" +#include "ServerStatMan.h" namespace aria2 { diff --git a/src/BtFileAllocationEntry.cc b/src/BtFileAllocationEntry.cc index a76dfbda..c6b2057d 100644 --- a/src/BtFileAllocationEntry.cc +++ b/src/BtFileAllocationEntry.cc @@ -41,6 +41,9 @@ #include "Command.h" #include "DownloadEngine.h" #include "DownloadContext.h" +#include "RequestGroupMan.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { diff --git a/src/BtSetup.cc b/src/BtSetup.cc index 163969ff..b0db3795 100644 --- a/src/BtSetup.cc +++ b/src/BtSetup.cc @@ -69,6 +69,10 @@ #include "LpdMessageDispatcher.h" #include "message.h" #include "SocketCore.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -160,12 +164,12 @@ void BtSetup::setup(std::vector& commands, } if(PeerListenCommand::getNumInstance() == 0) { PeerListenCommand* listenCommand = PeerListenCommand::getInstance(e); - IntSequence seq = util::parseIntRange(e->option->get(PREF_LISTEN_PORT)); + IntSequence seq =util::parseIntRange(e->getOption()->get(PREF_LISTEN_PORT)); uint16_t port; if(listenCommand->bindPort(port, seq)) { btRuntime->setListenPort(port); // Add command to DownloadEngine directly. - e->commands.push_back(listenCommand); + e->addCommand(listenCommand); } else { delete listenCommand; throw DL_ABORT_EX(_("Errors occurred while binding port.\n")); @@ -181,7 +185,8 @@ void BtSetup::setup(std::vector& commands, SharedHandle receiver (new LpdMessageReceiver(LPD_MULTICAST_ADDR, LPD_MULTICAST_PORT)); bool initialized = false; - const std::string& lpdInterface = e->option->get(PREF_BT_LPD_INTERFACE); + const std::string& lpdInterface = + e->getOption()->get(PREF_BT_LPD_INTERFACE); if(lpdInterface.empty()) { if(receiver->init("")) { initialized = true; @@ -206,7 +211,7 @@ void BtSetup::setup(std::vector& commands, receiver->getLocalAddress().c_str()); LpdReceiveMessageCommand* cmd = LpdReceiveMessageCommand::getInstance(e, receiver); - e->commands.push_back(cmd); + e->addCommand(cmd); } else { _logger->info("LpdMessageReceiver not initialized."); } @@ -227,7 +232,7 @@ void BtSetup::setup(std::vector& commands, LpdDispatchMessageCommand* cmd = new LpdDispatchMessageCommand(e->newCUID(), dispatcher, e); cmd->setBtRuntime(btRuntime); - e->commands.push_back(cmd); + e->addCommand(cmd); } else { _logger->info("LpdMessageDispatcher not initialized."); } diff --git a/src/CheckIntegrityCommand.cc b/src/CheckIntegrityCommand.cc index d434a070..ed5b8e8c 100644 --- a/src/CheckIntegrityCommand.cc +++ b/src/CheckIntegrityCommand.cc @@ -43,6 +43,9 @@ #include "a2functional.h" #include "RecoverableException.h" #include "util.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -58,12 +61,12 @@ CheckIntegrityCommand::~CheckIntegrityCommand() {} bool CheckIntegrityCommand::executeInternal() { if(_requestGroup->isHaltRequested()) { - _e->_checkIntegrityMan->dropPickedEntry(); + _e->getCheckIntegrityMan()->dropPickedEntry(); return true; } _entry->validateChunk(); if(_entry->finished()) { - _e->_checkIntegrityMan->dropPickedEntry(); + _e->getCheckIntegrityMan()->dropPickedEntry(); // Enable control file saving here. See also // RequestGroup::processCheckIntegrityEntry() to know why this is // needed. @@ -94,14 +97,14 @@ bool CheckIntegrityCommand::executeInternal() _e->setNoWait(true); return true; } else { - _e->commands.push_back(this); + _e->addCommand(this); return false; } } bool CheckIntegrityCommand::handleException(Exception& e) { - _e->_checkIntegrityMan->dropPickedEntry(); + _e->getCheckIntegrityMan()->dropPickedEntry(); logger->error(MSG_FILE_VALIDATION_FAILURE, e, util::itos(cuid).c_str()); logger->error(MSG_DOWNLOAD_NOT_COMPLETE, util::itos(cuid).c_str(), diff --git a/src/CheckIntegrityDispatcherCommand.cc b/src/CheckIntegrityDispatcherCommand.cc index 98d58579..5ab70128 100644 --- a/src/CheckIntegrityDispatcherCommand.cc +++ b/src/CheckIntegrityDispatcherCommand.cc @@ -39,6 +39,8 @@ #include "Logger.h" #include "FileEntry.h" #include "util.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" namespace aria2 { diff --git a/src/CheckIntegrityEntry.cc b/src/CheckIntegrityEntry.cc index a5cc9ff6..173822e2 100644 --- a/src/CheckIntegrityEntry.cc +++ b/src/CheckIntegrityEntry.cc @@ -42,6 +42,8 @@ #include "DownloadEngine.h" #include "Option.h" #include "DownloadContext.h" +#include "RequestGroupMan.h" +#include "ServerStatMan.h" namespace aria2 { @@ -91,7 +93,7 @@ void CheckIntegrityEntry::proceedFileAllocation DownloadEngine* e) { if(_requestGroup->needsFileAllocation()) { - e->_fileAllocationMan->pushEntry(entry); + e->getFileAllocationMan()->pushEntry(entry); } else { entry->prepareForNextAction(commands, e); } diff --git a/src/ChecksumCheckIntegrityEntry.cc b/src/ChecksumCheckIntegrityEntry.cc index 482b00da..ad3d67f5 100644 --- a/src/ChecksumCheckIntegrityEntry.cc +++ b/src/ChecksumCheckIntegrityEntry.cc @@ -39,6 +39,9 @@ #include "IteratableChecksumValidator.h" #include "DownloadEngine.h" #include "PieceStorage.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "ServerStatMan.h" namespace aria2 { diff --git a/src/ConsoleStatCalc.cc b/src/ConsoleStatCalc.cc index 6eb52148..53dc0560 100644 --- a/src/ConsoleStatCalc.cc +++ b/src/ConsoleStatCalc.cc @@ -60,6 +60,7 @@ #include "util.h" #include "DownloadContext.h" #include "wallclock.h" +#include "ServerStatMan.h" #ifdef ENABLE_BITTORRENT # include "bittorrent_helper.h" # include "Peer.h" @@ -242,37 +243,38 @@ ConsoleStatCalc::calculateStat(const DownloadEngine* e) std::cout << '\r' << std::setfill(' ') << std::setw(cols) << ' ' << '\r'; } std::ostringstream o; - if(e->_requestGroupMan->countRequestGroup() > 0) { + if(e->getRequestGroupMan()->countRequestGroup() > 0) { if((_summaryInterval > 0) && _lastSummaryNotified.difference(global::wallclock) >= _summaryInterval) { _lastSummaryNotified = global::wallclock; - printProgressSummary(e->_requestGroupMan->getRequestGroups(), cols, e, + printProgressSummary(e->getRequestGroupMan()->getRequestGroups(), cols, e, sizeFormatter); std::cout << "\n"; } SharedHandle firstRequestGroup = - e->_requestGroupMan->getRequestGroup(0); + e->getRequestGroupMan()->getRequestGroup(0); printProgress(o, firstRequestGroup, e, sizeFormatter); - if(e->_requestGroupMan->countRequestGroup() > 1) { + if(e->getRequestGroupMan()->countRequestGroup() > 1) { o << "(" - << e->_requestGroupMan->countRequestGroup()-1 + << e->getRequestGroupMan()->countRequestGroup()-1 << "more...)"; } } - if(e->_requestGroupMan->countRequestGroup() > 1 && - !e->_requestGroupMan->downloadFinished()) { - TransferStat stat = e->_requestGroupMan->calculateStat(); + if(e->getRequestGroupMan()->countRequestGroup() > 1 && + !e->getRequestGroupMan()->downloadFinished()) { + TransferStat stat = e->getRequestGroupMan()->calculateStat(); o << " " << "[TOTAL SPD:" << sizeFormatter(stat.getDownloadSpeed()) << "Bs" << "]"; } { - SharedHandle entry=e->_fileAllocationMan->getPickedEntry(); + SharedHandle entry = + e->getFileAllocationMan()->getPickedEntry(); if(!entry.isNull()) { o << " " << "[FileAlloc:" @@ -290,9 +292,9 @@ ConsoleStatCalc::calculateStat(const DownloadEngine* e) } o << "%)" << "]"; - if(e->_fileAllocationMan->hasNext()) { + if(e->getFileAllocationMan()->hasNext()) { o << "(" - << e->_fileAllocationMan->countEntryInQueue() + << e->getFileAllocationMan()->countEntryInQueue() << "waiting...)"; } } @@ -300,7 +302,7 @@ ConsoleStatCalc::calculateStat(const DownloadEngine* e) #ifdef ENABLE_MESSAGE_DIGEST { SharedHandle entry = - e->_checkIntegrityMan->getPickedEntry(); + e->getCheckIntegrityMan()->getPickedEntry(); if(!entry.isNull()) { o << " " << "[Checksum:" @@ -314,9 +316,9 @@ ConsoleStatCalc::calculateStat(const DownloadEngine* e) << 100*entry->getCurrentLength()/entry->getTotalLength() << "%)" << "]"; - if(e->_checkIntegrityMan->hasNext()) { + if(e->getCheckIntegrityMan()->hasNext()) { o << "(" - << e->_checkIntegrityMan->countEntryInQueue() + << e->getCheckIntegrityMan()->countEntryInQueue() << "waiting...)"; } } diff --git a/src/CreateRequestCommand.cc b/src/CreateRequestCommand.cc index bcac77aa..15dd3431 100644 --- a/src/CreateRequestCommand.cc +++ b/src/CreateRequestCommand.cc @@ -47,6 +47,10 @@ #include "SleepCommand.h" #include "Logger.h" #include "util.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -95,7 +99,7 @@ bool CreateRequestCommand::executeInternal() InitiateConnectionCommandFactory::createInitiateConnectionCommand (cuid, req, _fileEntry, _requestGroup, e); e->setNoWait(true); - e->commands.push_back(command); + e->addCommand(command); return true; } @@ -117,7 +121,7 @@ bool CreateRequestCommand::prepareForRetry(time_t wait) util::itos(cuid).c_str()); } SleepCommand* scom = new SleepCommand(cuid, e, _requestGroup, this, wait); - e->commands.push_back(scom); + e->addCommand(scom); return false; } diff --git a/src/DHTAutoSaveCommand.cc b/src/DHTAutoSaveCommand.cc index f4645850..47f8fb0a 100644 --- a/src/DHTAutoSaveCommand.cc +++ b/src/DHTAutoSaveCommand.cc @@ -55,6 +55,9 @@ #include "FileEntry.h" #include "DlAbortEx.h" #include "StringFormat.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -65,7 +68,7 @@ DHTAutoSaveCommand::~DHTAutoSaveCommand() {} void DHTAutoSaveCommand::preProcess() { - if(_e->_requestGroupMan->downloadFinished() || _e->isHaltRequested()) { + if(_e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested()) { save(); _exit = true; } @@ -78,7 +81,7 @@ void DHTAutoSaveCommand::process() void DHTAutoSaveCommand::save() { - std::string dhtFile = _e->option->get(PREF_DHT_FILE_PATH); + std::string dhtFile = _e->getOption()->get(PREF_DHT_FILE_PATH); logger->info("Saving DHT routing table to %s.", dhtFile.c_str()); std::string tempFile = dhtFile; diff --git a/src/DHTBucketRefreshCommand.cc b/src/DHTBucketRefreshCommand.cc index 04e67ba9..ab42e1c5 100644 --- a/src/DHTBucketRefreshCommand.cc +++ b/src/DHTBucketRefreshCommand.cc @@ -40,6 +40,9 @@ #include "DownloadEngine.h" #include "RequestGroupMan.h" #include "FileEntry.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -51,7 +54,7 @@ DHTBucketRefreshCommand::~DHTBucketRefreshCommand() {} void DHTBucketRefreshCommand::preProcess() { - _exit = _e->_requestGroupMan->downloadFinished() || _e->isHaltRequested(); + _exit = _e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested(); } void DHTBucketRefreshCommand::process() diff --git a/src/DHTEntryPointNameResolveCommand.cc b/src/DHTEntryPointNameResolveCommand.cc index 0975f4fd..e4e83ca6 100644 --- a/src/DHTEntryPointNameResolveCommand.cc +++ b/src/DHTEntryPointNameResolveCommand.cc @@ -52,6 +52,9 @@ #include "Logger.h" #include "StringFormat.h" #include "FileEntry.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -73,7 +76,7 @@ DHTEntryPointNameResolveCommand::~DHTEntryPointNameResolveCommand() bool DHTEntryPointNameResolveCommand::execute() { - if(_e->_requestGroupMan->downloadFinished() || _e->isHaltRequested()) { + if(_e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested()) { return true; } #ifdef ENABLE_ASYNC_DNS @@ -83,7 +86,7 @@ bool DHTEntryPointNameResolveCommand::execute() #endif // ENABLE_ASYNC_DNS try { #ifdef ENABLE_ASYNC_DNS - if(_e->option->getAsBool(PREF_ASYNC_DNS)) { + if(_e->getOption()->getAsBool(PREF_ASYNC_DNS)) { while(!_entryPoints.empty()) { std::string hostname = _entryPoints.front().first; try { @@ -94,7 +97,7 @@ bool DHTEntryPointNameResolveCommand::execute() _resolvedEntryPoints.push_back(p); addPingTask(p); } else { - _e->commands.push_back(this); + _e->addCommand(this); return false; } } catch(RecoverableException& e) { diff --git a/src/DHTGetPeersCommand.cc b/src/DHTGetPeersCommand.cc index 3841d4ac..d8e13bd1 100644 --- a/src/DHTGetPeersCommand.cc +++ b/src/DHTGetPeersCommand.cc @@ -47,6 +47,10 @@ #include "bittorrent_helper.h" #include "DownloadContext.h" #include "wallclock.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -94,7 +98,7 @@ bool DHTGetPeersCommand::execute() _task.reset(); } - _e->commands.push_back(this); + _e->addCommand(this); return false; } diff --git a/src/DHTInteractionCommand.cc b/src/DHTInteractionCommand.cc index 28bf5059..5e8be604 100644 --- a/src/DHTInteractionCommand.cc +++ b/src/DHTInteractionCommand.cc @@ -46,6 +46,9 @@ #include "DHTMessageCallback.h" #include "DHTNode.h" #include "FileEntry.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -71,7 +74,7 @@ void DHTInteractionCommand::disableReadCheckSocket(const SocketHandle& socket) bool DHTInteractionCommand::execute() { - if(_e->_requestGroupMan->downloadFinished() || _e->isHaltRequested()) { + if(_e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested()) { return true; } @@ -89,7 +92,7 @@ bool DHTInteractionCommand::execute() } catch(RecoverableException& e) { logger->error(EX_EXCEPTION_CAUGHT, e); } - _e->commands.push_back(this); + _e->addCommand(this); return false; } diff --git a/src/DHTPeerAnnounceCommand.cc b/src/DHTPeerAnnounceCommand.cc index 823f8ffb..9831c026 100644 --- a/src/DHTPeerAnnounceCommand.cc +++ b/src/DHTPeerAnnounceCommand.cc @@ -40,6 +40,9 @@ #include "message.h" #include "Logger.h" #include "FileEntry.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -51,7 +54,7 @@ DHTPeerAnnounceCommand::~DHTPeerAnnounceCommand() {} void DHTPeerAnnounceCommand::preProcess() { - _exit = _e->_requestGroupMan->downloadFinished() || _e->isHaltRequested(); + _exit = _e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested(); } void DHTPeerAnnounceCommand::process() diff --git a/src/DHTSetup.cc b/src/DHTSetup.cc index bf64a5dc..b3f5d769 100644 --- a/src/DHTSetup.cc +++ b/src/DHTSetup.cc @@ -71,6 +71,11 @@ #include "a2functional.h" #include "DownloadEngine.h" #include "wallclock.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" +#include "FileEntry.h" namespace aria2 { @@ -93,7 +98,7 @@ void DHTSetup::setup(std::vector& commands, DownloadEngine* e) SharedHandle localNode; DHTRoutingTableDeserializer deserializer; - std::string dhtFile = e->option->get(PREF_DHT_FILE_PATH); + std::string dhtFile = e->getOption()->get(PREF_DHT_FILE_PATH); try { std::ifstream in(dhtFile.c_str(), std::ios::binary); if(!in) { @@ -112,7 +117,7 @@ void DHTSetup::setup(std::vector& commands, DownloadEngine* e) SharedHandle connection(new DHTConnectionImpl()); { IntSequence seq = - util::parseIntRange(e->option->get(PREF_DHT_LISTEN_PORT)); + util::parseIntRange(e->getOption()->get(PREF_DHT_LISTEN_PORT)); uint16_t port; if(!connection->bind(port, seq)) { throw DL_ABORT_EX("Error occurred while binding port for DHT"); @@ -141,7 +146,7 @@ void DHTSetup::setup(std::vector& commands, DownloadEngine* e) SharedHandle tokenTracker(new DHTTokenTracker()); - const time_t messageTimeout = e->option->getAsInt(PREF_DHT_MESSAGE_TIMEOUT); + const time_t messageTimeout = e->getOption()->getAsInt(PREF_DHT_MESSAGE_TIMEOUT); // wiring up tracker->setRoutingTable(routingTable); tracker->setMessageFactory(factory); @@ -199,11 +204,11 @@ void DHTSetup::setup(std::vector& commands, DownloadEngine* e) taskQueue->addPeriodicTask1(task); } - if(!e->option->get(PREF_DHT_ENTRY_POINT_HOST).empty()) { + if(!e->getOption()->get(PREF_DHT_ENTRY_POINT_HOST).empty()) { { std::pair addr - (e->option->get(PREF_DHT_ENTRY_POINT_HOST), - e->option->getAsInt(PREF_DHT_ENTRY_POINT_PORT)); + (e->getOption()->get(PREF_DHT_ENTRY_POINT_HOST), + e->getOption()->getAsInt(PREF_DHT_ENTRY_POINT_PORT)); std::vector > entryPoints; entryPoints.push_back(addr); DHTEntryPointNameResolveCommand* command = diff --git a/src/DHTTokenUpdateCommand.cc b/src/DHTTokenUpdateCommand.cc index 908b11bc..16e73fb5 100644 --- a/src/DHTTokenUpdateCommand.cc +++ b/src/DHTTokenUpdateCommand.cc @@ -40,6 +40,9 @@ #include "message.h" #include "Logger.h" #include "FileEntry.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -52,7 +55,7 @@ DHTTokenUpdateCommand::~DHTTokenUpdateCommand() {} void DHTTokenUpdateCommand::preProcess() { - _exit = _e->_requestGroupMan->downloadFinished() || _e->isHaltRequested(); + _exit = _e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested(); } void DHTTokenUpdateCommand::process() diff --git a/src/DownloadCommand.cc b/src/DownloadCommand.cc index 256b7c94..1a0c4740 100644 --- a/src/DownloadCommand.cc +++ b/src/DownloadCommand.cc @@ -59,6 +59,8 @@ #include "Decoder.h" #include "RequestGroupMan.h" #include "wallclock.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" #ifdef ENABLE_MESSAGE_DIGEST # include "MessageDigestHelper.h" #endif // ENABLE_MESSAGE_DIGEST @@ -106,9 +108,9 @@ DownloadCommand::~DownloadCommand() { } bool DownloadCommand::executeInternal() { - if(e->_requestGroupMan->doesOverallDownloadSpeedExceed() || + if(e->getRequestGroupMan()->doesOverallDownloadSpeedExceed() || _requestGroup->doesDownloadSpeedExceed()) { - e->commands.push_back(this); + e->addCommand(this); disableReadCheckSocket(); return false; } @@ -248,7 +250,7 @@ bool DownloadCommand::executeInternal() { } else { checkLowestDownloadSpeed(); setWriteCheckSocketIf(socket, socket->wantWrite()); - e->commands.push_back(this); + e->addCommand(this); return false; } } @@ -292,7 +294,7 @@ bool DownloadCommand::prepareForNextSegment() { if(entry->isValidationReady()) { entry->initValidator(); // TODO do we need cuttrailinggarbage here? - e->_checkIntegrityMan->pushEntry(entry); + e->getCheckIntegrityMan()->pushEntry(entry); } } // Following 2lines are needed for DownloadEngine to detect @@ -316,7 +318,7 @@ bool DownloadCommand::prepareForNextSegment() { if(nextSegment.isNull()) { return prepareForRetry(0); } else { - e->commands.push_back(this); + e->addCommand(this); return false; } } else { diff --git a/src/DownloadEngine.cc b/src/DownloadEngine.cc index 30c75a22..255ef38a 100644 --- a/src/DownloadEngine.cc +++ b/src/DownloadEngine.cc @@ -111,8 +111,8 @@ DownloadEngine::~DownloadEngine() { } void DownloadEngine::cleanQueue() { - std::for_each(commands.begin(), commands.end(), Deleter()); - commands.clear(); + std::for_each(_commands.begin(), _commands.end(), Deleter()); + _commands.clear(); } static void executeCommand(std::deque& commands, @@ -141,18 +141,18 @@ void DownloadEngine::run() { Timer cp; cp.reset(0); - while(!commands.empty() || !_routineCommands.empty()) { + while(!_commands.empty() || !_routineCommands.empty()) { global::wallclock.reset(); if(cp.difference(global::wallclock) >= _refreshInterval) { _refreshInterval = DEFAULT_REFRESH_INTERVAL; cp = global::wallclock; - executeCommand(commands, Command::STATUS_ALL); + executeCommand(_commands, Command::STATUS_ALL); } else { - executeCommand(commands, Command::STATUS_ACTIVE); + executeCommand(_commands, Command::STATUS_ACTIVE); } executeCommand(_routineCommands, Command::STATUS_ALL); afterEachIteration(); - if(!commands.empty()) { + if(!_commands.empty()) { waitData(); } _noWait = false; @@ -250,11 +250,6 @@ void DownloadEngine::setStatCalc(const StatCalcHandle& statCalc) _statCalc = statCalc; } -void DownloadEngine::addCommand(const std::vector& commands) -{ - this->commands.insert(this->commands.end(), commands.begin(), commands.end()); -} - #ifdef ENABLE_ASYNC_DNS bool DownloadEngine::addNameResolverCheck (const SharedHandle& resolver, Command* command) diff --git a/src/DownloadEngine.h b/src/DownloadEngine.h index 3a15a81e..1d7f16fc 100644 --- a/src/DownloadEngine.h +++ b/src/DownloadEngine.h @@ -154,16 +154,16 @@ private: std::multimap::iterator findSocketPoolEntry(const std::string& key); -public: - std::deque commands; + + std::deque _commands; SharedHandle _requestGroupMan; SharedHandle _fileAllocationMan; SharedHandle _checkIntegrityMan; - Option* option; - + Option* _option; +public: DownloadEngine(const SharedHandle& eventPoll); - virtual ~DownloadEngine(); + ~DownloadEngine(); void run(); @@ -186,7 +186,55 @@ public: Command* command); #endif // ENABLE_ASYNC_DNS - void addCommand(const std::vector& commands); + void addCommand(const std::vector& commands) + { + _commands.insert(_commands.end(), commands.begin(), commands.end()); + } + + void addCommand(Command* command) + { + _commands.push_back(command); + } + + const SharedHandle& getRequestGroupMan() const + { + return _requestGroupMan; + } + + void setRequestGroupMan(const SharedHandle& rgman) + { + _requestGroupMan = rgman; + } + + const SharedHandle& getFileAllocationMan() const + { + return _fileAllocationMan; + } + + void setFileAllocationMan(const SharedHandle& faman) + { + _fileAllocationMan = faman; + } + + const SharedHandle& getCheckIntegrityMan() const + { + return _checkIntegrityMan; + } + + void setCheckIntegrityMan(const SharedHandle& ciman) + { + _checkIntegrityMan = ciman; + } + + Option* getOption() const + { + return _option; + } + + void setOption(Option* op) + { + _option = op; + } void setStatCalc(const SharedHandle& statCalc); diff --git a/src/DownloadEngineFactory.cc b/src/DownloadEngineFactory.cc index add91de5..fe79f35a 100644 --- a/src/DownloadEngineFactory.cc +++ b/src/DownloadEngineFactory.cc @@ -134,22 +134,24 @@ DownloadEngineFactory::newDownloadEngine abort(); } DownloadEngineHandle e(new DownloadEngine(eventPoll)); - e->option = op; + e->setOption(op); RequestGroupManHandle requestGroupMan(new RequestGroupMan(requestGroups, MAX_CONCURRENT_DOWNLOADS, op)); - e->_requestGroupMan = requestGroupMan; - e->_fileAllocationMan.reset(new FileAllocationMan()); + e->setRequestGroupMan(requestGroupMan); + e->setFileAllocationMan + (SharedHandle(new FileAllocationMan())); #ifdef ENABLE_MESSAGE_DIGEST - e->_checkIntegrityMan.reset(new CheckIntegrityMan()); + e->setCheckIntegrityMan + (SharedHandle(new CheckIntegrityMan())); #endif // ENABLE_MESSAGE_DIGEST e->addRoutineCommand(new FillRequestGroupCommand(e->newCUID(), e.get())); e->addRoutineCommand(new FileAllocationDispatcherCommand - (e->newCUID(), e->_fileAllocationMan, e.get())); + (e->newCUID(), e->getFileAllocationMan(), e.get())); #ifdef ENABLE_MESSAGE_DIGEST e->addRoutineCommand(new CheckIntegrityDispatcherCommand - (e->newCUID(), e->_checkIntegrityMan, e.get())); + (e->newCUID(), e->getCheckIntegrityMan(), e.get())); #endif // ENABLE_MESSAGE_DIGEST if(op->getAsInt(PREF_AUTO_SAVE_INTERVAL) > 0) { diff --git a/src/FileAllocationCommand.cc b/src/FileAllocationCommand.cc index 7046e7cf..94c2dd87 100644 --- a/src/FileAllocationCommand.cc +++ b/src/FileAllocationCommand.cc @@ -46,6 +46,9 @@ #include "a2functional.h" #include "RecoverableException.h" #include "wallclock.h" +#include "RequestGroupMan.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -60,7 +63,7 @@ FileAllocationCommand::~FileAllocationCommand() {} bool FileAllocationCommand::executeInternal() { if(_requestGroup->isHaltRequested()) { - _e->_fileAllocationMan->dropPickedEntry(); + _e->getFileAllocationMan()->dropPickedEntry(); return true; } _fileAllocationEntry->allocateChunk(); @@ -70,7 +73,7 @@ bool FileAllocationCommand::executeInternal() _timer.difference(global::wallclock), util::itos(_requestGroup->getTotalLength(), true).c_str()); } - _e->_fileAllocationMan->dropPickedEntry(); + _e->getFileAllocationMan()->dropPickedEntry(); std::vector commands; try { @@ -83,14 +86,14 @@ bool FileAllocationCommand::executeInternal() _e->setNoWait(true); return true; } else { - _e->commands.push_back(this); + _e->addCommand(this); return false; } } bool FileAllocationCommand::handleException(Exception& e) { - _e->_fileAllocationMan->dropPickedEntry(); + _e->getFileAllocationMan()->dropPickedEntry(); logger->error(MSG_FILE_ALLOCATION_FAILURE, e, util::itos(cuid).c_str()); logger->error(MSG_DOWNLOAD_NOT_COMPLETE, util::itos(cuid).c_str(), _requestGroup->getDownloadContext()->getBasePath().c_str()); diff --git a/src/FileAllocationDispatcherCommand.cc b/src/FileAllocationDispatcherCommand.cc index c7bc0c22..a8e08167 100644 --- a/src/FileAllocationDispatcherCommand.cc +++ b/src/FileAllocationDispatcherCommand.cc @@ -39,6 +39,8 @@ #include "Logger.h" #include "DownloadContext.h" #include "util.h" +#include "ServerStatMan.h" +#include "CheckIntegrityEntry.h" namespace aria2 { diff --git a/src/FileAllocationEntry.cc b/src/FileAllocationEntry.cc index 216c0685..e6829602 100644 --- a/src/FileAllocationEntry.cc +++ b/src/FileAllocationEntry.cc @@ -39,6 +39,9 @@ #include "PieceStorage.h" #include "DiskAdaptor.h" #include "DownloadContext.h" +#include "RequestGroupMan.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { diff --git a/src/FillRequestGroupCommand.cc b/src/FillRequestGroupCommand.cc index 3c8e0120..d3157a76 100644 --- a/src/FillRequestGroupCommand.cc +++ b/src/FillRequestGroupCommand.cc @@ -41,6 +41,8 @@ #include "Logger.h" #include "DownloadContext.h" #include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -59,7 +61,7 @@ bool FillRequestGroupCommand::execute() if(_e->isHaltRequested()) { return true; } - SharedHandle rgman = _e->_requestGroupMan; + SharedHandle rgman = _e->getRequestGroupMan(); if(rgman->queueCheckRequested()) { try { // During adding RequestGroup, diff --git a/src/FtpDownloadCommand.cc b/src/FtpDownloadCommand.cc index 35e70560..8d4cc556 100644 --- a/src/FtpDownloadCommand.cc +++ b/src/FtpDownloadCommand.cc @@ -44,6 +44,10 @@ #include "FtpConnection.h" #include "Logger.h" #include "DownloadContext.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -69,7 +73,7 @@ bool FtpDownloadCommand::prepareForNextSegment() static_cast(_fileEntry->gtoloff(_segments.front()->getPositionToWrite())) == _fileEntry->getLength()) { Command* command = new FtpFinishDownloadCommand (cuid, req, _fileEntry, _requestGroup, _ftpConnection, e, ctrlSocket); - e->commands.push_back(command); + e->addCommand(command); if(_requestGroup->downloadFinished()) { // To run checksum checking, we had to call following function here. diff --git a/src/FtpFinishDownloadCommand.cc b/src/FtpFinishDownloadCommand.cc index a5acb078..23ba5d99 100644 --- a/src/FtpFinishDownloadCommand.cc +++ b/src/FtpFinishDownloadCommand.cc @@ -48,6 +48,10 @@ #include "RequestGroup.h" #include "Logger.h" #include "DownloadContext.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -73,7 +77,7 @@ bool FtpFinishDownloadCommand::execute() try { unsigned int status = _ftpConnection->receiveResponse(); if(status == 0) { - e->commands.push_back(this); + e->addCommand(this); return false; } if(status != 226) { diff --git a/src/FtpInitiateConnectionCommand.cc b/src/FtpInitiateConnectionCommand.cc index f7097646..fad8b94d 100644 --- a/src/FtpInitiateConnectionCommand.cc +++ b/src/FtpInitiateConnectionCommand.cc @@ -54,6 +54,10 @@ #include "util.h" #include "AuthConfigFactory.h" #include "AuthConfig.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { diff --git a/src/FtpNegotiationCommand.cc b/src/FtpNegotiationCommand.cc index 053af879..b91ccb3a 100644 --- a/src/FtpNegotiationCommand.cc +++ b/src/FtpNegotiationCommand.cc @@ -71,6 +71,9 @@ #include "HttpResponse.h" #include "DlRetryEx.h" #include "CookieStorage.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -114,7 +117,7 @@ bool FtpNegotiationCommand::executeInternal() { } _requestGroup->getURISelector()->tuneDownloadCommand (_fileEntry->getRemainingUris(), command); - e->commands.push_back(command); + e->addCommand(command); return true; } else if(sequence == SEQ_HEAD_OK || sequence == SEQ_DOWNLOAD_ALREADY_COMPLETED) { return true; @@ -128,7 +131,7 @@ bool FtpNegotiationCommand::executeInternal() { } else if(sequence == SEQ_EXIT) { return true; } else { - e->commands.push_back(this); + e->addCommand(this); return false; } } @@ -358,7 +361,7 @@ bool FtpNegotiationCommand::onFileSizeDetermined(uint64_t totalLength) util::fixTaintedBasename(util::percentDecode(req->getFile())))); } _requestGroup->preDownloadProcessing(); - if(e->_requestGroupMan->isSameFileBeingDownloaded(_requestGroup)) { + if(e->getRequestGroupMan()->isSameFileBeingDownloaded(_requestGroup)) { throw DOWNLOAD_FAILURE_EXCEPTION (StringFormat(EX_DUPLICATE_FILE_DOWNLOAD, _requestGroup->getFirstFilePath().c_str()).str()); diff --git a/src/HaveEraseCommand.cc b/src/HaveEraseCommand.cc index d8e4fd47..4fce7c58 100644 --- a/src/HaveEraseCommand.cc +++ b/src/HaveEraseCommand.cc @@ -38,6 +38,9 @@ #include "PieceStorage.h" #include "RequestGroup.h" #include "DownloadContext.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -48,16 +51,17 @@ HaveEraseCommand::~HaveEraseCommand() {} void HaveEraseCommand::preProcess() { - if(_e->_requestGroupMan->downloadFinished() || _e->isHaltRequested()) { + if(_e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested()) { _exit = true; } } void HaveEraseCommand::process() { - size_t numLoop = _e->_requestGroupMan->countRequestGroup(); + size_t numLoop = _e->getRequestGroupMan()->countRequestGroup(); for(size_t i = 0; i < numLoop; ++i) { - PieceStorageHandle ps = _e->_requestGroupMan->getRequestGroup(i)->getPieceStorage(); + PieceStorageHandle ps = + _e->getRequestGroupMan()->getRequestGroup(i)->getPieceStorage(); if(!ps.isNull()) { ps->removeAdvertisedPiece(5); } diff --git a/src/HttpDownloadCommand.cc b/src/HttpDownloadCommand.cc index b43c931e..5816b13a 100644 --- a/src/HttpDownloadCommand.cc +++ b/src/HttpDownloadCommand.cc @@ -48,6 +48,10 @@ #include "Range.h" #include "DownloadContext.h" #include "Decoder.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -78,7 +82,7 @@ bool HttpDownloadCommand::prepareForNextSegment() { if(resolveProxyMethod(req->getProtocol()) == V_GET) { command->setProxyRequest(createProxyRequest()); } - e->commands.push_back(command); + e->addCommand(command); return true; } else { if(req->isPipeliningEnabled() || diff --git a/src/HttpInitiateConnectionCommand.cc b/src/HttpInitiateConnectionCommand.cc index ca650ea8..b16b9d8c 100644 --- a/src/HttpInitiateConnectionCommand.cc +++ b/src/HttpInitiateConnectionCommand.cc @@ -49,7 +49,10 @@ #include "A2STR.h" #include "DownloadContext.h" #include "util.h" - +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { HttpInitiateConnectionCommand::HttpInitiateConnectionCommand diff --git a/src/HttpListenCommand.cc b/src/HttpListenCommand.cc index a0d1db26..4c0b5529 100644 --- a/src/HttpListenCommand.cc +++ b/src/HttpListenCommand.cc @@ -45,6 +45,9 @@ #include "prefs.h" #include "Option.h" #include "util.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -60,7 +63,7 @@ HttpListenCommand::~HttpListenCommand() bool HttpListenCommand::execute() { - if(_e->_requestGroupMan->downloadFinished() || _e->isHaltRequested()) { + if(_e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested()) { return true; } try { @@ -77,14 +80,14 @@ bool HttpListenCommand::execute() HttpServerCommand* c = new HttpServerCommand(_e->newCUID(), _e, socket); _e->setNoWait(true); - _e->commands.push_back(c); + _e->addCommand(c); } } catch(RecoverableException& e) { if(logger->debug()) { logger->debug(MSG_ACCEPT_FAILURE, e, util::itos(cuid).c_str()); } } - _e->commands.push_back(this); + _e->addCommand(this); return false; } @@ -100,7 +103,7 @@ bool HttpListenCommand::bindPort(uint16_t port) } try { int flags = 0; - if(_e->option->getAsBool(PREF_XML_RPC_LISTEN_ALL)) { + if(_e->getOption()->getAsBool(PREF_XML_RPC_LISTEN_ALL)) { flags = AI_PASSIVE; } _serverSocket->bind(port, flags); diff --git a/src/HttpRequestCommand.cc b/src/HttpRequestCommand.cc index 4a7d3c8b..fa377b43 100644 --- a/src/HttpRequestCommand.cc +++ b/src/HttpRequestCommand.cc @@ -53,6 +53,10 @@ #include "AuthConfigFactory.h" #include "AuthConfig.h" #include "DownloadContext.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -116,7 +120,7 @@ bool HttpRequestCommand::executeInternal() { if(!socket->initiateSecureConnection(req->getHost())) { setReadCheckSocketIf(socket, socket->wantRead()); setWriteCheckSocketIf(socket, socket->wantWrite()); - e->commands.push_back(this); + e->addCommand(this); return false; } } @@ -164,12 +168,12 @@ bool HttpRequestCommand::executeInternal() { Command* command = new HttpResponseCommand(cuid, req, _fileEntry, _requestGroup, _httpConnection, e, socket); - e->commands.push_back(command); + e->addCommand(command); return true; } else { setReadCheckSocketIf(socket, socket->wantRead()); setWriteCheckSocketIf(socket, socket->wantWrite()); - e->commands.push_back(this); + e->addCommand(this); return false; } } diff --git a/src/HttpResponseCommand.cc b/src/HttpResponseCommand.cc index b316128b..fce986ed 100644 --- a/src/HttpResponseCommand.cc +++ b/src/HttpResponseCommand.cc @@ -66,6 +66,9 @@ #include "AuthConfig.h" #include "a2functional.h" #include "URISelector.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -98,7 +101,7 @@ bool HttpResponseCommand::executeInternal() // For socket->wantRead() == true, setReadCheckSocket(socket) is already // done in the constructor. setWriteCheckSocketIf(socket, socket->wantWrite()); - e->commands.push_back(this); + e->addCommand(this); return false; } // check HTTP status number @@ -137,7 +140,7 @@ bool HttpResponseCommand::executeInternal() } _fileEntry->setContentType(httpResponse->getContentType()); _requestGroup->preDownloadProcessing(); - if(e->_requestGroupMan->isSameFileBeingDownloaded(_requestGroup)) { + if(e->getRequestGroupMan()->isSameFileBeingDownloaded(_requestGroup)) { throw DOWNLOAD_FAILURE_EXCEPTION (StringFormat(EX_DUPLICATE_FILE_DOWNLOAD, _requestGroup->getFirstFilePath().c_str()).str()); @@ -173,12 +176,12 @@ bool HttpResponseCommand::executeInternal() // Also we can't resume in this case too. So truncate the file // anyway. _requestGroup->getPieceStorage()->getDiskAdaptor()->truncate(0); - e->commands.push_back + e->addCommand (createHttpDownloadCommand(httpResponse, getTransferEncodingDecoder(httpResponse), getContentEncodingDecoder(httpResponse))); } else { - e->commands.push_back(createHttpDownloadCommand(httpResponse, + e->addCommand(createHttpDownloadCommand(httpResponse, getTransferEncodingDecoder(httpResponse))); } return true; @@ -347,7 +350,7 @@ bool HttpResponseCommand::handleOtherEncoding // AbstractCommand::execute() _requestGroup->getSegmentMan()->getSegment(cuid, 0); - e->commands.push_back + e->addCommand (createHttpDownloadCommand(httpResponse, getTransferEncodingDecoder(httpResponse), getContentEncodingDecoder(httpResponse))); @@ -376,7 +379,7 @@ bool HttpResponseCommand::skipResponseBody e->setNoWait(true); } - e->commands.push_back(command); + e->addCommand(command); return true; } diff --git a/src/HttpServerBodyCommand.cc b/src/HttpServerBodyCommand.cc index 1fdbfe67..5067a843 100644 --- a/src/HttpServerBodyCommand.cc +++ b/src/HttpServerBodyCommand.cc @@ -52,6 +52,9 @@ #include "DownloadContext.h" #include "wallclock.h" #include "util.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -76,7 +79,7 @@ HttpServerBodyCommand::~HttpServerBodyCommand() bool HttpServerBodyCommand::execute() { - if(_e->_requestGroupMan->downloadFinished() || _e->isHaltRequested()) { + if(_e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested()) { return true; } try { @@ -97,14 +100,14 @@ bool HttpServerBodyCommand::execute() _httpServer->feedResponse(responseData, "text/xml"); Command* command = new HttpServerResponseCommand(cuid, _httpServer, _e, _socket); - _e->commands.push_back(command); + _e->addCommand(command); _e->setNoWait(true); return true; } else { return true; } } else { - _e->commands.push_back(this); + _e->addCommand(this); return false; } } else { @@ -112,7 +115,7 @@ bool HttpServerBodyCommand::execute() logger->info("HTTP request body timeout."); return true; } else { - _e->commands.push_back(this); + _e->addCommand(this); return false; } } diff --git a/src/HttpServerCommand.cc b/src/HttpServerCommand.cc index 6a65c8b0..87ea8fb0 100644 --- a/src/HttpServerCommand.cc +++ b/src/HttpServerCommand.cc @@ -48,6 +48,9 @@ #include "util.h" #include "DownloadContext.h" #include "wallclock.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -60,8 +63,8 @@ HttpServerCommand::HttpServerCommand(cuid_t cuid, DownloadEngine* e, { setStatus(Command::STATUS_ONESHOT_REALTIME); _e->addSocketForReadCheck(_socket, this); - _httpServer->setUsernamePassword(_e->option->get(PREF_XML_RPC_USER), - _e->option->get(PREF_XML_RPC_PASSWD)); + _httpServer->setUsernamePassword(_e->getOption()->get(PREF_XML_RPC_USER), + _e->getOption()->get(PREF_XML_RPC_PASSWD)); #ifdef HAVE_LIBZ _httpServer->enableGZip(); #else // !HAVE_LIBZ @@ -88,7 +91,7 @@ HttpServerCommand::~HttpServerCommand() bool HttpServerCommand::execute() { - if(_e->_requestGroupMan->downloadFinished() || _e->isHaltRequested()) { + if(_e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested()) { return true; } try { @@ -99,7 +102,7 @@ bool HttpServerCommand::execute() header = _httpServer->receiveRequest(); if(header.isNull()) { - _e->commands.push_back(this); + _e->addCommand(this); return false; } if(!_httpServer->authenticate()) { @@ -109,12 +112,12 @@ bool HttpServerCommand::execute() "","text/html"); Command* command = new HttpServerResponseCommand(cuid, _httpServer, _e, _socket); - _e->commands.push_back(command); + _e->addCommand(command); _e->setNoWait(true); return true; } if(static_cast - (_e->option->getAsInt(PREF_XML_RPC_MAX_REQUEST_SIZE)) < + (_e->getOption()->getAsInt(PREF_XML_RPC_MAX_REQUEST_SIZE)) < _httpServer->getContentLength()) { logger->info("Request too long. ContentLength=%s." " See --xml-rpc-max-request-size option to loose" @@ -124,7 +127,7 @@ bool HttpServerCommand::execute() } Command* command = new HttpServerBodyCommand(cuid, _httpServer, _e, _socket); - _e->commands.push_back(command); + _e->addCommand(command); _e->setNoWait(true); return true; } else { @@ -132,7 +135,7 @@ bool HttpServerCommand::execute() logger->info("HTTP request timeout."); return true; } else { - _e->commands.push_back(this); + _e->addCommand(this); return false; } } diff --git a/src/HttpServerResponseCommand.cc b/src/HttpServerResponseCommand.cc index e3a163f5..dd464a97 100644 --- a/src/HttpServerResponseCommand.cc +++ b/src/HttpServerResponseCommand.cc @@ -43,6 +43,9 @@ #include "FileEntry.h" #include "wallclock.h" #include "util.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -67,7 +70,7 @@ HttpServerResponseCommand::~HttpServerResponseCommand() bool HttpServerResponseCommand::execute() { - if(_e->_requestGroupMan->downloadFinished() || _e->isHaltRequested()) { + if(_e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested()) { return true; } try { @@ -88,8 +91,7 @@ bool HttpServerResponseCommand::execute() if(logger->info()) { logger->info("CUID#%s - Persist connection.", util::itos(cuid).c_str()); } - _e->commands.push_back - (new HttpServerCommand(cuid, _httpServer, _e, _socket)); + _e->addCommand(new HttpServerCommand(cuid, _httpServer, _e, _socket)); } return true; } else { @@ -100,7 +102,7 @@ bool HttpServerResponseCommand::execute() } return true; } else { - _e->commands.push_back(this); + _e->addCommand(this); return false; } } diff --git a/src/HttpSkipResponseCommand.cc b/src/HttpSkipResponseCommand.cc index 3e4e286e..51dbfebf 100644 --- a/src/HttpSkipResponseCommand.cc +++ b/src/HttpSkipResponseCommand.cc @@ -54,6 +54,10 @@ #include "AuthConfigFactory.h" #include "AuthConfig.h" #include "DownloadContext.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -137,7 +141,7 @@ bool HttpSkipResponseCommand::executeInternal() return processResponse(); } else { setWriteCheckSocketIf(socket, socket->wantWrite()); - e->commands.push_back(this); + e->addCommand(this); return false; } } diff --git a/src/InitiateConnectionCommand.cc b/src/InitiateConnectionCommand.cc index 8b049a87..05729419 100644 --- a/src/InitiateConnectionCommand.cc +++ b/src/InitiateConnectionCommand.cc @@ -48,6 +48,10 @@ #include "a2functional.h" #include "InitiateConnectionCommandFactory.h" #include "util.h" +#include "RequestGroupMan.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -82,13 +86,13 @@ bool InitiateConnectionCommand::executeInternal() { std::vector addrs; std::string ipaddr = resolveHostname(addrs, hostname, port); if(ipaddr.empty()) { - e->commands.push_back(this); + e->addCommand(this); return false; } try { Command* command = createNextCommand(hostname, ipaddr, port, addrs, proxyRequest); - e->commands.push_back(command); + e->addCommand(command); return true; } catch(RecoverableException& ex) { // Catch exception and retry another address. @@ -106,7 +110,7 @@ bool InitiateConnectionCommand::executeInternal() { InitiateConnectionCommandFactory::createInitiateConnectionCommand (cuid, req, _fileEntry, _requestGroup, e); e->setNoWait(true); - e->commands.push_back(command); + e->addCommand(command); return true; } e->removeCachedIPAddress(hostname, port); diff --git a/src/InitiateConnectionCommandFactory.cc b/src/InitiateConnectionCommandFactory.cc index cff833fc..008132f9 100644 --- a/src/InitiateConnectionCommandFactory.cc +++ b/src/InitiateConnectionCommandFactory.cc @@ -44,6 +44,10 @@ #include "prefs.h" #include "SocketCore.h" #include "DownloadContext.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { diff --git a/src/InitiatorMSEHandshakeCommand.cc b/src/InitiatorMSEHandshakeCommand.cc index 2bd27e9c..062199ca 100644 --- a/src/InitiatorMSEHandshakeCommand.cc +++ b/src/InitiatorMSEHandshakeCommand.cc @@ -54,6 +54,10 @@ #include "DownloadContext.h" #include "bittorrent_helper.h" #include "util.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -157,13 +161,13 @@ bool InitiatorMSEHandshakeCommand::executeInternal() { socket, PeerInteractionCommand::INITIATOR_SEND_HANDSHAKE, peerConnection); - e->commands.push_back(c); + e->addCommand(c); return true; } break; } } - e->commands.push_back(this); + e->addCommand(this); return false; } @@ -183,7 +187,7 @@ bool InitiatorMSEHandshakeCommand::prepareForNextPeer(time_t wait) e, _btRuntime); command->setPeerStorage(_peerStorage); command->setPieceStorage(_pieceStorage); - e->commands.push_back(command); + e->addCommand(command); } return true; } else { @@ -197,7 +201,7 @@ bool InitiatorMSEHandshakeCommand::prepareForNextPeer(time_t wait) _btRuntime, false); command->setPeerStorage(_peerStorage); command->setPieceStorage(_pieceStorage); - e->commands.push_back(command); + e->addCommand(command); return true; } } diff --git a/src/LpdDispatchMessageCommand.cc b/src/LpdDispatchMessageCommand.cc index 50cd94fb..fd7c350e 100644 --- a/src/LpdDispatchMessageCommand.cc +++ b/src/LpdDispatchMessageCommand.cc @@ -40,6 +40,11 @@ #include "RecoverableException.h" #include "SocketCore.h" #include "util.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" +#include "FileEntry.h" namespace aria2 { @@ -81,7 +86,7 @@ bool LpdDispatchMessageCommand::execute() _tryCount = 0; } } - _e->commands.push_back(this); + _e->addCommand(this); return false; } diff --git a/src/LpdReceiveMessageCommand.cc b/src/LpdReceiveMessageCommand.cc index ac16b06d..b067e760 100644 --- a/src/LpdReceiveMessageCommand.cc +++ b/src/LpdReceiveMessageCommand.cc @@ -49,6 +49,9 @@ #include "BtAnnounce.h" #include "LpdMessage.h" #include "bittorrent_helper.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -75,7 +78,7 @@ LpdReceiveMessageCommand::~LpdReceiveMessageCommand() bool LpdReceiveMessageCommand::execute() { - if(_e->_requestGroupMan->downloadFinished() || _e->isHaltRequested()) { + if(_e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested()) { return true; } for(size_t i = 0; i < 20; ++i) { @@ -127,7 +130,7 @@ bool LpdReceiveMessageCommand::execute() } } } - _e->commands.push_back(this); + _e->addCommand(this); return false; } diff --git a/src/MultiUrlRequestInfo.cc b/src/MultiUrlRequestInfo.cc index 942caa33..aebd6451 100644 --- a/src/MultiUrlRequestInfo.cc +++ b/src/MultiUrlRequestInfo.cc @@ -57,6 +57,8 @@ #include "DownloadContext.h" #include "SessionSerializer.h" #include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" #ifdef ENABLE_SSL # include "SocketCore.h" # include "TLSContext.h" @@ -176,8 +178,8 @@ downloadresultcode::RESULT MultiUrlRequestInfo::execute() std::string serverStatIf = _option->get(PREF_SERVER_STAT_IF); if(!serverStatIf.empty()) { - e->_requestGroupMan->loadServerStat(serverStatIf); - e->_requestGroupMan->removeStaleServerStat + e->getRequestGroupMan()->loadServerStat(serverStatIf); + e->getRequestGroupMan()->removeStaleServerStat (_option->getAsInt(PREF_SERVER_STAT_TIMEOUT)); } e->setStatCalc(_statCalc); @@ -195,12 +197,13 @@ downloadresultcode::RESULT MultiUrlRequestInfo::execute() std::string serverStatOf = _option->get(PREF_SERVER_STAT_OF); if(!serverStatOf.empty()) { - e->_requestGroupMan->saveServerStat(serverStatOf); + e->getRequestGroupMan()->saveServerStat(serverStatOf); } - e->_requestGroupMan->showDownloadResults(_summaryOut); + e->getRequestGroupMan()->showDownloadResults(_summaryOut); _summaryOut << std::flush; - RequestGroupMan::DownloadStat s = e->_requestGroupMan->getDownloadStat(); + RequestGroupMan::DownloadStat s = + e->getRequestGroupMan()->getDownloadStat(); if(!s.allCompleted()) { printMessageForContinue(); if(s.getLastErrorResult() == downloadresultcode::FINISHED && @@ -210,7 +213,7 @@ downloadresultcode::RESULT MultiUrlRequestInfo::execute() returnValue = s.getLastErrorResult(); } } - SessionSerializer sessionSerializer(e->_requestGroupMan); + SessionSerializer sessionSerializer(e->getRequestGroupMan()); // TODO Add option: --save-session-status=error,inprogress,waiting if(!_option->blank(PREF_SAVE_SESSION)) { const std::string& filename = _option->get(PREF_SAVE_SESSION); diff --git a/src/PeerAbstractCommand.cc b/src/PeerAbstractCommand.cc index b794447a..0259ee08 100644 --- a/src/PeerAbstractCommand.cc +++ b/src/PeerAbstractCommand.cc @@ -45,6 +45,11 @@ #include "StringFormat.h" #include "wallclock.h" #include "util.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" +#include "FileEntry.h" namespace aria2 { @@ -65,7 +70,7 @@ PeerAbstractCommand::PeerAbstractCommand(cuid_t cuid, setReadCheckSocket(socket); } // TODO referring global option - timeout = e->option->getAsInt(PREF_BT_TIMEOUT); + timeout = e->getOption()->getAsInt(PREF_BT_TIMEOUT); } PeerAbstractCommand::~PeerAbstractCommand() diff --git a/src/PeerChokeCommand.cc b/src/PeerChokeCommand.cc index bd4a502c..30e3d7dd 100644 --- a/src/PeerChokeCommand.cc +++ b/src/PeerChokeCommand.cc @@ -36,6 +36,11 @@ #include "DownloadEngine.h" #include "BtRuntime.h" #include "PeerStorage.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" +#include "FileEntry.h" namespace aria2 { @@ -53,7 +58,7 @@ bool PeerChokeCommand::execute() { if(_peerStorage->chokeRoundIntervalElapsed()) { _peerStorage->executeChoke(); } - e->commands.push_back(this); + e->addCommand(this); return false; } diff --git a/src/PeerInitiateConnectionCommand.cc b/src/PeerInitiateConnectionCommand.cc index 4f3012af..8374222a 100644 --- a/src/PeerInitiateConnectionCommand.cc +++ b/src/PeerInitiateConnectionCommand.cc @@ -49,6 +49,10 @@ #include "RequestGroup.h" #include "DownloadContext.h" #include "util.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "RequestGroupMan.h" +#include "ServerStatMan.h" namespace aria2 { @@ -89,13 +93,13 @@ bool PeerInitiateConnectionCommand::executeInternal() { _btRuntime, socket); c->setPeerStorage(_peerStorage); c->setPieceStorage(_pieceStorage); - e->commands.push_back(c); + e->addCommand(c); } else { PeerInteractionCommand* command = new PeerInteractionCommand (cuid, _requestGroup, peer, e, _btRuntime, _pieceStorage, _peerStorage, socket, PeerInteractionCommand::INITIATOR_SEND_HANDSHAKE); - e->commands.push_back(command); + e->addCommand(command); } return true; } @@ -110,7 +114,7 @@ bool PeerInitiateConnectionCommand::prepareForNextPeer(time_t wait) { _btRuntime); command->setPeerStorage(_peerStorage); command->setPieceStorage(_pieceStorage); - e->commands.push_back(command); + e->addCommand(command); } return true; } diff --git a/src/PeerInteractionCommand.cc b/src/PeerInteractionCommand.cc index a4c0c1a5..bd24bf4a 100644 --- a/src/PeerInteractionCommand.cc +++ b/src/PeerInteractionCommand.cc @@ -72,6 +72,9 @@ #include "bittorrent_helper.h" #include "UTMetadataRequestFactory.h" #include "UTMetadataRequestTracker.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -155,7 +158,7 @@ PeerInteractionCommand::PeerInteractionCommand dispatcher->setPeerStorage(peerStorage); dispatcher->setRequestTimeout(getOption()->getAsInt(PREF_BT_REQUEST_TIMEOUT)); dispatcher->setBtMessageFactory(factory); - dispatcher->setRequestGroupMan(e->_requestGroupMan); + dispatcher->setRequestGroupMan(e->getRequestGroupMan()); DefaultBtMessageReceiverHandle receiver(new DefaultBtMessageReceiver()); receiver->setCuid(cuid); @@ -187,7 +190,7 @@ PeerInteractionCommand::PeerInteractionCommand btInteractive->setExtensionMessageRegistry(exMsgRegistry); btInteractive->setKeepAliveInterval (getOption()->getAsInt(PREF_BT_KEEP_ALIVE_INTERVAL)); - btInteractive->setRequestGroupMan(e->_requestGroupMan); + btInteractive->setRequestGroupMan(e->getRequestGroupMan()); btInteractive->setBtMessageFactory(factory); if((metadataGetMode || torrentAttrs[bittorrent::PRIVATE].i() == 0) && !peer->isLocalPeer()) { @@ -301,7 +304,7 @@ bool PeerInteractionCommand::executeInternal() { setWriteCheckSocket(socket); } - if(e->_requestGroupMan->doesOverallDownloadSpeedExceed() || + if(e->getRequestGroupMan()->doesOverallDownloadSpeedExceed() || _requestGroup->doesDownloadSpeedExceed()) { disableReadCheckSocket(); setNoCheck(true); @@ -316,7 +319,7 @@ bool PeerInteractionCommand::executeInternal() { if(btInteractive->countPendingMessage() > 0) { setNoCheck(true); } - e->commands.push_back(this); + e->addCommand(this); return false; } @@ -330,7 +333,7 @@ bool PeerInteractionCommand::prepareForNextPeer(time_t wait) { (peer->usedBy(), _requestGroup, peer, e, _btRuntime); command->setPeerStorage(_peerStorage); command->setPieceStorage(_pieceStorage); - e->commands.push_back(command); + e->addCommand(command); } return true; } diff --git a/src/PeerListenCommand.cc b/src/PeerListenCommand.cc index 03d9bf1b..133845d7 100644 --- a/src/PeerListenCommand.cc +++ b/src/PeerListenCommand.cc @@ -48,6 +48,9 @@ #include "SimpleRandomizer.h" #include "FileEntry.h" #include "util.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -108,7 +111,7 @@ uint16_t PeerListenCommand::getPort() const } bool PeerListenCommand::execute() { - if(e->isHaltRequested() || e->_requestGroupMan->downloadFinished()) { + if(e->isHaltRequested() || e->getRequestGroupMan()->downloadFinished()) { return true; } for(int i = 0; i < 3 && socket->isReadable(0); ++i) { @@ -124,7 +127,7 @@ bool PeerListenCommand::execute() { cuid_t cuid = e->newCUID(); Command* command = new ReceiverMSEHandshakeCommand(cuid, peer, e, peerSocket); - e->commands.push_back(command); + e->addCommand(command); if(logger->debug()) { logger->debug("Accepted the connection from %s:%u.", peer->ipaddr.c_str(), @@ -136,7 +139,7 @@ bool PeerListenCommand::execute() { logger->debug(MSG_ACCEPT_FAILURE, ex, util::itos(cuid).c_str()); } } - e->commands.push_back(this); + e->addCommand(this); return false; } diff --git a/src/PeerReceiveHandshakeCommand.cc b/src/PeerReceiveHandshakeCommand.cc index ab280de7..323fb9f7 100644 --- a/src/PeerReceiveHandshakeCommand.cc +++ b/src/PeerReceiveHandshakeCommand.cc @@ -56,6 +56,9 @@ #include "RequestGroupMan.h" #include "StringFormat.h" #include "RequestGroup.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -78,7 +81,7 @@ PeerReceiveHandshakeCommand::~PeerReceiveHandshakeCommand() {} bool PeerReceiveHandshakeCommand::exitBeforeExecute() { - return e->isHaltRequested() || e->_requestGroupMan->downloadFinished(); + return e->isHaltRequested() || e->getRequestGroupMan()->downloadFinished(); } bool PeerReceiveHandshakeCommand::executeInternal() @@ -141,7 +144,7 @@ bool PeerReceiveHandshakeCommand::executeInternal() socket, PeerInteractionCommand::RECEIVER_WAIT_HANDSHAKE, _peerConnection); - e->commands.push_back(command); + e->addCommand(command); if(logger->debug()) { logger->debug(MSG_INCOMING_PEER_CONNECTION, util::itos(cuid).c_str(), @@ -151,7 +154,7 @@ bool PeerReceiveHandshakeCommand::executeInternal() } return true; } else { - e->commands.push_back(this); + e->addCommand(this); return false; } } diff --git a/src/RealtimeCommand.cc b/src/RealtimeCommand.cc index 210258d3..0a32e467 100644 --- a/src/RealtimeCommand.cc +++ b/src/RealtimeCommand.cc @@ -37,6 +37,10 @@ #include "Exception.h" #include "RequestGroup.h" #include "DownloadContext.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { diff --git a/src/ReceiverMSEHandshakeCommand.cc b/src/ReceiverMSEHandshakeCommand.cc index 43498acb..822da7ff 100644 --- a/src/ReceiverMSEHandshakeCommand.cc +++ b/src/ReceiverMSEHandshakeCommand.cc @@ -55,6 +55,9 @@ #include "BtAnnounce.h" #include "BtRuntime.h" #include "BtProgressInfoFile.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -66,9 +69,9 @@ ReceiverMSEHandshakeCommand::ReceiverMSEHandshakeCommand PeerAbstractCommand(cuid, peer, e, s), _sequence(RECEIVER_IDENTIFY_HANDSHAKE), - _mseHandshake(new MSEHandshake(cuid, s, e->option)) + _mseHandshake(new MSEHandshake(cuid, s, e->getOption())) { - setTimeout(e->option->getAsInt(PREF_PEER_CONNECTION_TIMEOUT)); + setTimeout(e->getOption()->getAsInt(PREF_PEER_CONNECTION_TIMEOUT)); } ReceiverMSEHandshakeCommand::~ReceiverMSEHandshakeCommand() @@ -78,7 +81,7 @@ ReceiverMSEHandshakeCommand::~ReceiverMSEHandshakeCommand() bool ReceiverMSEHandshakeCommand::exitBeforeExecute() { - return e->isHaltRequested() || e->_requestGroupMan->downloadFinished(); + return e->isHaltRequested() || e->getRequestGroupMan()->downloadFinished(); } bool ReceiverMSEHandshakeCommand::executeInternal() @@ -94,7 +97,7 @@ bool ReceiverMSEHandshakeCommand::executeInternal() _sequence = RECEIVER_WAIT_KEY; break; case MSEHandshake::HANDSHAKE_LEGACY: { - if(e->option->getAsBool(PREF_BT_REQUIRE_CRYPTO)) { + if(e->getOption()->getAsBool(PREF_BT_REQUIRE_CRYPTO)) { throw DL_ABORT_EX("The legacy BitTorrent handshake is not acceptable by the preference."); } SharedHandle peerConnection @@ -103,7 +106,7 @@ bool ReceiverMSEHandshakeCommand::executeInternal() _mseHandshake->getBufferLength()); Command* c = new PeerReceiveHandshakeCommand(cuid, peer, e, socket, peerConnection); - e->commands.push_back(c); + e->addCommand(c); return true; } default: @@ -175,7 +178,7 @@ bool ReceiverMSEHandshakeCommand::executeInternal() } break; } - e->commands.push_back(this); + e->addCommand(this); return false; } @@ -196,7 +199,7 @@ void ReceiverMSEHandshakeCommand::createCommand() // match, then drop connection. Command* c = new PeerReceiveHandshakeCommand(cuid, peer, e, socket, peerConnection); - e->commands.push_back(c); + e->addCommand(c); } } // namespace aria2 diff --git a/src/RequestGroup.cc b/src/RequestGroup.cc index 3a526821..4c0f7bb7 100644 --- a/src/RequestGroup.cc +++ b/src/RequestGroup.cc @@ -76,6 +76,7 @@ #include "a2functional.h" #include "SocketCore.h" #include "SimpleRandomizer.h" +#include "ServerStatMan.h" #ifdef ENABLE_MESSAGE_DIGEST # include "CheckIntegrityCommand.h" #endif // ENABLE_MESSAGE_DIGEST @@ -221,7 +222,7 @@ void RequestGroup::createInitialCommand // Use UnknownLengthPieceStorage. initPieceStorage(); } else { - if(e->_requestGroupMan->isSameFileBeingDownloaded(this)) { + if(e->getRequestGroupMan()->isSameFileBeingDownloaded(this)) { throw DOWNLOAD_FAILURE_EXCEPTION (StringFormat(EX_DUPLICATE_FILE_DOWNLOAD, _downloadContext->getBasePath().c_str()).str()); @@ -356,7 +357,7 @@ void RequestGroup::createInitialCommand command->setTaskFactory(DHTRegistry::_taskFactory); command->setRoutingTable(DHTRegistry::_routingTable); command->setLocalNode(DHTRegistry::_localNode); - e->commands.push_back(command); + e->addCommand(command); } } SharedHandle entry(new BtCheckIntegrityEntry(this)); @@ -379,7 +380,7 @@ void RequestGroup::createInitialCommand _downloadContext->getTotalLength() == 0) { createNextCommand(commands, e, 1); }else { - if(e->_requestGroupMan->isSameFileBeingDownloaded(this)) { + if(e->getRequestGroupMan()->isSameFileBeingDownloaded(this)) { throw DOWNLOAD_FAILURE_EXCEPTION (StringFormat(EX_DUPLICATE_FILE_DOWNLOAD, _downloadContext->getBasePath().c_str()).str()); @@ -408,7 +409,7 @@ void RequestGroup::createInitialCommand } else { // In this context, multiple FileEntry objects are in // DownloadContext. - if(e->_requestGroupMan->isSameFileBeingDownloaded(this)) { + if(e->getRequestGroupMan()->isSameFileBeingDownloaded(this)) { throw DOWNLOAD_FAILURE_EXCEPTION (StringFormat(EX_DUPLICATE_FILE_DOWNLOAD, _downloadContext->getBasePath().c_str()).str()); @@ -467,7 +468,7 @@ void RequestGroup::processCheckIntegrityEntry // enableSaveControlFile() will be called after hash checking is // done. See CheckIntegrityCommand. disableSaveControlFile(); - e->_checkIntegrityMan->pushEntry(entry); + e->getCheckIntegrityMan()->pushEntry(entry); } else #endif // ENABLE_MESSAGE_DIGEST { diff --git a/src/RequestGroupMan.cc b/src/RequestGroupMan.cc index 8f939e33..029a317b 100644 --- a/src/RequestGroupMan.cc +++ b/src/RequestGroupMan.cc @@ -67,6 +67,8 @@ #include "Command.h" #include "FileEntry.h" #include "StringFormat.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -379,7 +381,7 @@ public: ("Adding %lu RequestGroups as a result of PostDownloadHandler.", static_cast(nextGroups.size())); } - _e->_requestGroupMan->insertReservedGroup(0, nextGroups); + _e->getRequestGroupMan()->insertReservedGroup(0, nextGroups); } } else { group->saveControlFile(); @@ -395,11 +397,11 @@ public: group->releaseRuntimeResource(_e); if(group->isPauseRequested()) { group->setForceHaltRequested(false); - executeHookByOptName(group, _e->option, PREF_ON_DOWNLOAD_PAUSE); + executeHookByOptName(group, _e->getOption(), PREF_ON_DOWNLOAD_PAUSE); // TODO Should we have to prepend spend uris to remaining uris // in case PREF_REUSE_URI is disabed? } else { - executeStopHook(_downloadResults.back(), _e->option); + executeStopHook(_downloadResults.back(), _e->getOption()); } } } @@ -541,7 +543,7 @@ void RequestGroupMan::fillRequestGroupFromReserver(DownloadEngine* e) ++count; e->addCommand(commands); commands.clear(); - executeHookByOptName(groupToAdd, e->option, PREF_ON_DOWNLOAD_START); + executeHookByOptName(groupToAdd, e->getOption(), PREF_ON_DOWNLOAD_START); } catch(RecoverableException& ex) { _logger->error(EX_EXCEPTION_CAUGHT, ex); if(_logger->debug()) { diff --git a/src/SeedCheckCommand.cc b/src/SeedCheckCommand.cc index 4d56d3f0..e7515fd6 100644 --- a/src/SeedCheckCommand.cc +++ b/src/SeedCheckCommand.cc @@ -41,6 +41,10 @@ #include "message.h" #include "RequestGroup.h" #include "DownloadContext.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -83,7 +87,7 @@ bool SeedCheckCommand::execute() { _btRuntime->setHalt(true); } } - e->commands.push_back(this); + e->addCommand(this); return false; } diff --git a/src/SequentialDispatcherCommand.h b/src/SequentialDispatcherCommand.h index 7128af16..37bdb030 100644 --- a/src/SequentialDispatcherCommand.h +++ b/src/SequentialDispatcherCommand.h @@ -62,11 +62,11 @@ public: virtual bool execute() { - if(_e->_requestGroupMan->downloadFinished() || _e->isHaltRequested()) { + if(_e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested()) { return true; } if(_picker->hasNext() && !_picker->isPicked()) { - _e->commands.push_back(createCommand(_picker->pickNext())); + _e->addCommand(createCommand(_picker->pickNext())); _e->setNoWait(true); } diff --git a/src/SleepCommand.cc b/src/SleepCommand.cc index e8a85ae5..faaba063 100644 --- a/src/SleepCommand.cc +++ b/src/SleepCommand.cc @@ -37,6 +37,10 @@ #include "DownloadEngine.h" #include "DownloadContext.h" #include "wallclock.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -54,11 +58,11 @@ bool SleepCommand::execute() { if(_requestGroup->downloadFinished() || _requestGroup->isHaltRequested()) { return true; } else if(checkPoint.difference(global::wallclock) >= wait) { - engine->commands.push_back(nextCommand); + engine->addCommand(nextCommand); nextCommand = 0; return true; } else { - engine->commands.push_back(this); + engine->addCommand(this); return false; } } diff --git a/src/StreamCheckIntegrityEntry.cc b/src/StreamCheckIntegrityEntry.cc index 27430ebd..1c88c212 100644 --- a/src/StreamCheckIntegrityEntry.cc +++ b/src/StreamCheckIntegrityEntry.cc @@ -37,6 +37,8 @@ #include "DownloadEngine.h" #include "StreamFileAllocationEntry.h" #include "DownloadContext.h" +#include "RequestGroupMan.h" +#include "ServerStatMan.h" namespace aria2 { diff --git a/src/StreamFileAllocationEntry.cc b/src/StreamFileAllocationEntry.cc index 00800e6e..c0282f8a 100644 --- a/src/StreamFileAllocationEntry.cc +++ b/src/StreamFileAllocationEntry.cc @@ -42,6 +42,9 @@ #include "RequestGroup.h" #include "DownloadContext.h" #include "Command.h" +#include "RequestGroupMan.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { diff --git a/src/TimeBasedCommand.cc b/src/TimeBasedCommand.cc index 01c165ff..929f4257 100644 --- a/src/TimeBasedCommand.cc +++ b/src/TimeBasedCommand.cc @@ -35,6 +35,11 @@ #include "TimeBasedCommand.h" #include "DownloadEngine.h" #include "wallclock.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" +#include "FileEntry.h" namespace aria2 { @@ -66,7 +71,7 @@ bool TimeBasedCommand::execute() if(_routineCommand) { _e->addRoutineCommand(this); } else { - _e->commands.push_back(this); + _e->addCommand(this); } return false; } diff --git a/src/TimedHaltCommand.cc b/src/TimedHaltCommand.cc index 6013cd2a..fc0a3b99 100644 --- a/src/TimedHaltCommand.cc +++ b/src/TimedHaltCommand.cc @@ -38,6 +38,9 @@ #include "Logger.h" #include "message.h" #include "FileEntry.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" namespace aria2 { @@ -51,7 +54,7 @@ TimedHaltCommand::~TimedHaltCommand() {} void TimedHaltCommand::preProcess() { - if(_e->_requestGroupMan->downloadFinished() || _e->isHaltRequested()) { + if(_e->getRequestGroupMan()->downloadFinished() || _e->isHaltRequested()) { _exit = true; } } diff --git a/src/TrackerWatcherCommand.cc b/src/TrackerWatcherCommand.cc index 60a7b62a..9426e4a4 100644 --- a/src/TrackerWatcherCommand.cc +++ b/src/TrackerWatcherCommand.cc @@ -61,6 +61,10 @@ #include "bittorrent_helper.h" #include "a2functional.h" #include "util.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" namespace aria2 { @@ -87,7 +91,7 @@ bool TrackerWatcherCommand::execute() { return true; } else { _trackerRequestGroup->setForceHaltRequested(true); - e->commands.push_back(this); + e->addCommand(this); return false; } } @@ -136,7 +140,7 @@ bool TrackerWatcherCommand::execute() { _btAnnounce->resetAnnounce(); } } - e->commands.push_back(this); + e->addCommand(this); return false; } @@ -175,7 +179,7 @@ void TrackerWatcherCommand::processTrackerResponse (peer->usedBy(), _requestGroup, peer, e, _btRuntime); command->setPeerStorage(_peerStorage); command->setPieceStorage(_pieceStorage); - e->commands.push_back(command); + e->addCommand(command); if(logger->debug()) { logger->debug("CUID#%s - Adding new command CUID#%s", util::itos(cuid).c_str(), diff --git a/src/XmlRpcMethod.cc b/src/XmlRpcMethod.cc index 536df400..726d5181 100644 --- a/src/XmlRpcMethod.cc +++ b/src/XmlRpcMethod.cc @@ -47,6 +47,11 @@ #include "XmlRpcResponse.h" #include "prefs.h" #include "StringFormat.h" +#include "RequestGroupMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" +#include "ServerStatMan.h" +#include "FileEntry.h" namespace aria2 { diff --git a/src/XmlRpcMethodImpl.cc b/src/XmlRpcMethodImpl.cc index 893620c7..ccb724da 100644 --- a/src/XmlRpcMethodImpl.cc +++ b/src/XmlRpcMethodImpl.cc @@ -64,6 +64,9 @@ #include "XmlRpcResponse.h" #include "SegmentMan.h" #include "TimedHaltCommand.h" +#include "ServerStatMan.h" +#include "FileAllocationEntry.h" +#include "CheckIntegrityEntry.h" #ifdef ENABLE_BITTORRENT # include "bittorrent_helper.h" # include "BtRegistry.h" @@ -146,9 +149,9 @@ static BDE addRequestGroup(const SharedHandle& group, bool posGiven, int pos) { if(posGiven) { - e->_requestGroupMan->insertReservedGroup(pos, group); + e->getRequestGroupMan()->insertReservedGroup(pos, group); } else { - e->_requestGroupMan->addReservedGroup(group); + e->getRequestGroupMan()->addReservedGroup(group); } return createGIDResponse(group->getGID()); } @@ -205,7 +208,7 @@ BDE AddUriXmlRpcMethod::process(const XmlRpcRequest& req, DownloadEngine* e) std::vector uris; extractUris(std::back_inserter(uris), params[0]); - SharedHandle