classWriter :public ByteStream { public: voidpush( std::string data ); // Push data to stream, but only as much as available capacity allows. voidclose(); // Signal that the stream has reached its ending. Nothing more will be written.
boolis_closed()const; // Has the stream been closed? uint64_tavailable_capacity()const; // How many bytes can be pushed to the stream right now? uint64_tbytes_pushed()const; // Total number of bytes cumulatively pushed to the stream };
classReader :public ByteStream { public: std::string_view peek()const; // Peek at the next bytes in the buffer voidpop( uint64_t len ); // Remove `len` bytes from the buffer
boolis_finished()const; // Is the stream finished (closed and fully popped)? uint64_tbytes_buffered()const; // Number of bytes currently buffered (pushed and not popped) uint64_tbytes_popped()const; // Total number of bytes cumulatively popped from stream };
// Helper functions (provided) to access the ByteStream's Reader and Writer interfaces Reader& reader(); const Reader& reader()const; Writer& writer(); const Writer& writer()const;
voidset_error(){ error_ = true; }; // Signal that the stream suffered an error. boolhas_error()const{ return error_; }; // Has the stream had an error? };
// Helper functions (provided) to access the ByteStream's Reader and Writer interfaces Reader& reader(); const Reader& reader()const; Writer& writer(); const Writer& writer()const;
voidset_error(){ error_ = true; }; // Signal that the stream suffered an error. boolhas_error()const{ return error_; }; // Has the stream had an error?
protected: // Please add any additional state to the ByteStream here, and not to the Writer and Reader interfaces. uint64_t capacity_; bool error_ {}; bool close_requested_ { false }; size_t idx_push_ { 0 }; // Next index to push a byte. size_t idx_pop_ { 0 }; // Next index to pop a byte. uint64_t total_push_ { 0 }; // Bytes pushed. uint64_t total_pop_ { 0 }; // Bytes popped. std::string buf_ {}; // Ring buffer. };