Inherits ost::Mutex, ost::Thread, and ost::Semaphore.
Classes
struct _data
Public Member Functions
ThreadQueue (const char *id, int pri, size_t stack=0)
Create instance of our queue and give it a process priority.
virtual ~ThreadQueue ()
Destroy the queue.
void setTimer (timeout_ttimeout)
Set the queue timeout.
void post (const void *data, unsigned len)
Put some unspecified data into this queue.
Protected Types
typedef struct ost::ThreadQueue::_datadata_t
Protected Member Functions
virtual void final ()
virtual void startQueue (void)
Start of dequeing.
virtual void stopQueue (void)
End of dequeing, we expect the queue is empty for now.
virtual void onTimer (void)
A derivable method to call when the timout is expired.
virtual void runQueue (void *data)=0
Virtual callback method to handle processing of a queued data items.
Protected Attributes
timeout_ttimeout
bool started
data_t * first
data_t * last
Stringname
Detailed Description
Somewhat generic queue processing class to establish a producer consumer queue.
This may be used to buffer cdr records, or for other purposes where an in-memory queue is needed for rapid posting. This class is derived from Mutex and maintains a linked list. A thread is used to dequeue data and pass it to a callback method that is used in place of 'run' for each item present on the queue. The conditional is used to signal the run thread when new data is posted.
This class was changed by Angelo Naselli to have a timeout on the queue
Put some unspecified data into this queue. A new qd structure is created and sized to contain a copy of the actual content.
Parameters:
data pointer to data.
len size of data.
virtual void ost::ThreadQueue::runQueue (void * data) [protected, pure virtual]
Virtual callback method to handle processing of a queued data items. After the item is processed, it is deleted from memory. We can call multiple instances of runQueue in order if multiple items are waiting.