-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmini_lock_thread_safe_queue_list_wait.cpp
More file actions
113 lines (107 loc) · 3.64 KB
/
Copy pathmini_lock_thread_safe_queue_list_wait.cpp
File metadata and controls
113 lines (107 loc) · 3.64 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
#include <memory>
#include <queue>
#include <mutex>
#include <condition_variable>
#include <unistd.h>
#include <iostream>
/*带有wait pop操作的线程安全细粒度锁的无限队列*/
template <typename T>
class threadsafe_queue
{
private:
struct node
{
std::shared_ptr<T> data;
std::unique_ptr<node> next;
};
std::mutex head_mutex;
std::mutex tail_mutex;
std::unique_ptr<node> head;
node *tail;
std::condition_variable data_cond;
node *get_tail()
{
std::lock_guard<std::mutex> tail_lock(tail_mutex);
return tail;
}
std::unique_ptr<node> pop_head()
{
/*相比上一版代码 这个锁加到了此函数的调用者*/
std::unique_ptr<node> old_head = std::move(head);
head = std::move(old_head->next);
return old_head;
}
std::unique_lock<std::mutex> wait_for_data()
{
std::unique_lock<std::mutex> head_lock(head_mutex);
data_cond.wait(head_lock,[&]{return head.get() != get_tail();});
return std::move(head_lock);
}
std::unique_ptr<node> wait_pop_head()
{
std::unique_lock<std::mutex> head_lock(wait_for_data());//这里已经判断是否为空了
return pop_head();
}
std::unique_ptr<node> wait_pop_head(T &value)
{
std::unique_lock<std::mutex> head_lock(wait_for_data());//这里已经判断是否为空了
value = std::move(*head->data);
return pop_head();
}
std::unique_ptr<node> try_pop_head()
{
std::lock_guard<std::mutex> head_lock(head_mutex);
if(head.get() == get_tail())
return std::unique_ptr<node>();
return pop_head();
}
std::unique_ptr<node> try_pop_head(T &value)
{
std::lock_guard<std::mutex> head_lock(head_mutex);
if(head.get() == get_tail())
return std::unique_ptr<node>();
value = std::move(*head->data);
return pop_head();
}
public:
threadsafe_queue():head(new node),tail(head.get()){};
threadsafe_queue(const threadsafe_queue& other) = delete;
threadsafe_queue & operator=(const threadsafe_queue &other) = delete;
std::shared_ptr<T> wait_and_pop()
{
std::unique_ptr<node> const old_head = wait_pop_head();
return old_head->data;
}
void wait_and_pop(T &value)
{
std::unique_ptr<node> const old_head = wait_pop_head(value);
}
std::shared_ptr<T> try_pop()
{
std::unique_ptr<node> old_head = try_pop_head();
return old_head ? old_head->data : std::shared_ptr<T>();
};
bool try_pop(T &value)
{
std::unique_ptr<node> old_head = try_pop_head(value);
return old_head;
};
void push(T new_value)
{
std::shared_ptr<T> new_data(std::make_shared<T>(std::move(new_value)));
std::unique_ptr<node> p(new node);
node *const new_tail = p.get();//书中这条语句在临界区 感觉没必要
{
std::lock_guard<std::mutex> tail_lock(tail_mutex);
tail->data = new_data;
tail->next = std::move(p);
tail = new_tail;
}
data_cond.notify_one();
};
bool empty()
{
std::lock_guard<std::mutex> head_lock(head_mutex);
return (head.get() == get_tail());
}
};