/* */ #ifndef D_SOCKET_RECV_BUFFER_H #define D_SOCKET_RECV_BUFFER_H #include "common.h" #include namespace aria2 { class SocketCore; class SocketRecvBuffer { public: SocketRecvBuffer (std::shared_ptr socket, size_t capacity = 16*1024); ~SocketRecvBuffer(); // Reads data from socket as much as capacity allows. Returns the // number of bytes read. ssize_t recv(); // Shifts buffer by offset bytes. offset must satisfy offset <= // getBufferLength(). void shiftBuffer(size_t offset); // Truncates the contents of buffer to 0. void clearBuffer() { bufLen_ = 0; } const std::shared_ptr& getSocket() const { return socket_; } const unsigned char* getBuffer() const { return buf_.get(); } size_t getBufferLength() const { return bufLen_; } bool bufferEmpty() const { return bufLen_ == 0; } void pushBuffer(const unsigned char* data, size_t len); private: std::shared_ptr socket_; size_t capacity_; std::unique_ptr buf_; size_t bufLen_; }; } // namespace aria2 #endif // D_SOCKET_RECV_BUFFER_H