/* */ #include "SftpFinishDownloadCommand.h" #include "Request.h" #include "DownloadEngine.h" #include "prefs.h" #include "Option.h" #include "message.h" #include "fmt.h" #include "DlAbortEx.h" #include "SocketCore.h" #include "RequestGroup.h" #include "Logger.h" #include "LogFactory.h" #include "wallclock.h" #include "AuthConfigFactory.h" #include "AuthConfig.h" namespace aria2 { SftpFinishDownloadCommand::SftpFinishDownloadCommand( cuid_t cuid, const std::shared_ptr& req, const std::shared_ptr& fileEntry, RequestGroup* requestGroup, DownloadEngine* e, const std::shared_ptr& socket) : AbstractCommand(cuid, req, fileEntry, requestGroup, e, socket) { disableReadCheckSocket(); setWriteCheckSocket(getSocket()); } SftpFinishDownloadCommand::~SftpFinishDownloadCommand() {} // overrides AbstractCommand::execute(). // AbstractCommand::_segments is empty. bool SftpFinishDownloadCommand::execute() { if (getRequestGroup()->isHaltRequested()) { return true; } try { if (readEventEnabled() || writeEventEnabled() || hupEventEnabled()) { getCheckPoint() = global::wallclock(); if (!getSocket()->sshSFTPClose()) { setWriteCheckSocketIf(getSocket(), getSocket()->wantWrite()); setReadCheckSocketIf(getSocket(), getSocket()->wantRead()); addCommandSelf(); return false; } auto authConfig = getDownloadEngine()->getAuthConfigFactory()->createAuthConfig( getRequest(), getRequestGroup()->getOption().get()); getDownloadEngine()->poolSocket(getRequest(), authConfig->getUser(), createProxyRequest(), getSocket(), ""); } 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 SftpFinishDownloadCommand::executeInternal() { return true; } } // namespace aria2