-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththreadsafe_queque.h
93 lines (75 loc) · 1.96 KB
/
threadsafe_queque.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
89
90
91
92
93
#ifndef THREADSAFE_QUEUE_H
#define THREADSAFE_QUEUE_H
#include <iostream>
#include <queue>
#include <mutex>
#include <condition_variable>
#include <memory>
#include <stdio.h>
#include <stdlib.h>
template<typename T>
class ThreadsafeQueue
{
private:
std::mutex mut;
std::queue<T> dataQueue;
std::condition_variable dataCond;
public:
ThreadsafeQueue(){}
ThreadsafeQueue(ThreadsafeQueue const& other)
{
std::unique_lock<std::mutex> lk(other.mut);
dataQueue = other.dataQueue;
}
void push(T newValue)
{
std::unique_lock<std::mutex> lk(mut);
dataQueue.push(newValue);
dataCond.notify_one();
}
void waitAndPop(T &value)
{
std::unique_lock<std::mutex> lk(mut);
dataCond.wait(lk, [this]{return !dataQueue.empty();});
value = dataQueue.front();
dataQueue.pop();
}
std::shared_ptr<T> waitAndPop()
{
std::unique_lock<std::mutex> lk(mut);
dataCond.wait(lk, [this]{return !dataQueue.empty();});
std::shared_ptr<T> res(std::make_shared<T>(dataQueue.front()));
dataQueue.pop();
return res;
}
bool tryPop(T &value)
{
std::unique_lock<std::mutex> lk(mut);
if(dataQueue.empty())
return false;
value = dataQueue.front();
dataQueue.pop();
return true;
}
std::shared_ptr<T> tryPop()
{
std::unique_lock<std::mutex> lk(mut);
if(dataQueue.empty())
return std::shared_ptr<T>();
std::shared_ptr<T> res(std::make_shared<T>(dataQueue.front()));
dataQueue.pop();
return res;
}
bool empty()
{
std::unique_lock<std::mutex> lk(mut);
return dataQueue.empty();
}
// void push(T new_value);
// void waitAndPop(T& value);
// std::shared_ptr<T> waitAndPop();
// bool tryPop(T& value);
// std::shared_ptr<T> tryPop();
// bool empty();
};
#endif // THREADSAFE_QUEQUE_H