gem5
v21.0.1.0
|
Circular buffer backed by a vector. More...
#include <circlebuf.hh>
Public Types | |
using | value_type = T |
Public Member Functions | |
CircleBuf (size_t size) | |
bool | empty () const |
size_t | size () const |
size_t | capacity () const |
void | flush () |
Throw away any data in the buffer. More... | |
template<class OutputIterator > | |
void | peek (OutputIterator out, size_t len) const |
Copy buffer contents without advancing the read pointer. More... | |
template<class OutputIterator > | |
void | peek (OutputIterator out, off_t offset, size_t len) const |
Copy buffer contents without advancing the read pointer. More... | |
template<class OutputIterator > | |
void | read (OutputIterator out, size_t len) |
Copy buffer contents and advance the read pointer. More... | |
template<class InputIterator > | |
void | write (InputIterator in, size_t len) |
Add elements to the end of the ring buffers and advance. More... | |
Private Attributes | |
std::vector< T > | buffer |
size_t | start = 0 |
size_t | used = 0 |
size_t | maxSize |
Circular buffer backed by a vector.
The data in the cricular buffer is stored in a standard vector.
Definition at line 55 of file circlebuf.hh.
using CircleBuf< T >::value_type = T |
Definition at line 64 of file circlebuf.hh.
Definition at line 66 of file circlebuf.hh.
|
inline |
Definition at line 70 of file circlebuf.hh.
Referenced by Fifo< uint8_t >::capacity().
|
inline |
Definition at line 68 of file circlebuf.hh.
Referenced by Terminal::console_in(), Terminal::dataAvailable(), Fifo< uint8_t >::empty(), Terminal::readData(), and TEST().
|
inline |
Throw away any data in the buffer.
Definition at line 76 of file circlebuf.hh.
Referenced by arrayParamIn(), Fifo< uint8_t >::flush(), and CircleBuf< char >::write().
|
inline |
Copy buffer contents without advancing the read pointer.
out | Output iterator/pointer |
offset | Offset into the ring buffer |
len | Number of elements to copy |
Definition at line 104 of file circlebuf.hh.
|
inline |
Copy buffer contents without advancing the read pointer.
out | Output iterator/pointer |
len | Number of elements to copy |
Definition at line 90 of file circlebuf.hh.
Referenced by Terminal::accept(), arrayParamOut(), CircleBuf< char >::peek(), Fifo< uint8_t >::peek(), CircleBuf< char >::read(), and TEST().
|
inline |
Copy buffer contents and advance the read pointer.
out | Output iterator/pointer |
len | Number of elements to read |
Definition at line 137 of file circlebuf.hh.
Referenced by Fifo< uint8_t >::read(), Terminal::readData(), and TEST().
|
inline |
Definition at line 69 of file circlebuf.hh.
Referenced by Terminal::accept(), arrayParamOut(), Fifo< uint8_t >::size(), and TEST().
|
inline |
Add elements to the end of the ring buffers and advance.
Writes which would exceed the capacity of the queue fill the avaialble space, and then continue overwriting the head of the queue. The head advances as if that data had been read out.
in | Input iterator/pointer |
len | Number of elements to read |
Definition at line 155 of file circlebuf.hh.
Referenced by arrayParamIn(), Terminal::data(), TEST(), Fifo< uint8_t >::write(), and Terminal::writeData().
|
private |
Definition at line 58 of file circlebuf.hh.
Referenced by CircleBuf< char >::peek(), and CircleBuf< char >::write().
|
private |
Definition at line 61 of file circlebuf.hh.
Referenced by CircleBuf< char >::capacity(), CircleBuf< char >::peek(), and CircleBuf< char >::write().
|
private |
Definition at line 59 of file circlebuf.hh.
Referenced by CircleBuf< char >::flush(), CircleBuf< char >::peek(), CircleBuf< char >::read(), and CircleBuf< char >::write().
|
private |
Definition at line 60 of file circlebuf.hh.
Referenced by CircleBuf< char >::empty(), CircleBuf< char >::flush(), CircleBuf< char >::peek(), CircleBuf< char >::read(), CircleBuf< char >::size(), and CircleBuf< char >::write().