A single producer consumer implementation without critical sections. More...
#include <SingleProducerConsumer.h>
Classes | |
struct | DataPlusPtr |
Public Member Functions | |
SingleProducerConsumer () | |
~SingleProducerConsumer () | |
SingleProducerConsumerType * | WriteLock (void) |
void | CancelWriteLock (SingleProducerConsumerType *cancelToLocation) |
void | WriteUnlock (void) |
Call when you are done writing to a block of memory returned by WriteLock(). | |
SingleProducerConsumerType * | ReadLock (void) |
void | CancelReadLock (SingleProducerConsumerType *cancelToLocation) |
param[in] Which ReadLock() to cancel. | |
void | ReadUnlock (void) |
void | Clear (void) |
Clear is not thread-safe and none of the lock or unlock functions should be called while it is running. | |
int | Size (void) const |
bool | CheckReadUnlockOrder (const SingleProducerConsumerType *data) const |
bool | ReadIsLocked (void) const |
A single producer consumer implementation without critical sections.
Definition at line 25 of file SingleProducerConsumer.h.
DataStructures::SingleProducerConsumer< SingleProducerConsumerType >::SingleProducerConsumer | ( | ) |
Definition at line 92 of file SingleProducerConsumer.h.
DataStructures::SingleProducerConsumer< SingleProducerConsumerType >::~SingleProducerConsumer | ( | ) |
void DataStructures::SingleProducerConsumer< SingleProducerConsumerType >::CancelReadLock | ( | SingleProducerConsumerType * | cancelToLocation | ) |
param[in] Which ReadLock() to cancel.
Definition at line 185 of file SingleProducerConsumer.h.
void DataStructures::SingleProducerConsumer< SingleProducerConsumerType >::CancelWriteLock | ( | SingleProducerConsumerType * | cancelToLocation | ) |
Call if you don't want to write to a block of data from WriteLock() after all. Cancelling locks cancels all locks back up to the data passed. So if you lock twice and cancel using the first lock, the second lock is ignored
[in] | cancelToLocation | Which WriteLock() to cancel. |
Definition at line 148 of file SingleProducerConsumer.h.
bool DataStructures::SingleProducerConsumer< SingleProducerConsumerType >::CheckReadUnlockOrder | ( | const SingleProducerConsumerType * | data | ) | const |
Make sure that the pointer we done reading for the call to ReadUnlock is the right pointer. param[in] A previous pointer returned by ReadLock()
Definition at line 246 of file SingleProducerConsumer.h.
void DataStructures::SingleProducerConsumer< SingleProducerConsumerType >::Clear | ( | void | ) |
Clear is not thread-safe and none of the lock or unlock functions should be called while it is running.
Definition at line 208 of file SingleProducerConsumer.h.
bool DataStructures::SingleProducerConsumer< SingleProducerConsumerType >::ReadIsLocked | ( | void | ) | const |
Returns if ReadUnlock was called before ReadLock
Definition at line 253 of file SingleProducerConsumer.h.
SingleProducerConsumerType * DataStructures::SingleProducerConsumer< SingleProducerConsumerType >::ReadLock | ( | void | ) |
ReadLock must be immediately followed by ReadUnlock. These two functions must be called in the same thread.
0 | No data is availble to read | |
Non-zero | The data previously written to, in another thread, by WriteLock followed by WriteUnlock. |
Definition at line 170 of file SingleProducerConsumer.h.
void DataStructures::SingleProducerConsumer< SingleProducerConsumerType >::ReadUnlock | ( | void | ) |
Signals that we are done reading the the data from the least recent call of ReadLock. At this point that pointer is no longer valid, and should no longer be read.
Definition at line 194 of file SingleProducerConsumer.h.
int DataStructures::SingleProducerConsumer< SingleProducerConsumerType >::Size | ( | void | ) | const |
This function will estimate how many elements are waiting to be read. It's threadsafe enough that the value returned is stable, but not threadsafe enough to give accurate results.
Definition at line 240 of file SingleProducerConsumer.h.
SingleProducerConsumerType * DataStructures::SingleProducerConsumer< SingleProducerConsumerType >::WriteLock | ( | void | ) |
WriteLock must be immediately followed by WriteUnlock. These two functions must be called in the same thread.
Definition at line 129 of file SingleProducerConsumer.h.
void DataStructures::SingleProducerConsumer< SingleProducerConsumerType >::WriteUnlock | ( | void | ) |
Call when you are done writing to a block of memory returned by WriteLock().
Definition at line 154 of file SingleProducerConsumer.h.