1//! A handle to a typed stream of timely data.
2//!
3//! Most high-level timely dataflow programming is done with streams, which are each a handle to an
4//! operator output. Extension methods on the `Stream` type provide the appearance of higher-level
5//! declarative programming, while constructing a dataflow graph underneath.
67use crate::progress::{Source, Target};
89use crate::communication::Push;
10use crate::dataflow::Scope;
11use crate::dataflow::channels::pushers::tee::TeeHelper;
12use crate::dataflow::channels::Message;
13use std::fmt::{self, Debug};
14use crate::Container;
1516// use dataflow::scopes::root::loggers::CHANNELS_Q;
1718/// Abstraction of a stream of `C: Container` records timestamped with `S::Timestamp`.
19///
20/// Internally `Stream` maintains a list of data recipients who should be presented with data
21/// produced by the source of the stream.
22pub struct StreamCore<S: Scope, C> {
23/// The progress identifier of the stream's data source.
24name: Source,
25/// The `Scope` containing the stream.
26scope: S,
27/// Maintains a list of Push<Message<T, C>> interested in the stream's output.
28ports: TeeHelper<S::Timestamp, C>,
29}
3031impl<S: Scope, C> Clone for StreamCore<S, C> {
32fn clone(&self) -> Self {
33Self {
34 name: self.name,
35 scope: self.scope.clone(),
36 ports: self.ports.clone(),
37 }
38 }
3940fn clone_from(&mut self, source: &Self) {
41self.name.clone_from(&source.name);
42self.scope.clone_from(&source.scope);
43self.ports.clone_from(&source.ports);
44 }
45}
4647/// A stream batching data in vectors.
48pub type Stream<S, D> = StreamCore<S, Vec<D>>;
4950impl<S: Scope, C: Container> StreamCore<S, C> {
51/// Connects the stream to a destination.
52 ///
53 /// The destination is described both by a `Target`, for progress tracking information, and a `P: Push` where the
54 /// records should actually be sent. The identifier is unique to the edge and is used only for logging purposes.
55pub fn connect_to<P: Push<Message<S::Timestamp, C>>+'static>(&self, target: Target, pusher: P, identifier: usize) {
5657let mut logging = self.scope().logging();
58 logging.as_mut().map(|l| l.log(crate::logging::ChannelsEvent {
59 id: identifier,
60 scope_addr: self.scope.addr().to_vec(),
61 source: (self.name.node, self.name.port),
62 target: (target.node, target.port),
63 }));
6465self.scope.add_edge(self.name, target);
66self.ports.add_pusher(pusher);
67 }
68/// Allocates a `Stream` from a supplied `Source` name and rendezvous point.
69pub fn new(source: Source, output: TeeHelper<S::Timestamp, C>, scope: S) -> Self {
70Self { name: source, ports: output, scope }
71 }
72/// The name of the stream's source operator.
73pub fn name(&self) -> &Source { &self.name }
74/// The scope immediately containing the stream.
75pub fn scope(&self) -> S { self.scope.clone() }
7677/// Allows the assertion of a container type, for the benefit of type inference.
78pub fn container<D: Container>(self) -> StreamCore<S, D> where Self: AsStream<S, D> { self.as_stream() }
79}
8081/// A type that can be translated to a [StreamCore].
82pub trait AsStream<S: Scope, C> {
83/// Translate `self` to a [StreamCore].
84fn as_stream(self) -> StreamCore<S, C>;
85}
8687impl<S: Scope, C> AsStream<S, C> for StreamCore<S, C> {
88fn as_stream(self) -> Self { self }
89}
9091impl<S, C> Debug for StreamCore<S, C>
92where
93S: Scope,
94{
95fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
96 f.debug_struct("Stream")
97 .field("source", &self.name)
98// TODO: Use `.finish_non_exhaustive()` after rust/#67364 lands
99.finish()
100 }
101}