LibBeamApi
1.3.0
|
This class implements a thread safe FIFO buffer. More...
#include <BFifo.h>
Public Types | |
enum | { defaultSize = 1024 } |
Public Member Functions | |
BFifo (uint32_t size=defaultSize) | |
~BFifo () | |
uint32_t | size () |
Return the buffers actual size. More... | |
void | clear () |
Clear all of the data in the buffer. More... | |
uint32_t | writeAvailable () |
Returns the space available to write. More... | |
BError | writeWaitAvailable (uint32_t numFifoSamples) |
Wait for the given number of samples. More... | |
BError | write (const Type *data, uint32_t numFifoSamples) |
Writes the data to the buffer. Blocks until complete. More... | |
Type * | writeData () |
Return a pointer to the current start of the buffer. More... | |
void | writeDone (uint32_t numFifoSamples) |
Update the write pointer. More... | |
uint32_t | readAvailable () |
Returns the number of bytes of data available. More... | |
BError | readWaitAvailable (uint32_t numFifoSamples) |
Wait for given number of samples. More... | |
BError | read (Type *data, uint32_t numFifoSamples) |
Type * | readData () |
Pointer to raw data. More... | |
BError | readDone (uint32_t numFifoSamples) |
Updates read pointer. More... | |
Type & | operator[] (int pos) |
Direct access to read samples in buffer. More... | |
Private Member Functions | |
BError | mapCircularBuffer (uint32_t size) |
void | unmapCircularBuffer () |
Private Attributes | |
BMutex | olock |
uint32_t | ovmSize |
uint32_t | osize |
Type * | odata |
BFifoPos | owritePos |
Current write position. More... | |
BCondValue | owriteNumFifoSamples |
The number of samples in the FIFO. More... | |
BFifoPos | oreadPos |
Current read position. More... | |
This class implements a thread safe FIFO buffer.
BFifo< Type >::BFifo | ( | uint32_t | size = defaultSize | ) |
void BFifo< Type >::clear | ( | ) |
Clear all of the data in the buffer.
Type& BFifo< Type >::operator[] | ( | int | pos | ) |
Direct access to read samples in buffer.
uint32_t BFifo< Type >::readAvailable | ( | ) |
Returns the number of bytes of data available.
Type* BFifo< Type >::readData | ( | ) |
Pointer to raw data.
Updates read pointer.
Wait for given number of samples.
uint32_t BFifo< Type >::size | ( | ) |
Return the buffers actual size.
|
private |
Writes the data to the buffer. Blocks until complete.
uint32_t BFifo< Type >::writeAvailable | ( | ) |
Returns the space available to write.
Type* BFifo< Type >::writeData | ( | ) |
Return a pointer to the current start of the buffer.
void BFifo< Type >::writeDone | ( | uint32_t | numFifoSamples | ) |
Update the write pointer.
Wait for the given number of samples.
|
private |
|
private |
|
private |
|
private |
The number of samples in the FIFO.