blob: 2ebf23b0a061b78543e3b424f8b265a4a14a030c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
/*
*
*/
#ifndef CIRCULAR_BUFFER_H
#define CIRCULAR_BUFFER_H
class
circular_buffer : public dom_owned<circular_buffer> {
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 */
|