-
Notifications
You must be signed in to change notification settings - Fork 0
/
wqueue.h
88 lines (74 loc) · 2.43 KB
/
wqueue.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
wqueue.h
Worker thread queue based on the Standard C++ library list
template class.
------------------------------------------
Copyright @ 2013 [Vic Hargrave - http://vichargrave.com]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#ifndef __wqueue_h__
#define __wqueue_h__
#include <mutex>
#include <condition_variable> // condition_variable
#include <list>
#include <iostream>
using namespace std;
#define MAX_QUEUE_LENGTH 20
template <typename T> class wqueue
{
list<T> m_queue;
mutex* m_mutex;
condition_variable* m_condv;
int max_entries;
public:
wqueue() {
// cout << "new queue and printing = " << (print_counts? "yes" : "no") << endl;
m_mutex = new mutex;
m_condv = new condition_variable;
max_entries = MAX_QUEUE_LENGTH;
}
~wqueue() {
delete m_mutex;
// delete m_condv;
}
void add(T item) {
unique_lock<mutex> lck(*m_mutex);
if (m_queue.size() >= max_entries) {
// simulate a dropped frame due to heavy traffic load
lck.unlock();
return;
}
m_queue.push_back(item);
m_condv->notify_one();
}
T remove() {
unique_lock<mutex> lck(*m_mutex);
if (m_queue.size() == 0) {
m_condv->wait(lck);
}
T item = m_queue.front();
// if (max_entries > 1 && do_print) {
// cout << q_name << " " << m_queue.size() << endl;
// }
m_queue.pop_front();
return item;
}
int size() {
m_mutex->lock();
int size = m_queue.size();
m_mutex->unlock();
return size;
}
void set_max_size(int max_value) {
max_entries = max_value;
}
};
#endif