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
#![forbid(unsafe_code)]
use diem_metrics::IntGauge;
use futures::{
channel::mpsc,
sink::Sink,
stream::{FusedStream, Stream},
task::{Context, Poll},
};
use std::pin::Pin;
#[cfg(test)]
mod test;
pub mod diem_channel;
#[cfg(test)]
mod diem_channel_test;
pub mod message_queues;
#[cfg(test)]
mod message_queues_test;
pub struct Sender<T> {
inner: mpsc::Sender<T>,
gauge: IntGauge,
}
pub struct Receiver<T> {
inner: mpsc::Receiver<T>,
gauge: IntGauge,
}
impl<T> Clone for Sender<T> {
fn clone(&self) -> Self {
Self {
inner: self.inner.clone(),
gauge: self.gauge.clone(),
}
}
}
impl<T> Sink<T> for Sender<T> {
type Error = mpsc::SendError;
fn poll_ready(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
(*self).inner.poll_ready(cx)
}
fn start_send(mut self: Pin<&mut Self>, msg: T) -> Result<(), Self::Error> {
(*self).inner.start_send(msg).map(|_| self.gauge.inc())
}
fn poll_flush(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
Pin::new(&mut self.inner).poll_flush(cx)
}
fn poll_close(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Result<(), Self::Error>> {
Pin::new(&mut self.inner).poll_close(cx)
}
}
impl<T> Sender<T> {
pub fn try_send(&mut self, msg: T) -> Result<(), mpsc::SendError> {
(*self)
.inner
.try_send(msg)
.map(|_| self.gauge.inc())
.map_err(mpsc::TrySendError::into_send_error)
}
}
impl<T> FusedStream for Receiver<T>
where
T: std::fmt::Debug,
{
fn is_terminated(&self) -> bool {
self.inner.is_terminated()
}
}
impl<T> Stream for Receiver<T> {
type Item = T;
fn poll_next(mut self: Pin<&mut Self>, cx: &mut Context<'_>) -> Poll<Option<Self::Item>> {
let next = Pin::new(&mut self.inner).poll_next(cx);
if let Poll::Ready(Some(_)) = next {
self.gauge.dec();
}
next
}
}
pub fn new<T>(size: usize, gauge: &IntGauge) -> (Sender<T>, Receiver<T>) {
gauge.set(0);
let (sender, receiver) = mpsc::channel(size);
(
Sender {
inner: sender,
gauge: gauge.clone(),
},
Receiver {
inner: receiver,
gauge: gauge.clone(),
},
)
}
pub fn new_test<T>(size: usize) -> (Sender<T>, Receiver<T>) {
let gauge = IntGauge::new("TEST_COUNTER", "test").unwrap();
new(size, &gauge)
}