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
use std::rc::Rc;
use std::cell::RefCell;
use dataflow::channels::Content;
use abomonation::Abomonation;
use timely_communication::Push;
pub struct Tee<T: 'static, D: 'static> {
buffer: Vec<D>,
shared: Rc<RefCell<Vec<Box<Push<(T, Content<D>)>>>>>,
}
impl<T: Clone+'static, D: Abomonation+Clone+'static> Push<(T, Content<D>)> for Tee<T, D> {
#[inline]
fn push(&mut self, message: &mut Option<(T, Content<D>)>) {
if let Some((ref time, ref mut data)) = *message {
let mut pushers = self.shared.borrow_mut();
for index in 0..pushers.len() {
if index < pushers.len() - 1 {
self.buffer.extend_from_slice(data);
Content::push_at(&mut self.buffer, (*time).clone(), &mut pushers[index]);
}
else {
Content::push_at(data, (*time).clone(), &mut pushers[index]);
}
}
}
else {
for pusher in self.shared.borrow_mut().iter_mut() {
pusher.push(&mut None);
}
}
}
}
impl<T, D> Tee<T, D> {
pub fn new() -> (Tee<T, D>, TeeHelper<T, D>) {
let shared = Rc::new(RefCell::new(Vec::new()));
let port = Tee {
buffer: Vec::with_capacity(Content::<D>::default_length()),
shared: shared.clone(),
};
(port, TeeHelper { shared: shared })
}
}
impl<T, D> Clone for Tee<T, D> {
fn clone(&self) -> Tee<T, D> {
Tee {
buffer: Vec::with_capacity(self.buffer.capacity()),
shared: self.shared.clone(),
}
}
}
pub struct TeeHelper<T, D> {
shared: Rc<RefCell<Vec<Box<Push<(T, Content<D>)>>>>>
}
impl<T, D> TeeHelper<T, D> {
pub fn add_pusher<P: Push<(T, Content<D>)>+'static>(&self, pusher: P) {
self.shared.borrow_mut().push(Box::new(pusher));
}
}
impl<T, D> Clone for TeeHelper<T, D> {
fn clone(&self) -> Self {
TeeHelper {
shared: self.shared.clone()
}
}
}