/* * */ #ifndef CIRCULAR_BUFFER_H #define CIRCULAR_BUFFER_H class circular_buffer : public dom_owned { static const size_t INITIAL_CIRCULAR_BUFFFER_SIZE_IN_UNITS = 8; static const size_t MAX_CIRCULAR_BUFFFER_SIZE = 1 << 24; public: rust_dom *dom; circular_buffer(rust_dom *dom, size_t unit_sz); ~circular_buffer(); void transfer(void *dst); void enqueue(void *src); void dequeue(void *dst); bool is_empty(); private: // Size of the buffer in bytes. size_t _buffer_sz; // Size of the data unit in bytes. size_t _unit_sz; // Byte offset within the buffer where to read the next unit of data. size_t _next; // Number of bytes that have not been read from the buffer. size_t _unread; // The buffer itself. uint8_t *_buffer; }; #endif /* CIRCULAR_BUFFER_H */