/* */ #ifndef _D_ABSTRACT_COMMAND_H_ #define _D_ABSTRACT_COMMAND_H_ #include "Command.h" #include "Request.h" #include "DownloadEngine.h" #include "SegmentMan.h" class AbstractCommand : public Command { private: void updateCheckPoint(); bool isTimeoutDetected(); struct timeval checkPoint; protected: Request* req; DownloadEngine* e; Socket* socket; bool checkSocketIsReadable; bool checkSocketIsWritable; virtual bool prepareForRetry(); virtual void onError(Exception* e); virtual bool executeInternal(Segment segment) = 0; public: AbstractCommand(int cuid, Request* req, DownloadEngine* e, Socket* s= NULL); virtual ~AbstractCommand(); bool execute(); }; #endif // _D_ABSTRACT_COMMAND_H_