2017-02-09 13:12:12 -05:00
|
|
|
// Copyright (c) Charles J. Cliffe
|
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
#include <deque>
|
2017-02-09 13:12:12 -05:00
|
|
|
#include <mutex>
|
|
|
|
#include <thread>
|
|
|
|
#include <cstdint>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <condition_variable>
|
2017-02-12 10:48:04 -05:00
|
|
|
#include <typeinfo>
|
2017-02-16 21:54:18 -05:00
|
|
|
#include <iostream>
|
2017-02-09 13:12:12 -05:00
|
|
|
|
|
|
|
#define MIN_ITEM_NB (1)
|
|
|
|
|
|
|
|
//use this timeout constant in either pop() or push() calls to indicate
|
|
|
|
// a non-blocking operation, so respectively equivalent to try_pop() and try_push()
|
|
|
|
#define NON_BLOCKING_TIMEOUT (100)
|
|
|
|
|
|
|
|
//use this timeout constant in either pop() or push() calls to indicate
|
|
|
|
//an indefnite timeout duration.
|
|
|
|
#define BLOCKING_INFINITE_TIMEOUT (0)
|
|
|
|
|
2017-02-12 10:48:04 -05:00
|
|
|
class ThreadQueueBase {
|
|
|
|
};
|
|
|
|
|
2017-08-13 12:49:47 -04:00
|
|
|
typedef std::shared_ptr<ThreadQueueBase> ThreadQueueBasePtr;
|
|
|
|
|
2017-02-09 13:12:12 -05:00
|
|
|
/** A thread-safe asynchronous blocking queue */
|
|
|
|
template<typename T>
|
|
|
|
class ThreadBlockingQueue : public ThreadQueueBase {
|
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
typedef typename std::deque<T>::value_type value_type;
|
|
|
|
typedef typename std::deque<T>::size_type size_type;
|
2017-02-09 13:12:12 -05:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
/*! Create safe blocking queue. */
|
|
|
|
ThreadBlockingQueue() {
|
2017-05-24 12:55:37 -04:00
|
|
|
//at least 1 (== Java SynchronizedQueue)
|
2017-05-24 06:24:36 -04:00
|
|
|
m_max_num_items = MIN_ITEM_NB;
|
2017-02-09 13:12:12 -05:00
|
|
|
};
|
|
|
|
|
2017-02-12 10:48:04 -05:00
|
|
|
//Copy constructor
|
2017-02-09 13:12:12 -05:00
|
|
|
ThreadBlockingQueue(const ThreadBlockingQueue& sq) {
|
|
|
|
std::lock_guard < std::mutex > lock(sq.m_mutex);
|
2017-05-24 06:24:36 -04:00
|
|
|
m_queue = sq.m_queue;
|
|
|
|
m_max_num_items = sq.m_max_num_items;
|
2017-02-09 13:12:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*! Destroy safe queue. */
|
|
|
|
~ThreadBlockingQueue() {
|
|
|
|
std::lock_guard < std::mutex > lock(m_mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Sets the maximum number of items in the queue. Real value is clamped
|
|
|
|
* to 1 on the lower bound.
|
|
|
|
* \param[in] nb max of items
|
|
|
|
*/
|
|
|
|
void set_max_num_items(unsigned int max_num_items) {
|
|
|
|
std::lock_guard < std::mutex > lock(m_mutex);
|
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
if (max_num_items > m_max_num_items) {
|
2017-02-12 10:48:04 -05:00
|
|
|
//Only raise the existing max size, never reduce it
|
2017-02-09 13:12:12 -05:00
|
|
|
//for simplification sake at runtime.
|
2017-05-24 06:24:36 -04:00
|
|
|
m_max_num_items = max_num_items;
|
2017-02-09 13:12:12 -05:00
|
|
|
m_cond_not_full.notify_all();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pushes the item into the queue. If the queue is full, waits until room
|
|
|
|
* is available, for at most timeout microseconds.
|
|
|
|
* \param[in] item An item.
|
|
|
|
* \param[in] timeout a max waiting timeout in microseconds for an item to be pushed.
|
|
|
|
* by default, = 0 means indefinite wait.
|
2017-05-25 03:32:27 -04:00
|
|
|
* \param[in] errorMessage if != nullptr (is nullptr by default) an error message written on std::cout in case of the timeout wait
|
2017-02-09 13:12:12 -05:00
|
|
|
* \return true if an item was pushed into the queue, else a timeout has occured.
|
|
|
|
*/
|
2017-05-25 03:32:27 -04:00
|
|
|
bool push(const value_type& item, std::uint64_t timeout = BLOCKING_INFINITE_TIMEOUT,const char* errorMessage = nullptr) {
|
2017-02-09 13:12:12 -05:00
|
|
|
std::unique_lock < std::mutex > lock(m_mutex);
|
|
|
|
|
|
|
|
if (timeout == BLOCKING_INFINITE_TIMEOUT) {
|
|
|
|
m_cond_not_full.wait(lock, [this]() // Lambda funct
|
|
|
|
{
|
2017-05-24 06:24:36 -04:00
|
|
|
return m_queue.size() < m_max_num_items;
|
2017-02-09 13:12:12 -05:00
|
|
|
});
|
2017-05-24 06:24:36 -04:00
|
|
|
} else if (timeout <= NON_BLOCKING_TIMEOUT && m_queue.size() >= m_max_num_items) {
|
2017-02-09 13:12:12 -05:00
|
|
|
// if the value is below a threshold, consider it is a try_push()
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if (false == m_cond_not_full.wait_for(lock, std::chrono::microseconds(timeout),
|
2017-05-25 03:32:27 -04:00
|
|
|
[this]() { return m_queue.size() < m_max_num_items; })) {
|
|
|
|
|
|
|
|
if (errorMessage != nullptr) {
|
|
|
|
std::thread::id currentThreadId = std::this_thread::get_id();
|
|
|
|
std::cout << "WARNING: Thread 0x" << std::hex << currentThreadId << std::dec <<
|
|
|
|
" (" << currentThreadId << ") executing {" << typeid(*this).name() << "}.push() has failed with timeout > " <<
|
2017-08-28 14:31:07 -04:00
|
|
|
(timeout * 0.001) << " ms, message: '" << errorMessage << "'" << std::endl << std::flush;
|
2017-05-25 03:32:27 -04:00
|
|
|
}
|
|
|
|
return false;
|
2017-02-09 13:12:12 -05:00
|
|
|
}
|
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
m_queue.push_back(item);
|
2017-05-21 03:58:45 -04:00
|
|
|
m_cond_not_empty.notify_all();
|
2017-02-09 13:12:12 -05:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Try to pushes the item into the queue, immediatly, without waiting. If the queue is full, the item
|
|
|
|
* is not inserted and the function returns false.
|
|
|
|
* \param[in] item An item.
|
|
|
|
*/
|
|
|
|
bool try_push(const value_type& item) {
|
|
|
|
std::lock_guard < std::mutex > lock(m_mutex);
|
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
if (m_queue.size() >= m_max_num_items) {
|
2017-02-09 13:12:12 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
m_queue.push_back(item);
|
2017-02-09 13:12:12 -05:00
|
|
|
m_cond_not_empty.notify_all();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pops item from the queue. If the queue is empty, blocks for timeout microseconds, or until item becomes available.
|
|
|
|
* \param[in] timeout The number of microseconds to wait. O (default) means indefinite wait.
|
2017-05-25 03:32:27 -04:00
|
|
|
* \param[in] errorMessage if != nullptr (is nullptr by default) an error message written on std::cout in case of the timeout wait
|
2017-02-09 13:12:12 -05:00
|
|
|
* \return true if get an item from the queue, false if no item is received before the timeout.
|
|
|
|
*/
|
2017-05-25 03:32:27 -04:00
|
|
|
bool pop(value_type& item, std::uint64_t timeout = BLOCKING_INFINITE_TIMEOUT, const char* errorMessage = nullptr) {
|
2017-02-09 13:12:12 -05:00
|
|
|
std::unique_lock < std::mutex > lock(m_mutex);
|
|
|
|
|
|
|
|
if (timeout == BLOCKING_INFINITE_TIMEOUT) {
|
|
|
|
m_cond_not_empty.wait(lock, [this]() // Lambda funct
|
|
|
|
{
|
2017-05-24 06:24:36 -04:00
|
|
|
return !m_queue.empty();
|
2017-02-09 13:12:12 -05:00
|
|
|
});
|
2017-05-24 06:24:36 -04:00
|
|
|
} else if (timeout <= NON_BLOCKING_TIMEOUT && m_queue.empty()) {
|
2017-02-09 13:12:12 -05:00
|
|
|
// if the value is below a threshold, consider it is try_pop()
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
else if (false == m_cond_not_empty.wait_for(lock, std::chrono::microseconds(timeout),
|
2017-05-24 06:24:36 -04:00
|
|
|
[this]() { return !m_queue.empty(); })) {
|
2017-05-25 03:32:27 -04:00
|
|
|
|
|
|
|
if (errorMessage != nullptr) {
|
|
|
|
std::thread::id currentThreadId = std::this_thread::get_id();
|
|
|
|
std::cout << "WARNING: Thread 0x" << std::hex << currentThreadId << std::dec <<
|
|
|
|
" (" << currentThreadId << ") executing {" << typeid(*this).name() << "}.pop() has failed with timeout > " <<
|
2017-08-28 14:31:07 -04:00
|
|
|
(timeout * 0.001) << " ms, message: '" << errorMessage << "'" << std::endl << std::flush;
|
2017-05-25 03:32:27 -04:00
|
|
|
}
|
2017-02-09 13:12:12 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
item = m_queue.front();
|
|
|
|
m_queue.pop_front();
|
2017-02-09 13:12:12 -05:00
|
|
|
m_cond_not_full.notify_all();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tries to pop item from the queue.
|
|
|
|
* \param[out] item The item.
|
|
|
|
* \return False is returned if no item is available.
|
|
|
|
*/
|
|
|
|
bool try_pop(value_type& item) {
|
|
|
|
std::lock_guard < std::mutex > lock(m_mutex);
|
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
if (m_queue.empty()) {
|
2017-02-09 13:12:12 -05:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
item = m_queue.front();
|
|
|
|
m_queue.pop_front();
|
2017-02-09 13:12:12 -05:00
|
|
|
m_cond_not_full.notify_all();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Gets the number of items in the queue.
|
|
|
|
* \return Number of items in the queue.
|
|
|
|
*/
|
|
|
|
size_type size() const {
|
|
|
|
std::lock_guard < std::mutex > lock(m_mutex);
|
2017-05-24 06:24:36 -04:00
|
|
|
return m_queue.size();
|
2017-02-09 13:12:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the queue is empty.
|
|
|
|
* \return true if queue is empty.
|
|
|
|
*/
|
|
|
|
bool empty() const {
|
|
|
|
std::lock_guard < std::mutex > lock(m_mutex);
|
2017-05-24 06:24:36 -04:00
|
|
|
return m_queue.empty();
|
2017-02-09 13:12:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Check if the queue is full.
|
|
|
|
* \return true if queue is full.
|
|
|
|
*/
|
|
|
|
bool full() const {
|
|
|
|
std::lock_guard < std::mutex > lock(m_mutex);
|
2017-05-24 06:24:36 -04:00
|
|
|
return (m_queue.size() >= m_max_num_items);
|
2017-02-09 13:12:12 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove any items in the queue.
|
|
|
|
*/
|
|
|
|
void flush() {
|
|
|
|
std::lock_guard < std::mutex > lock(m_mutex);
|
2017-05-24 06:24:36 -04:00
|
|
|
m_queue.clear();
|
2017-02-09 13:12:12 -05:00
|
|
|
m_cond_not_full.notify_all();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Swaps the contents.
|
|
|
|
* \param[out] sq The ThreadBlockingQueue to swap with 'this'.
|
|
|
|
*/
|
|
|
|
void swap(ThreadBlockingQueue& sq) {
|
|
|
|
if (this != &sq) {
|
|
|
|
std::lock_guard < std::mutex > lock1(m_mutex);
|
|
|
|
std::lock_guard < std::mutex > lock2(sq.m_mutex);
|
2017-05-24 06:24:36 -04:00
|
|
|
m_queue.swap(sq.m_queue);
|
|
|
|
std::swap(m_max_num_items, sq.m_max_num_items);
|
2017-02-09 13:12:12 -05:00
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
if (!m_queue.empty()) {
|
2017-02-09 13:12:12 -05:00
|
|
|
m_cond_not_empty.notify_all();
|
|
|
|
}
|
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
if (!sq.m_queue.empty()) {
|
2017-02-09 13:12:12 -05:00
|
|
|
sq.m_cond_not_empty.notify_all();
|
|
|
|
}
|
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
if (!m_queue.full()) {
|
2017-02-09 13:12:12 -05:00
|
|
|
m_cond_not_full.notify_all();
|
|
|
|
}
|
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
if (!sq.m_queue.full()) {
|
2017-02-09 13:12:12 -05:00
|
|
|
sq.m_cond_not_full.notify_all();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*! The copy assignment operator */
|
|
|
|
ThreadBlockingQueue& operator=(const ThreadBlockingQueue& sq) {
|
|
|
|
if (this != &sq) {
|
|
|
|
std::lock_guard < std::mutex > lock1(m_mutex);
|
|
|
|
std::lock_guard < std::mutex > lock2(sq.m_mutex);
|
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
m_queue = sq.m_queue;
|
|
|
|
m_max_num_items = sq.m_max_num_items;
|
2017-02-09 13:12:12 -05:00
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
if (!m_queue.empty()) {
|
2017-02-09 13:12:12 -05:00
|
|
|
m_cond_not_empty.notify_all();
|
|
|
|
}
|
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
if (!m_queue.full()) {
|
2017-02-09 13:12:12 -05:00
|
|
|
m_cond_not_full.notify_all();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2017-05-24 12:55:37 -04:00
|
|
|
|
2017-05-24 06:24:36 -04:00
|
|
|
std::deque<T> m_queue;
|
2017-02-09 13:12:12 -05:00
|
|
|
|
|
|
|
mutable std::mutex m_mutex;
|
|
|
|
std::condition_variable m_cond_not_empty;
|
|
|
|
std::condition_variable m_cond_not_full;
|
2017-05-24 06:24:36 -04:00
|
|
|
size_t m_max_num_items = MIN_ITEM_NB;
|
2017-02-09 13:12:12 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
/*! Swaps the contents of two ThreadBlockingQueue objects. (external operator) */
|
|
|
|
template<typename T>
|
|
|
|
void swap(ThreadBlockingQueue<T>& q1, ThreadBlockingQueue<T>& q2) {
|
|
|
|
q1.swap(q2);
|
|
|
|
}
|