/* */ #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 std::shared_ptr& req, const std::shared_ptr& fileEntry, RequestGroup* requestGroup, const std::shared_ptr& ftpConnection, DownloadEngine* e, const std::shared_ptr& 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() = global::wallclock(); int status = ftpConnection_->receiveResponse(); if (status == 0) { addCommandSelf(); return false; } if (status == 226) { if (getOption()->getAsBool(PREF_FTP_REUSE_CONNECTION)) { getDownloadEngine()->poolSocket( getRequest(), ftpConnection_->getUser(), createProxyRequest(), getSocket(), ftpConnection_->getBaseWorkingDir()); } } else { A2_LOG_INFO(fmt("CUID#%" PRId64 " - Bad status for transfer complete.", getCuid())); } } else if (getCheckPoint().difference(global::wallclock()) >= getTimeout()) { A2_LOG_INFO(fmt("CUID#%" PRId64 " - Timeout before receiving transfer complete.", getCuid())); } else { addCommandSelf(); return false; } } catch (RecoverableException& e) { A2_LOG_INFO_EX(fmt("CUID#%" PRId64 " - 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