/* */ #ifndef D_DOWNLOAD_COMMAND_H #define D_DOWNLOAD_COMMAND_H #include "AbstractCommand.h" #include namespace aria2 { class PeerStat; class StreamFilter; #ifdef ENABLE_MESSAGE_DIGEST class MessageDigest; #endif // ENABLE_MESSAGE_DIGEST class DownloadCommand : public AbstractCommand { private: time_t startupIdleTime_; int lowestDownloadSpeedLimit_; std::shared_ptr peerStat_; bool pieceHashValidationEnabled_; #ifdef ENABLE_MESSAGE_DIGEST std::shared_ptr messageDigest_; #endif // ENABLE_MESSAGE_DIGEST void validatePieceHash(const std::shared_ptr& segment, const std::string& expectedPieceHash, const std::string& actualPieceHash); void checkLowestDownloadSpeed() const; void completeSegment(cuid_t cuid, const std::shared_ptr& segment); std::shared_ptr streamFilter_; bool sinkFilterOnly_; protected: virtual bool executeInternal(); virtual bool prepareForNextSegment(); // This is file local offset virtual int64_t getRequestEndOffset() const = 0; public: DownloadCommand(cuid_t cuid, const std::shared_ptr& req, const std::shared_ptr& fileEntry, RequestGroup* requestGroup, DownloadEngine* e, const std::shared_ptr& s, const std::shared_ptr& socketRecvBuffer); virtual ~DownloadCommand(); const std::shared_ptr& getStreamFilter() const { return streamFilter_; } void installStreamFilter(const std::shared_ptr& streamFilter); void setStartupIdleTime(time_t startupIdleTime) { startupIdleTime_ = startupIdleTime; } void setLowestDownloadSpeedLimit(int lowestDownloadSpeedLimit) { lowestDownloadSpeedLimit_ = lowestDownloadSpeedLimit; } }; } // namespace aria2 #endif // D_DOWNLOAD_COMMAND_H