-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
Copy pathcoroutine_channel.h
135 lines (114 loc) Β· 2.9 KB
/
coroutine_channel.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#pragma once
#include "swoole.h"
#include "coroutine.h"
#include <sys/stat.h>
#include <iostream>
#include <string>
#include <list>
#include <queue>
namespace swoole { namespace coroutine {
//-------------------------------------------------------------------------------
class Channel
{
public:
enum opcode
{
PRODUCER = 1,
CONSUMER = 2,
};
struct timer_msg_t
{
Channel *chan;
enum opcode type;
Coroutine *co;
bool error;
swTimer_node *timer;
};
void* pop(double timeout = -1);
bool push(void *data, double timeout = -1);
bool close();
Channel(size_t _capacity = 1) :
capacity(_capacity)
{
}
~Channel()
{
if (!producer_queue.empty())
{
swoole_error_log(SW_LOG_WARNING, SW_ERROR_CO_HAS_BEEN_DISCARDED, "channel is destroyed, %zu producers will be discarded", producer_queue.size());
}
if (!consumer_queue.empty())
{
swoole_error_log(SW_LOG_WARNING, SW_ERROR_CO_HAS_BEEN_DISCARDED, "channel is destroyed, %zu consumers will be discarded", consumer_queue.size());
}
}
inline bool is_closed()
{
return closed;
}
inline bool is_empty()
{
return data_queue.size() == 0;
}
inline bool is_full()
{
return data_queue.size() == capacity;
}
inline size_t length()
{
return data_queue.size();
}
inline size_t consumer_num()
{
return consumer_queue.size();
}
inline size_t producer_num()
{
return producer_queue.size();
}
inline void* pop_data()
{
if (data_queue.size() == 0)
{
return nullptr;
}
void *data = data_queue.front();
data_queue.pop();
return data;
}
protected:
size_t capacity = 1;
bool closed = false;
std::list<Coroutine *> producer_queue;
std::list<Coroutine *> consumer_queue;
std::queue<void *> data_queue;
static void timer_callback(swTimer *timer, swTimer_node *tnode);
void yield(enum opcode type);
inline void consumer_remove(Coroutine *co)
{
consumer_queue.remove(co);
}
inline void producer_remove(Coroutine *co)
{
producer_queue.remove(co);
}
inline Coroutine* pop_coroutine(enum opcode type)
{
Coroutine* co;
if (type == PRODUCER)
{
co = producer_queue.front();
producer_queue.pop_front();
swTraceLog(SW_TRACE_CHANNEL, "resume producer cid=%ld", co->get_cid());
}
else // if (type == CONSUMER)
{
co = consumer_queue.front();
consumer_queue.pop_front();
swTraceLog(SW_TRACE_CHANNEL, "resume consumer cid=%ld", co->get_cid());
}
return co;
}
};
//-------------------------------------------------------------------------------
}}