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. | |
void | clear () |
Clear all of the data in the buffer. | |
uint32_t | writeAvailable () |
Returns the space available to write. | |
BError | writeWaitAvailable (uint32_t numFifoSamples) |
Wait for the given number of samples. | |
BError | write (const Type *data, uint32_t numFifoSamples) |
Writes the data to the buffer. Blocks until complete. | |
Type * | writeData () |
Return a pointer to the current start of the buffer. | |
void | writeDone (uint32_t numFifoSamples) |
Update the write pointer. | |
uint32_t | readAvailable () |
Returns the number of bytes of data available. | |
BError | readWaitAvailable (uint32_t numFifoSamples) |
Wait for given number of samples. | |
BError | read (Type *data, uint32_t numFifoSamples) |
Type * | readData () |
Pointer to raw data. | |
BError | readDone (uint32_t numFifoSamples) |
Updates read pointer. | |
Type & | operator[] (int pos) |
Direct access to read samples in buffer. | |
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. | |
BCondValue | owriteNumFifoSamples |
The number of samples in the FIFO. | |
BFifoPos | oreadPos |
Current read position. |
This class implements a thread safe FIFO buffer.
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.
void BFifo< Type >::unmapCircularBuffer | ( | ) | [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.
BCondValue BFifo< Type >::owriteNumFifoSamples [private] |
The number of samples in the FIFO.