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
//! Conversion to the `Stream` type from iterators.
use crate::container::{CapacityContainerBuilder, SizableContainer, PushInto};
use crate::progress::Timestamp;
use crate::{Container, ContainerBuilder};
use crate::dataflow::operators::generic::operator::source;
use crate::dataflow::{Stream, Scope};
/// Converts to a timely [Stream], using a container builder.
pub trait ToStreamBuilder<CB: ContainerBuilder> {
/// Converts to a timely [Stream], using the supplied container builder type.
///
/// # Examples
///
/// ```
/// use timely::dataflow::operators::core::{ToStreamBuilder, Capture};
/// use timely::dataflow::operators::core::capture::Extract;
/// use timely::container::CapacityContainerBuilder;
///
/// let (data1, data2) = timely::example(|scope| {
/// let data1 = ToStreamBuilder::<CapacityContainerBuilder<_>>::to_stream_with_builder(0..3, scope)
/// .container::<Vec<_>>()
/// .capture();
/// let data2 = ToStreamBuilder::<CapacityContainerBuilder<_>>::to_stream_with_builder(vec![0,1,2], scope)
/// .container::<Vec<_>>()
/// .capture();
/// (data1, data2)
/// });
///
/// assert_eq!(data1.extract(), data2.extract());
/// ```
fn to_stream_with_builder<'scope, T: Timestamp>(self, scope: Scope<'scope, T>) -> Stream<'scope, T, CB::Container>;
}
impl<CB: ContainerBuilder, I: IntoIterator+'static> ToStreamBuilder<CB> for I where CB: PushInto<I::Item> {
fn to_stream_with_builder<'scope, T: Timestamp>(self, scope: Scope<'scope, T>) -> Stream<'scope, T, CB::Container> {
source::<_, CB, _, _>(scope, "ToStreamBuilder", |capability, info| {
// Acquire an activator, so that the operator can rescheduled itself.
let activator = scope.activator_for(info.address);
let mut iterator = self.into_iter().fuse();
let mut capability = Some(capability);
move |output| {
if let Some(element) = iterator.next() {
let mut session = output.session_with_builder(capability.as_ref().unwrap());
session.give(element);
let n = 256 * crate::container::buffer::default_capacity::<I::Item>();
session.give_iterator(iterator.by_ref().take(n - 1));
activator.activate();
}
else {
capability = None;
}
}
})
}
}
/// Converts to a timely [Stream]. Equivalent to [`ToStreamBuilder`] but
/// uses a [`CapacityContainerBuilder`].
pub trait ToStream<C> {
/// Converts to a timely [Stream].
///
/// # Examples
///
/// ```
/// use timely::dataflow::operators::core::{ToStream, Capture};
/// use timely::dataflow::operators::core::capture::Extract;
///
/// let (data1, data2) = timely::example(|scope| {
/// let data1 = (0..3).to_stream(scope).container::<Vec<_>>().capture();
/// let data2 = vec![0,1,2].to_stream(scope).container::<Vec<_>>().capture();
/// (data1, data2)
/// });
///
/// assert_eq!(data1.extract(), data2.extract());
/// ```
fn to_stream<'scope, T: Timestamp>(self, scope: Scope<'scope, T>) -> Stream<'scope, T, C>;
}
impl<C: Container + SizableContainer, I: IntoIterator+'static> ToStream<C> for I where C: PushInto<I::Item> {
fn to_stream<'scope, T: Timestamp>(self, scope: Scope<'scope, T>) -> Stream<'scope, T, C> {
ToStreamBuilder::<CapacityContainerBuilder<C>>::to_stream_with_builder(self, scope)
}
}