-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy paththreadsafequeue.hpp
74 lines (62 loc) · 1.87 KB
/
threadsafequeue.hpp
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
#pragma once
#include <queue>
#include <mutex>
#include <condition_variable>
#include <memory>
// Thanks GPT-4
template<typename T>
class ThreadSafeQueue {
public:
ThreadSafeQueue() = default;
// Deleted copy constructor and copy assignment operator
ThreadSafeQueue(const ThreadSafeQueue&) = delete;
ThreadSafeQueue& operator=(const ThreadSafeQueue&) = delete;
void push(T new_value) {
std::lock_guard<std::mutex> lk(m_mutex);
m_queue.push(std::move(new_value));
m_cond.notify_one();
}
bool try_pop(T& value) {
std::lock_guard<std::mutex> lk(m_mutex);
if (m_queue.empty()) {
return false;
}
value = std::move(m_queue.front());
m_queue.pop();
return true;
}
std::shared_ptr<T> try_pop() {
std::lock_guard<std::mutex> lk(m_mutex);
if (m_queue.empty()) {
return std::shared_ptr<T>();
}
std::shared_ptr<T> res(std::make_shared<T>(std::move(m_queue.front())));
m_queue.pop();
return res;
}
void wait_and_pop(T& value) {
std::unique_lock<std::mutex> lk(m_mutex);
m_cond.wait(lk, [this]{ return !m_queue.empty(); });
value = std::move(m_queue.front());
m_queue.pop();
}
std::shared_ptr<T> wait_and_pop() {
std::unique_lock<std::mutex> lk(m_mutex);
m_cond.wait(lk, [this]{ return !m_queue.empty(); });
std::shared_ptr<T> res(std::make_shared<T>(std::move(m_queue.front())));
m_queue.pop();
return res;
}
bool empty() const {
std::lock_guard<std::mutex> lk(m_mutex);
return m_queue.empty();
}
size_t size() const {
std::lock_guard<std::mutex> lk(m_mutex);
return m_queue.size();
}
private:
mutable std::mutex m_mutex;
std::queue<T> m_queue;
std::condition_variable m_cond;
};