TDME2 1.9.121
Queue.h
Go to the documentation of this file.
1#pragma once
2
3#include <tdme/tdme.h>
5
6#include <queue>
7
10
11using std::queue;
14
15namespace tdme {
16namespace os {
17namespace threading {
18
19/**
20 * Consumer/producer queue.
21 * @author Andreas Drewke
22 */
23template <typename T>
24class Queue {
25public:
26 /**
27 * @brief Public constructor
28 */
29 Queue(const unsigned int maxElements) :
31 m("queue"),
32 c("queue"),
33 stopRequested(false) {
34 //
35 }
36
37 /**
38 * @brief Destructor, removes remaining elements from queue
39 */
40 virtual ~Queue() {
41 while (data.size() > 0) {
42 T* element = data.front();
43 delete element;
44 data.pop();
45 }
46 }
47
48 /**
49 * @brief Requests this queue to be stopped, any gets will be woke up and return NULL
50 */
51 void stop() {
52 stopRequested = true;
53 c.signal();
54 }
55
56 /**
57 * @brief Gets an element from this queue, if no element exists yet the calling thread will be blocked until an element is available
58 * @return T*
59 */
61 m.lock();
62 while (data.empty() && stopRequested == false) {
63 c.wait(m);
64 }
65 if (stopRequested == true && data.size() == 0) {
66 m.unlock();
67 c.signal();
68 return NULL;
69 } else {
70 T* element = data.front();
71 data.pop();
72 m.unlock();
73 return element;
74 }
75 }
76
77 /**
78 * @brief Adds an element to this queue, signals threads which waits for an element
79 * @param element T* element
80 * @param declinable bool if element is declinable
81 * @return if element was added
82 */
83 bool addElement(T* element, const bool declinable) {
84 m.lock();
85 if (declinable == true && data.size() > maxElements) {
86 m.unlock();
87 return false;
88 }
89 data.push(element);
90 c.signal();
91 m.unlock();
92 return true;
93 }
94
95protected:
96 typedef queue<T*> QueueType;
98 unsigned int maxElements;
99
100private:
103 volatile bool stopRequested;
104
105};
106
107};
108};
109};
Threading condition variable implementation.
Definition: Condition.h:28
void signal()
wake ups a waiting thread on this condition, associated mutex should protect signal
Definition: Condition.cpp:29
void wait(Mutex &mutex)
Blocks current thread until signaled/broadcasted, associated mutex should protect wait.
Definition: Condition.cpp:47
Mutex implementation.
Definition: Mutex.h:27
void unlock()
Unlocks this mutex.
Definition: Mutex.cpp:48
void lock()
Locks the mutex, additionally mutex locks will block until other locks have been unlocked.
Definition: Mutex.cpp:39
Consumer/producer queue.
Definition: Queue.h:24
queue< T * > QueueType
Definition: Queue.h:96
bool addElement(T *element, const bool declinable)
Adds an element to this queue, signals threads which waits for an element.
Definition: Queue.h:83
T * getElement()
Gets an element from this queue, if no element exists yet the calling thread will be blocked until an...
Definition: Queue.h:60
unsigned int maxElements
Definition: Queue.h:98
Queue(const unsigned int maxElements)
Public constructor.
Definition: Queue.h:29
volatile bool stopRequested
Definition: Queue.h:103
void stop()
Requests this queue to be stopped, any gets will be woke up and return NULL.
Definition: Queue.h:51
virtual ~Queue()
Destructor, removes remaining elements from queue.
Definition: Queue.h:40
Definition: fwd-tdme.h:4