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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
//! Buffering and session mechanisms to provide the appearance of record-at-a-time sending,
//! with the performance of batched sends.

use crate::communication::Push;
use crate::container::{ContainerBuilder, CapacityContainerBuilder, PushContainer, PushInto};
use crate::dataflow::channels::{Bundle, Message};
use crate::dataflow::operators::Capability;
use crate::progress::Timestamp;
use crate::Container;

/// Buffers data sent at the same time, for efficient communication.
///
/// The `Buffer` type should be used by calling `session` with a time, which checks whether
/// data must be flushed and creates a `Session` object which allows sending at the given time.
#[derive(Debug)]
pub struct Buffer<T, CB, P> {
    /// The currently open time, if it is open.
    time: Option<T>,
    /// A builder for containers, to send at `self.time`.
    builder: CB,
    /// The pusher to send data downstream.
    pusher: P,
}

impl<T, CB: Default, P> Buffer<T, CB, P> {
    /// Creates a new `Buffer`.
    pub fn new(pusher: P) -> Self {
        Self {
            time: None,
            builder: Default::default(),
            pusher,
        }
    }

    /// Returns a reference to the inner `P: Push` type.
    ///
    /// This is currently used internally, and should not be used without some care.
    pub fn inner(&mut self) -> &mut P { &mut self.pusher }

    /// Access the builder. Immutable access to prevent races with flushing
    /// the underlying buffer.
    pub fn builder(&self) -> &CB {
        &self.builder
    }
}

impl<T, C: Container, P: Push<Bundle<T, C>>> Buffer<T, CapacityContainerBuilder<C>, P> where T: Eq+Clone {
    /// Returns a `Session`, which accepts data to send at the associated time
    #[inline]
    pub fn session(&mut self, time: &T) -> Session<T, CapacityContainerBuilder<C>, P> {
        self.session_with_builder(time)
    }

    /// Allocates a new `AutoflushSession` which flushes itself on drop.
    #[inline]
    pub fn autoflush_session(&mut self, cap: Capability<T>) -> AutoflushSession<T, CapacityContainerBuilder<C>, P> where T: Timestamp {
        self.autoflush_session_with_builder(cap)
    }
}

impl<T, CB: ContainerBuilder, P: Push<Bundle<T, CB::Container>>> Buffer<T, CB, P> where T: Eq+Clone {
    /// Returns a `Session`, which accepts data to send at the associated time
    pub fn session_with_builder(&mut self, time: &T) -> Session<T, CB, P> {
        if let Some(true) = self.time.as_ref().map(|x| x != time) { self.flush(); }
        self.time = Some(time.clone());
        Session { buffer: self }
    }

    /// Allocates a new `AutoflushSession` which flushes itself on drop.
    pub fn autoflush_session_with_builder(&mut self, cap: Capability<T>) -> AutoflushSession<T, CB, P> where T: Timestamp {
        if let Some(true) = self.time.as_ref().map(|x| x != cap.time()) { self.flush(); }
        self.time = Some(cap.time().clone());
        AutoflushSession {
            buffer: self,
            _capability: cap,
        }
    }
}

impl<T, CB: ContainerBuilder, P: Push<Bundle<T, CB::Container>>> Buffer<T, CB, P> where T: Eq+Clone {
    /// Flushes all data and pushes a `None` to `self.pusher`, indicating a flush.
    pub fn cease(&mut self) {
        self.flush();
        self.pusher.push(&mut None);
    }

    /// Extract pending data from the builder, but not forcing a flush.
    #[inline]
    fn extract(&mut self) {
        while let Some(container) = self.builder.extract() {
            let time = self.time.as_ref().unwrap().clone();
            Message::push_at(container, time, &mut self.pusher);
        }
    }

    /// Flush the builder, forcing all its contents to be written.
    #[inline]
    fn flush(&mut self) {
        while let Some(container) = self.builder.finish() {
            let time = self.time.as_ref().unwrap().clone();
            Message::push_at(container, time, &mut self.pusher);
        }
    }

    /// Gives an entire container at the current time.
    fn give_container(&mut self, container: &mut CB::Container) {
        if !container.is_empty() {
            self.builder.push_container(container);
            self.extract();
        }
    }
}

impl<T, CB: ContainerBuilder, P: Push<Bundle<T, CB::Container>>> Buffer<T, CB, P>
where
    T: Eq+Clone,
    CB::Container: PushContainer,
{
    // Push a single item into the builder. Internal method for use by `Session`.
    #[inline]
    fn give<D: PushInto<CB::Container>>(&mut self, data: D) {
        self.builder.push(data);
        self.extract();
    }
}

/// An output session for sending records at a specified time.
///
/// The `Session` struct provides the user-facing interface to an operator output, namely
/// the `Buffer` type. A `Session` wraps a session of output at a specified time, and
/// avoids what would otherwise be a constant cost of checking timestamp equality.
pub struct Session<'a, T, CB, P> {
    buffer: &'a mut Buffer<T, CB, P>,
}

impl<'a, T, CB, P> Session<'a, T, CB, P>
where
    T: Eq + Clone + 'a,
    CB: ContainerBuilder + 'a,
    P: Push<Bundle<T, CB::Container>> + 'a
{
    /// Provide a container at the time specified by the [Session].
    pub fn give_container(&mut self, container: &mut CB::Container) {
        self.buffer.give_container(container)
    }

    /// Access the builder. Immutable access to prevent races with flushing
    /// the underlying buffer.
    pub fn builder(&self) -> &CB {
        self.buffer.builder()
    }
}

impl<'a, T, CB, P: Push<Bundle<T, CB::Container>>+'a> Session<'a, T, CB, P>
where
    T: Eq + Clone + 'a,
    CB: ContainerBuilder + 'a,
    CB::Container: PushContainer,
{
    /// Provides one record at the time specified by the `Session`.
    #[inline]
    pub fn give<D: PushInto<CB::Container>>(&mut self, data: D) {
        self.buffer.give(data);
    }

    /// Provides an iterator of records at the time specified by the `Session`.
    #[inline]
    pub fn give_iterator<I, D>(&mut self, iter: I)
    where
        I: Iterator<Item=D>,
        D: PushInto<CB::Container>,
    {
        for item in iter {
            self.give(item);
        }
    }
}

/// A session which will flush itself when dropped.
pub struct AutoflushSession<'a, T, CB, P>
where
    T: Timestamp + 'a,
    CB: ContainerBuilder + 'a,
    P: Push<Bundle<T, CB::Container>> + 'a,
{
    /// A reference to the underlying buffer.
    buffer: &'a mut Buffer<T, CB, P>,
    /// The capability being used to send the data.
    _capability: Capability<T>,
}

impl<'a, T, CB, P> AutoflushSession<'a, T, CB, P>
where
    T: Timestamp + 'a,
    CB: ContainerBuilder + 'a,
    P: Push<Bundle<T, CB::Container>> + 'a,
{
    /// Transmits a single record.
    #[inline]
    pub fn give<D: PushInto<CB::Container>>(&mut self, data: D) where CB::Container: PushContainer {
        self.buffer.give(data);
    }
    /// Transmits records produced by an iterator.
    #[inline]
    pub fn give_iterator<I, D>(&mut self, iter: I)
        where
            I: Iterator<Item=D>,
            D: PushInto<CB::Container>,
            CB::Container: PushContainer,
    {
        for item in iter {
            self.give(item);
        }
    }
}

impl<'a, T, CB, P> Drop for AutoflushSession<'a, T, CB, P>
where
    T: Timestamp + 'a,
    CB: ContainerBuilder + 'a,
    P: Push<Bundle<T, CB::Container>> + 'a,
{
    fn drop(&mut self) {
        self.buffer.cease();
    }
}