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
use futures::{FutureExt, TryFutureExt};
use futures::channel::oneshot;
use std::cell::RefCell;
use std::rc::{Rc, Weak};
use capnp::capability::Promise;
use capnp::Error;
use std::collections::BTreeMap;
struct Inner<In, Out>
where In: 'static, Out: 'static
{
next_id: u64,
map: BTreeMap<u64, (In, oneshot::Sender<Out>)>,
}
pub struct SenderQueue<In, Out>
where In: 'static, Out: 'static
{
inner: Rc<RefCell<Inner<In, Out>>>,
}
pub struct Remover<In, Out>
where In: 'static, Out: 'static
{
id: u64,
inner: Weak<RefCell<Inner<In, Out>>>,
}
impl <In, Out> Drop for Remover<In, Out>
where In: 'static, Out: 'static
{
fn drop(&mut self) {
match self.inner.upgrade() {
Some(inner) => {
let Inner { ref mut map, .. } = *inner.borrow_mut();
map.remove(&self.id);
}
None => (),
}
}
}
impl <In, Out> SenderQueue<In, Out> where In: 'static, Out: 'static {
pub fn new() -> SenderQueue<In, Out> {
SenderQueue {
inner: Rc::new(RefCell::new(Inner {
next_id: 0,
map: BTreeMap::new(),
})),
}
}
pub fn push(&mut self, value: In) -> Promise<Out, Error> {
let weak_inner = Rc::downgrade(&self.inner);
let Inner { ref mut next_id, ref mut map, .. } = *self.inner.borrow_mut();
let (tx, rx) = oneshot::channel();
map.insert(*next_id, (value, tx));
let remover = Remover {
id: *next_id,
inner: weak_inner,
};
*next_id += 1;
Promise::from_future(rx.map_err(|_| Error::failed("SenderQueue canceled".into())).map(move |out| {
drop(remover);
out
}))
}
pub fn push_detach(&mut self, value: In) {
let Inner { ref mut next_id, ref mut map, .. } = *self.inner.borrow_mut();
let (tx, _rx) = oneshot::channel();
map.insert(*next_id, (value, tx));
*next_id += 1;
}
pub fn drain(&mut self) -> Drain<In, Out> {
let Inner { ref mut next_id, ref mut map, .. } = *self.inner.borrow_mut();
*next_id = 0;
let map = ::std::mem::replace(map, BTreeMap::new());
Drain {
iter: map.into_iter()
}
}
}
pub struct Drain<In, Out>
where In: 'static, Out: 'static
{
iter: ::std::collections::btree_map::IntoIter<u64, (In, oneshot::Sender<Out>)>,
}
impl <In, Out> ::std::iter::Iterator for Drain<In, Out>
where In: 'static, Out: 'static
{
type Item = (In, oneshot::Sender<Out>);
fn next(&mut self) -> Option<Self::Item> {
match self.iter.next() {
None => None,
Some((_k, v)) => Some(v),
}
}
}