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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
use std::sync::atomic::{AtomicUsize, Ordering};
use std::sync::mpsc;
use std::sync::Arc;
use std::thread::{Builder as ThreadBuilder, JoinHandle};
use crate::grpc_sys;
use crate::cq::{CompletionQueue, CompletionQueueHandle, EventType, WorkQueue};
use crate::task::CallTag;
fn poll_queue(tx: mpsc::Sender<CompletionQueue>) {
let cq = Arc::new(CompletionQueueHandle::new());
let worker_info = Arc::new(WorkQueue::new());
let cq = CompletionQueue::new(cq, worker_info);
tx.send(cq.clone()).expect("send back completion queue");
loop {
let e = cq.next();
match e.type_ {
EventType::GRPC_QUEUE_SHUTDOWN => break,
EventType::GRPC_QUEUE_TIMEOUT => continue,
EventType::GRPC_OP_COMPLETE => {}
}
let tag: Box<CallTag> = unsafe { Box::from_raw(e.tag as _) };
tag.resolve(&cq, e.success != 0);
while let Some(work) = unsafe { cq.worker.pop_work() } {
work.finish();
}
}
}
pub struct EnvBuilder {
cq_count: usize,
name_prefix: Option<String>,
after_start: Option<Arc<dyn Fn() + Send + Sync>>,
before_stop: Option<Arc<dyn Fn() + Send + Sync>>,
}
impl EnvBuilder {
pub fn new() -> EnvBuilder {
EnvBuilder {
cq_count: unsafe { grpc_sys::gpr_cpu_num_cores() as usize },
name_prefix: None,
after_start: None,
before_stop: None,
}
}
pub fn cq_count(mut self, count: usize) -> EnvBuilder {
assert!(count > 0);
self.cq_count = count;
self
}
pub fn name_prefix<S: Into<String>>(mut self, prefix: S) -> EnvBuilder {
self.name_prefix = Some(prefix.into());
self
}
pub fn after_start<F: Fn() + Send + Sync + 'static>(mut self, f: F) -> EnvBuilder {
self.after_start = Some(Arc::new(f));
self
}
pub fn before_stop<F: Fn() + Send + Sync + 'static>(mut self, f: F) -> EnvBuilder {
self.before_stop = Some(Arc::new(f));
self
}
pub fn build(self) -> Environment {
unsafe {
grpc_sys::grpc_init();
}
let mut cqs = Vec::with_capacity(self.cq_count);
let mut handles = Vec::with_capacity(self.cq_count);
let (tx, rx) = mpsc::channel();
for i in 0..self.cq_count {
let tx_i = tx.clone();
let mut builder = ThreadBuilder::new();
if let Some(ref prefix) = self.name_prefix {
builder = builder.name(format!("{}-{}", prefix, i));
}
let after_start = self.after_start.clone();
let before_stop = self.before_stop.clone();
let handle = builder
.spawn(move || {
if let Some(f) = after_start {
f();
}
poll_queue(tx_i);
if let Some(f) = before_stop {
f();
}
})
.unwrap();
handles.push(handle);
}
for _ in 0..self.cq_count {
cqs.push(rx.recv().unwrap());
}
Environment {
cqs,
idx: AtomicUsize::new(0),
_handles: handles,
}
}
}
pub struct Environment {
cqs: Vec<CompletionQueue>,
idx: AtomicUsize,
_handles: Vec<JoinHandle<()>>,
}
impl Environment {
pub fn new(cq_count: usize) -> Environment {
assert!(cq_count > 0);
EnvBuilder::new()
.name_prefix("grpc-poll")
.cq_count(cq_count)
.build()
}
pub fn completion_queues(&self) -> &[CompletionQueue] {
self.cqs.as_slice()
}
pub fn pick_cq(&self) -> CompletionQueue {
let idx = self.idx.fetch_add(1, Ordering::Relaxed);
self.cqs[idx % self.cqs.len()].clone()
}
}
impl Drop for Environment {
fn drop(&mut self) {
for cq in self.completion_queues() {
cq.shutdown()
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_basic_loop() {
let mut env = Environment::new(2);
let q1 = env.pick_cq();
let q2 = env.pick_cq();
let q3 = env.pick_cq();
let cases = vec![(&q1, &q3, true), (&q1, &q2, false)];
for (lq, rq, is_eq) in cases {
let lq_ref = lq.borrow().unwrap();
let rq_ref = rq.borrow().unwrap();
if is_eq {
assert_eq!(lq_ref.as_ptr(), rq_ref.as_ptr());
} else {
assert_ne!(lq_ref.as_ptr(), rq_ref.as_ptr());
}
}
assert_eq!(env.completion_queues().len(), 2);
for cq in env.completion_queues() {
cq.shutdown();
}
for handle in env._handles.drain(..) {
handle.join().unwrap();
}
}
}