-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathchannel.hpp
73 lines (62 loc) · 1.78 KB
/
channel.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
/*
* .============.
* // M A K E / \
* // C++ DEV / \
* // E A S Y / \/ \
* ++ ----------. \/\ .
* \\ \ \ /\ /
* \\ \ \ /
* \\ \ \ /
* -============'
*
* Copyright (c) 2023 Hevake and contributors, all rights reserved.
*
* This file is part of cpp-tbox (https://github.com/cpp-main/cpp-tbox)
* Use of this source code is governed by MIT license that can be found
* in the LICENSE file in the root of the source tree. All contributing
* project authors may be found in the CONTRIBUTORS.md file in the root
* of the source tree.
*/
#ifndef TBOX_COROUTINE_CHANNEL_HPP_20180527
#define TBOX_COROUTINE_CHANNEL_HPP_20180527
#include "scheduler.h"
#include <queue>
namespace tbox {
namespace coroutine {
//! 参考 Golang 的 chan,实现一个通道
template <class T>
class Channel {
public:
Channel (Scheduler &sch) : sch_(sch) { }
bool operator >> (T &out) {
if (queue_.empty()) { //! 如果队列里没有,则等待
token_.push(sch_.getToken());
do {
sch_.wait();
if (sch_.isCanceled())
return false;
} while (queue_.empty());
}
out = queue_.front();
queue_.pop();
return true;
}
Channel& operator << (const T &value) {
if (queue_.empty() && !token_.empty()) {
auto t = token_.front();
token_.pop();
sch_.resume(t);
}
queue_.push(value);
return *this;
}
inline bool empty() const { return queue_.empty(); }
inline bool size() const { return queue_.size(); }
private:
Scheduler &sch_;
std::queue<T> queue_;
std::queue<RoutineToken> token_;
};
}
}
#endif //TBOX_COROUTINE_CHANNEL_HPP_20180527