123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- /* <!-- copyright */
- /*
- * aria2 - The high speed download utility
- *
- * Copyright (C) 2006 Tatsuhiro Tsujikawa
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
- *
- * In addition, as a special exception, the copyright holders give
- * permission to link the code of portions of this program with the
- * OpenSSL library under certain conditions as described in each
- * individual source file, and distribute linked combinations
- * including the two.
- * You must obey the GNU General Public License in all respects
- * for all of the code used other than OpenSSL. If you modify
- * file(s) with this exception, you may extend this exception to your
- * version of the file(s), but you are not obligated to do so. If you
- * do not wish to do so, delete this exception statement from your
- * version. If you delete this exception statement from all source
- * files in the program, then also delete it here.
- */
- /* copyright --> */
- #include "AbstractCommand.h"
- #include "SegmentMan.h"
- #include "NameResolver.h"
- #include "CUIDCounter.h"
- #include "DlAbortEx.h"
- #include "DlRetryEx.h"
- #include "DownloadFailureException.h"
- #include "InitiateConnectionCommandFactory.h"
- #include "Util.h"
- #include "message.h"
- #include "SleepCommand.h"
- #include "prefs.h"
- #include "DNSCache.h"
- #include "StreamCheckIntegrityEntry.h"
- #include "PeerStat.h"
- #include "Segment.h"
- #include "Option.h"
- #include "PieceStorage.h"
- AbstractCommand::AbstractCommand(int32_t cuid,
- const RequestHandle& req,
- RequestGroup* requestGroup,
- DownloadEngine* e,
- const SocketHandle& s):
- Command(cuid), RequestGroupAware(requestGroup),
- req(req), e(e), socket(s),
- checkSocketIsReadable(false), checkSocketIsWritable(false),
- nameResolverCheck(false)
- {
- setReadCheckSocket(socket);
- timeout = this->e->option->getAsInt(PREF_TIMEOUT);
- _requestGroup->increaseStreamConnection();
- }
- AbstractCommand::~AbstractCommand() {
- disableReadCheckSocket();
- disableWriteCheckSocket();
- _requestGroup->decreaseStreamConnection();
- }
- bool AbstractCommand::execute() {
- try {
- if(_requestGroup->downloadFinished() || _requestGroup->isHaltRequested()) {
- //logger->debug("CUID#%d - finished.", cuid);
- return true;
- }
- PeerStatHandle peerStat = 0;
- if(!_requestGroup->getSegmentMan().isNull()) {
- peerStat = _requestGroup->getSegmentMan()->getPeerStat(cuid);
- }
- if(!peerStat.isNull()) {
- if(peerStat->getStatus() == PeerStat::REQUEST_IDLE) {
- logger->info(MSG_ABORT_REQUESTED, cuid);
- onAbort(0);
- req->resetUrl();
- tryReserved();
- return true;
- }
- }
- if(checkSocketIsReadable && readCheckTarget->isReadable(0) ||
- checkSocketIsWritable && writeCheckTarget->isWritable(0) ||
- #ifdef ENABLE_ASYNC_DNS
- nameResolverCheck && nameResolveFinished() ||
- #endif // ENABLE_ASYNC_DNS
- !checkSocketIsReadable && !checkSocketIsWritable && !nameResolverCheck) {
- checkPoint.reset();
- if(!_requestGroup->getPieceStorage().isNull()) {
- _segments = _requestGroup->getSegmentMan()->getInFlightSegment(cuid);
- int32_t maxSegments;
- if(req->isKeepAlive() && e->option->get(PREF_ENABLE_HTTP_PIPELINING) == V_TRUE) {
- maxSegments = e->option->getAsInt(PREF_MAX_HTTP_PIPELINING);
- } else {
- maxSegments = 1;
- }
- while((int32_t)_segments.size() < maxSegments) {
- SegmentHandle segment = _requestGroup->getSegmentMan()->getSegment(cuid);
- if(segment.isNull()) {
- break;
- }
- _segments.push_back(segment);
- }
- if(_segments.empty()) {
- logger->info(MSG_NO_SEGMENT_AVAILABLE, cuid);
- return prepareForRetry(1);
- }
- }
- return executeInternal();
- } else {
- if(checkPoint.elapsed(timeout)) {
- throw new DlRetryEx(EX_TIME_OUT);
- }
- e->commands.push_back(this);
- return false;
- }
- } catch(DlAbortEx* err) {
- logger->error(MSG_DOWNLOAD_ABORTED, err, cuid, req->getUrl().c_str());
- onAbort(err);
- delete(err);
- req->resetUrl();
- tryReserved();
- return true;
- } catch(DlRetryEx* err) {
- logger->info(MSG_RESTARTING_DOWNLOAD, err, cuid, req->getUrl().c_str());
- req->addTryCount();
- bool isAbort = e->option->getAsInt(PREF_MAX_TRIES) != 0 &&
- req->getTryCount() >= e->option->getAsInt(PREF_MAX_TRIES);
- if(isAbort) {
- onAbort(err);
- }
- if(isAbort) {
- logger->info(MSG_MAX_TRY, cuid, req->getTryCount());
- logger->error(MSG_DOWNLOAD_ABORTED, err, cuid, req->getUrl().c_str());
- delete(err);
- tryReserved();
- return true;
- } else {
- delete(err);
- return prepareForRetry(e->option->getAsInt(PREF_RETRY_WAIT));
- }
- } catch(DownloadFailureException* err) {
- logger->error(EX_EXCEPTION_CAUGHT, err);
- delete(err);
- _requestGroup->setHaltRequested(true);
- return true;
- }
- }
- void AbstractCommand::tryReserved() {
- _requestGroup->removeServerHost(cuid);
- Commands commands = _requestGroup->createNextCommand(e, 1);
- e->addCommand(commands);
- }
- bool AbstractCommand::prepareForRetry(int32_t wait) {
- if(!_requestGroup->getPieceStorage().isNull()) {
- _requestGroup->getSegmentMan()->cancelSegment(cuid);
- }
- Command* command = InitiateConnectionCommandFactory::createInitiateConnectionCommand(cuid, req, _requestGroup, e);
- if(wait == 0) {
- e->commands.push_back(command);
- } else {
- SleepCommand* scom = new SleepCommand(cuid, e, command, wait);
- e->commands.push_back(scom);
- }
- return true;
- }
- void AbstractCommand::onAbort(Exception* ex) {
- logger->debug(MSG_UNREGISTER_CUID, cuid);
- //_segmentMan->unregisterId(cuid);
- if(!_requestGroup->getPieceStorage().isNull()) {
- _requestGroup->getSegmentMan()->cancelSegment(cuid);
- }
- }
- void AbstractCommand::disableReadCheckSocket() {
- if(checkSocketIsReadable) {
- e->deleteSocketForReadCheck(readCheckTarget, this);
- checkSocketIsReadable = false;
- readCheckTarget = SocketHandle();
- }
- }
- void AbstractCommand::setReadCheckSocket(const SocketHandle& socket) {
- if(!socket->isOpen()) {
- disableReadCheckSocket();
- } else {
- if(checkSocketIsReadable) {
- if(readCheckTarget != socket) {
- e->deleteSocketForReadCheck(readCheckTarget, this);
- e->addSocketForReadCheck(socket, this);
- readCheckTarget = socket;
- }
- } else {
- e->addSocketForReadCheck(socket, this);
- checkSocketIsReadable = true;
- readCheckTarget = socket;
- }
- }
- }
- void AbstractCommand::disableWriteCheckSocket() {
- if(checkSocketIsWritable) {
- e->deleteSocketForWriteCheck(writeCheckTarget, this);
- checkSocketIsWritable = false;
- writeCheckTarget = SocketHandle();
- }
- }
- void AbstractCommand::setWriteCheckSocket(const SocketHandle& socket) {
- if(!socket->isOpen()) {
- disableWriteCheckSocket();
- } else {
- if(checkSocketIsWritable) {
- if(writeCheckTarget != socket) {
- e->deleteSocketForWriteCheck(writeCheckTarget, this);
- e->addSocketForWriteCheck(socket, this);
- writeCheckTarget = socket;
- }
- } else {
- e->addSocketForWriteCheck(socket, this);
- checkSocketIsWritable = true;
- writeCheckTarget = socket;
- }
- }
- }
- bool AbstractCommand::resolveHostname(const string& hostname,
- const NameResolverHandle& resolver) {
- string ipaddr = DNSCacheSingletonHolder::instance()->find(hostname);
- if(ipaddr.empty()) {
- #ifdef ENABLE_ASYNC_DNS
- switch(resolver->getStatus()) {
- case NameResolver::STATUS_READY:
- logger->info(MSG_RESOLVING_HOSTNAME, cuid, hostname.c_str());
- resolver->resolve(hostname);
- setNameResolverCheck(resolver);
- return false;
- case NameResolver::STATUS_SUCCESS:
- logger->info(MSG_NAME_RESOLUTION_COMPLETE, cuid,
- hostname.c_str(), resolver->getAddrString().c_str());
- DNSCacheSingletonHolder::instance()->put(hostname, resolver->getAddrString());
- return true;
- break;
- case NameResolver::STATUS_ERROR:
- throw new DlAbortEx(MSG_NAME_RESOLUTION_FAILED, cuid,
- hostname.c_str(),
- resolver->getError().c_str());
- default:
- return false;
- }
- #else
- logger->info(MSG_RESOLVING_HOSTNAME, cuid, hostname.c_str());
- resolver->resolve(hostname);
- logger->info(MSG_NAME_RESOLUTION_COMPLETE, cuid,
- hostname.c_str(), resolver->getAddrString().c_str());
- DNSCacheSingletonHolder::instance()->put(hostname, resolver->getAddrString());
- return true;
- #endif // ENABLE_ASYNC_DNS
- } else {
- logger->info(MSG_DNS_CACHE_HIT, cuid,
- hostname.c_str(), ipaddr.c_str());
- resolver->setAddr(ipaddr);
- return true;
- }
- }
- #ifdef ENABLE_ASYNC_DNS
- void AbstractCommand::setNameResolverCheck(const NameResolverHandle& resolver) {
- nameResolverCheck = true;
- e->addNameResolverCheck(resolver, this);
- }
- void AbstractCommand::disableNameResolverCheck(const NameResolverHandle& resolver) {
- nameResolverCheck = false;
- e->deleteNameResolverCheck(resolver, this);
- }
- bool AbstractCommand::nameResolveFinished() const {
- return false;
- }
- #endif // ENABLE_ASYNC_DNS
- void AbstractCommand::prepareForNextAction(Command* nextCommand)
- {
- CheckIntegrityEntryHandle entry =
- new StreamCheckIntegrityEntry(req, _requestGroup, nextCommand);
- e->addCommand(_requestGroup->processCheckIntegrityEntry(entry, e));
- }
|