Main MRPT website > C++ reference
MRPT logo
List of all members | Public Member Functions | Protected Attributes
mrpt::utils::CThreadSafeQueue< T > Class Template Reference

Detailed Description

template<class T>
class mrpt::utils::CThreadSafeQueue< T >

A thread-safe template queue for object passing between threads; for a template argument of T, the objects being passed in the queue are "T*".

Usage example:

// Declaration:
CThreadSafeQueue<MyMsgType> tsq;
...
// Thread 1: Write
{
MyMsgType *msg = new MyMsgType;
msg->...
tsq.push(msg); // Insert in the queue
}
// Thread 2: Read
{
MyMsgType *msg = tsq.get();
if (msg)
{
// Process "msg"...
delete msg;
}
}

Note that only dynamically allocated objects can be inserted with push() and that freeing that memory if responsibility of the receiver of this queue as it receives objects with get(). However, elements still in the queue upon destruction will be deleted automatically.

See Also
mrpt::utils::CMessageQueue

Definition at line 74 of file CThreadSafeQueue.h.

#include <mrpt/utils/CThreadSafeQueue.h>

Inheritance diagram for mrpt::utils::CThreadSafeQueue< T >:
Inheritance graph
[legend]

Public Member Functions

 CThreadSafeQueue ()
 Default ctor.
 
virtual ~CThreadSafeQueue ()
 
void clear ()
 Clear the queue of messages, freeing memory as required.
 
void push (T *msg)
 Insert a new message in the queue - The object must be created with "new", and do not delete is after calling this, it must be deleted later.
 
T * get ()
 Retrieve the next message in the queue, or NULL if there is no message.
 
T * get_lastest_purge_old ()
 Skip all old messages in the queue and directly return the last one (the most recent, at the bottom of the queue), or NULL if there is no message.
 
bool empty () const
 Return true if there are no messages.
 
size_t size () const
 Return the number of queued messages.
 

Protected Attributes

std::queue< T * > m_msgs
 The queue of messages. Memory is freed at destructor or by clients gathering messages.
 
mrpt::synch::CCriticalSection m_csQueue
 The critical section.
 

Constructor & Destructor Documentation

template<class T>
mrpt::utils::CThreadSafeQueue< T >::CThreadSafeQueue ( )
inline

Default ctor.

Definition at line 81 of file CThreadSafeQueue.h.

template<class T>
virtual mrpt::utils::CThreadSafeQueue< T >::~CThreadSafeQueue ( )
inlinevirtual

Definition at line 83 of file CThreadSafeQueue.h.

Member Function Documentation

template<class T>
void mrpt::utils::CThreadSafeQueue< T >::clear ( void  )
inline

Clear the queue of messages, freeing memory as required.

Definition at line 89 of file CThreadSafeQueue.h.

Referenced by mrpt::utils::CThreadSafeQueue< CMessage >::~CThreadSafeQueue().

template<class T>
bool mrpt::utils::CThreadSafeQueue< T >::empty ( ) const
inline

Return true if there are no messages.

Definition at line 145 of file CThreadSafeQueue.h.

template<class T>
T* mrpt::utils::CThreadSafeQueue< T >::get ( )
inline

Retrieve the next message in the queue, or NULL if there is no message.

The user MUST call "delete" with the returned object after use.

Definition at line 110 of file CThreadSafeQueue.h.

template<class T>
T* mrpt::utils::CThreadSafeQueue< T >::get_lastest_purge_old ( )
inline

Skip all old messages in the queue and directly return the last one (the most recent, at the bottom of the queue), or NULL if there is no message.

Note
The memory of all skipped messages is freed with "delete".
The user MUST call "delete" with the returned object after use.

Definition at line 127 of file CThreadSafeQueue.h.

template<class T>
void mrpt::utils::CThreadSafeQueue< T >::push ( T *  msg)
inline

Insert a new message in the queue - The object must be created with "new", and do not delete is after calling this, it must be deleted later.

Definition at line 101 of file CThreadSafeQueue.h.

template<class T>
size_t mrpt::utils::CThreadSafeQueue< T >::size ( ) const
inline

Return the number of queued messages.

Definition at line 152 of file CThreadSafeQueue.h.

Member Data Documentation

template<class T>
mrpt::synch::CCriticalSection mrpt::utils::CThreadSafeQueue< T >::m_csQueue
protected
template<class T>
std::queue<T*> mrpt::utils::CThreadSafeQueue< T >::m_msgs
protected



Page generated by Doxygen 1.8.3 for MRPT 0.9.6 SVN: at Fri Feb 15 22:05:02 EST 2013