/*
* Copyright (c) 2015 Meltytech, LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see .
*/
#ifndef DATAQUEUE_H
#define DATAQUEUE_H
#include
#include
#include
#include
/*!
\class DataQueue
\brief The DataQueue provides a thread safe container for passing data between
objects.
\threadsafe
DataQueue provides a limited size container for passing data between objects.
One object can add data to the queue by calling push() while another object
can remove items from the queue by calling pop().
DataQueue provides configurable behavior for handling overflows. It can
discard the oldest, discard the newest or block the object calling push()
until room has been freed in the queue by another object calling pop().
DataQueue is threadsafe and is therefore most appropriate when passing data
between objects operating in different thread contexts.
*/
template
class DataQueue
{
public:
//! Overflow behavior modes.
typedef enum {
OverflowModeDiscardOldest = 0, //!< Discard oldest items
OverflowModeDiscardNewest, //!< Discard newest items
OverflowModeWait //!< Wait for space to be free
} OverflowMode;
/*!
Constructs a DataQueue.
The \a size will be the maximum queue size and the \a mode will dictate
overflow behavior.
*/
explicit DataQueue(int maxSize, OverflowMode mode);
//! Destructs a DataQueue.
virtual ~DataQueue();
/*!
Pushes an item into the queue.
If the queue is full and overflow mode is OverflowModeWait then this
function will block until pop() is called.
*/
void push(const T &item);
/*!
Pops an item from the queue.
If the queue is empty then this function will block. If blocking is
undesired, then check the return of count() before calling pop().
*/
T pop();
//! Returns the number of items in the queue.
int count() const;
private:
std::deque m_queue;
int m_maxSize;
OverflowMode m_mode;
mutable QMutex m_mutex;
QWaitCondition m_notEmptyCondition;
QWaitCondition m_notFullCondition;
};
template
DataQueue::DataQueue(int maxSize, OverflowMode mode)
: m_queue()
, m_maxSize(maxSize)
, m_mode(mode)
, m_mutex()
, m_notEmptyCondition()
, m_notFullCondition()
{}
template
DataQueue::~DataQueue()
{}
template
void DataQueue::push(const T &item)
{
m_mutex.lock();
if (m_queue.size() == m_maxSize) {
switch (m_mode) {
case OverflowModeDiscardOldest:
m_queue.pop_front();
m_queue.push_back(item);
break;
case OverflowModeDiscardNewest:
// This item is the newest so discard it and exit
break;
case OverflowModeWait:
m_notFullCondition.wait(&m_mutex);
m_queue.push_back(item);
break;
}
} else {
m_queue.push_back(item);
if (m_queue.size() == 1) {
m_notEmptyCondition.wakeOne();
}
}
m_mutex.unlock();
}
template
T DataQueue::pop()
{
T retVal;
m_mutex.lock();
if (m_queue.size() == 0) {
m_notEmptyCondition.wait(&m_mutex);
}
retVal = m_queue.front();
m_queue.pop_front();
if (m_mode == OverflowModeWait && m_queue.size() == m_maxSize - 1) {
m_notFullCondition.wakeOne();
}
m_mutex.unlock();
return retVal;
}
template
int DataQueue::count() const
{
QMutexLocker locker(&m_mutex);
return m_queue.size();
}
#endif // DATAQUEUE_H