/* */ #include "FtpFinishDownloadCommand.h" #include #include "Request.h" #include "DownloadEngine.h" #include "prefs.h" #include "Option.h" #include "FtpConnection.h" #include "message.h" #include "fmt.h" #include "DlAbortEx.h" #include "SocketCore.h" #include "RequestGroup.h" #include "Logger.h" #include "LogFactory.h" #include "util.h" #include "wallclock.h" #include "SocketRecvBuffer.h" namespace aria2 { FtpFinishDownloadCommand::FtpFinishDownloadCommand (cuid_t cuid, const SharedHandle& req, const SharedHandle& fileEntry, RequestGroup* requestGroup, const SharedHandle& ftpConnection, DownloadEngine* e, const SharedHandle& socket) :AbstractCommand(cuid, req, fileEntry, requestGroup, e, socket), ftpConnection_(ftpConnection) {} FtpFinishDownloadCommand::~FtpFinishDownloadCommand() {} // overrides AbstractCommand::execute(). // AbstractCommand::_segments is empty. bool FtpFinishDownloadCommand::execute() { if(getRequestGroup()->isHaltRequested()) { return true; } try { if(readEventEnabled() || hupEventEnabled()) { getCheckPoint().reset(); unsigned int status = ftpConnection_->receiveResponse(); if(status == 0) { getDownloadEngine()->addCommand(this); return false; } if(status == 226) { if(getOption()->getAsBool(PREF_FTP_REUSE_CONNECTION)) { std::map options; options["baseWorkingDir"] = ftpConnection_->getBaseWorkingDir(); getDownloadEngine()->poolSocket (getRequest(), ftpConnection_->getUser(), createProxyRequest(), getSocket(), options); } } else { A2_LOG_INFO(fmt("CUID#%lld - Bad status for transfer complete.", getCuid())); } } else if(getCheckPoint().difference(global::wallclock) >= getTimeout()) { A2_LOG_INFO(fmt("CUID#%lld - Timeout before receiving transfer complete.", getCuid())); } else { getDownloadEngine()->addCommand(this); return false; } } catch(RecoverableException& e) { A2_LOG_INFO_EX(fmt("CUID#%lld - Exception was thrown, but download was" " finished, so we can ignore the exception.", getCuid()), e); } if(getRequestGroup()->downloadFinished()) { return true; } else { return prepareForRetry(0); } } // This function never be called. bool FtpFinishDownloadCommand::executeInternal() { return true; } } // namespace aria2