datum-core 0.9.0

Rust stream-processing library mirroring Akka/Pekko Streams Typed, built on Ractor actors
Documentation
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
//! Port-bundle shapes describing a graph's (or stage's) external ports.
//!
//! A [`Shape`] is the contract returned from a `GraphDsl` builder closure and
//! declared by every [`GraphStage`](super::GraphStage): it enumerates the open
//! inlets and outlets. The builder's `finish` step checks that the result
//! shape's ports exactly match the graph's unconnected ports. Shapes mirror
//! Akka's `Shape` hierarchy (`SourceShape`, `FlowShape`, `FanInShape`, …).

use super::*;

/// A bundle of typed external ports. Implementors expose their inlets/outlets
/// in a stable order; `inlets()`/`outlets()` return the type-erased views the
/// builder validates against. Cheap to clone (ports are id + name).
pub trait Shape: Clone + Send + Sync + 'static {
    fn inlets(&self) -> Vec<AnyInlet>;
    fn outlets(&self) -> Vec<AnyOutlet>;
}

/// One outlet, no inlets — a graph that behaves as a `Source`.
#[derive(Debug, PartialEq, Eq)]
pub struct SourceShape<Out: 'static> {
    outlet: Outlet<Out>,
}

impl<Out: 'static> Clone for SourceShape<Out> {
    fn clone(&self) -> Self {
        Self {
            outlet: self.outlet.clone(),
        }
    }
}

impl<Out: 'static> SourceShape<Out> {
    #[must_use]
    pub fn new(outlet: Outlet<Out>) -> Self {
        Self { outlet }
    }

    #[must_use]
    pub fn outlet(&self) -> Outlet<Out> {
        self.outlet.clone()
    }
}

impl<Out: 'static> Shape for SourceShape<Out> {
    fn inlets(&self) -> Vec<AnyInlet> {
        Vec::new()
    }

    fn outlets(&self) -> Vec<AnyOutlet> {
        vec![self.outlet.erase()]
    }
}

/// One inlet, no outlets — a graph that behaves as a `Sink`.
#[derive(Debug, PartialEq, Eq)]
pub struct SinkShape<In: 'static> {
    inlet: Inlet<In>,
}

impl<In: 'static> Clone for SinkShape<In> {
    fn clone(&self) -> Self {
        Self {
            inlet: self.inlet.clone(),
        }
    }
}

impl<In: 'static> SinkShape<In> {
    #[must_use]
    pub fn new(inlet: Inlet<In>) -> Self {
        Self { inlet }
    }

    #[must_use]
    pub fn inlet(&self) -> Inlet<In> {
        self.inlet.clone()
    }
}

impl<In: 'static> Shape for SinkShape<In> {
    fn inlets(&self) -> Vec<AnyInlet> {
        vec![self.inlet.erase()]
    }

    fn outlets(&self) -> Vec<AnyOutlet> {
        Vec::new()
    }
}

/// One inlet and one outlet — a graph that behaves as a `Flow`. Re-exported as
/// `GraphFlowShape` from the crate root.
#[derive(Debug, PartialEq, Eq)]
pub struct FlowShape<In: 'static, Out: 'static> {
    inlet: Inlet<In>,
    outlet: Outlet<Out>,
}

impl<In: 'static, Out: 'static> Clone for FlowShape<In, Out> {
    fn clone(&self) -> Self {
        Self {
            inlet: self.inlet.clone(),
            outlet: self.outlet.clone(),
        }
    }
}

impl<In: 'static, Out: 'static> FlowShape<In, Out> {
    #[must_use]
    pub fn new(inlet: Inlet<In>, outlet: Outlet<Out>) -> Self {
        Self { inlet, outlet }
    }

    #[must_use]
    pub fn inlet(&self) -> Inlet<In> {
        self.inlet.clone()
    }

    #[must_use]
    pub fn outlet(&self) -> Outlet<Out> {
        self.outlet.clone()
    }
}

impl<In: 'static, Out: 'static> Shape for FlowShape<In, Out> {
    fn inlets(&self) -> Vec<AnyInlet> {
        vec![self.inlet.erase()]
    }

    fn outlets(&self) -> Vec<AnyOutlet> {
        vec![self.outlet.erase()]
    }
}

/// N inlets and one outlet — the shape of merge-style junctions (`Merge`,
/// `Concat`, `Interleave`, `OrElse`, `MergeSorted`, …). `Out` defaults to `In`;
/// `MergeLatest` uses `Out = Vec<In>`.
#[derive(Debug, PartialEq, Eq)]
pub struct FanInShape<In: 'static, Out: 'static = In> {
    inlets: Vec<Inlet<In>>,
    outlet: Outlet<Out>,
}

impl<In: 'static, Out: 'static> Clone for FanInShape<In, Out> {
    fn clone(&self) -> Self {
        Self {
            inlets: self.inlets.clone(),
            outlet: self.outlet.clone(),
        }
    }
}

impl<In: 'static, Out: 'static> FanInShape<In, Out> {
    #[must_use]
    pub fn new(inlets: Vec<Inlet<In>>, outlet: Outlet<Out>) -> Self {
        Self { inlets, outlet }
    }

    #[must_use]
    pub fn inlet_count(&self) -> usize {
        self.inlets.len()
    }

    pub fn inlet(&self, index: usize) -> StreamResult<Inlet<In>> {
        self.inlets
            .get(index)
            .cloned()
            .ok_or_else(|| StreamError::GraphValidation(format!("fan-in inlet {index} is missing")))
    }

    #[must_use]
    pub fn inlets_vec(&self) -> Vec<Inlet<In>> {
        self.inlets.clone()
    }

    #[must_use]
    pub fn outlet(&self) -> Outlet<Out> {
        self.outlet.clone()
    }
}

impl<In: 'static, Out: 'static> Shape for FanInShape<In, Out> {
    fn inlets(&self) -> Vec<AnyInlet> {
        self.inlets.iter().map(Inlet::erase).collect()
    }

    fn outlets(&self) -> Vec<AnyOutlet> {
        vec![self.outlet.erase()]
    }
}

/// One preferred inlet, N secondary inlets, and one outlet — the shape of
/// `MergePreferred`. Explicit-only in the wiring DSL (use `.preferred()` /
/// `.secondary(i)`).
#[derive(Debug, PartialEq, Eq)]
pub struct MergePreferredShape<T: 'static> {
    preferred: Inlet<T>,
    secondary: Vec<Inlet<T>>,
    outlet: Outlet<T>,
}

impl<T: 'static> Clone for MergePreferredShape<T> {
    fn clone(&self) -> Self {
        Self {
            preferred: self.preferred.clone(),
            secondary: self.secondary.clone(),
            outlet: self.outlet.clone(),
        }
    }
}

impl<T: 'static> MergePreferredShape<T> {
    #[must_use]
    pub fn new(preferred: Inlet<T>, secondary: Vec<Inlet<T>>, outlet: Outlet<T>) -> Self {
        Self {
            preferred,
            secondary,
            outlet,
        }
    }

    #[must_use]
    pub fn preferred(&self) -> Inlet<T> {
        self.preferred.clone()
    }

    #[must_use]
    pub fn secondary_count(&self) -> usize {
        self.secondary.len()
    }

    pub fn secondary(&self, index: usize) -> StreamResult<Inlet<T>> {
        self.secondary.get(index).cloned().ok_or_else(|| {
            StreamError::GraphValidation(format!(
                "merge-preferred secondary inlet {index} is missing"
            ))
        })
    }

    #[must_use]
    pub fn secondary_vec(&self) -> Vec<Inlet<T>> {
        self.secondary.clone()
    }

    #[must_use]
    pub fn outlet(&self) -> Outlet<T> {
        self.outlet.clone()
    }
}

impl<T: 'static> Shape for MergePreferredShape<T> {
    fn inlets(&self) -> Vec<AnyInlet> {
        std::iter::once(self.preferred.erase())
            .chain(self.secondary.iter().map(Inlet::erase))
            .collect()
    }

    fn outlets(&self) -> Vec<AnyOutlet> {
        vec![self.outlet.erase()]
    }
}

/// One inlet and N outlets — the shape of fan-out junctions (`Broadcast`,
/// `Balance`, `Partition`). `Out` defaults to `In`.
#[derive(Debug, PartialEq, Eq)]
pub struct FanOutShape<In: 'static, Out: 'static = In> {
    inlet: Inlet<In>,
    outlets: Vec<Outlet<Out>>,
}

impl<In: 'static, Out: 'static> Clone for FanOutShape<In, Out> {
    fn clone(&self) -> Self {
        Self {
            inlet: self.inlet.clone(),
            outlets: self.outlets.clone(),
        }
    }
}

impl<In: 'static, Out: 'static> FanOutShape<In, Out> {
    #[must_use]
    pub fn new(inlet: Inlet<In>, outlets: Vec<Outlet<Out>>) -> Self {
        Self { inlet, outlets }
    }

    #[must_use]
    pub fn inlet(&self) -> Inlet<In> {
        self.inlet.clone()
    }

    #[must_use]
    pub fn outlet_count(&self) -> usize {
        self.outlets.len()
    }

    pub fn outlet(&self, index: usize) -> StreamResult<Outlet<Out>> {
        self.outlets.get(index).cloned().ok_or_else(|| {
            StreamError::GraphValidation(format!("fan-out outlet {index} is missing"))
        })
    }

    #[must_use]
    pub fn outlets_vec(&self) -> Vec<Outlet<Out>> {
        self.outlets.clone()
    }
}

impl<In: 'static, Out: 'static> Shape for FanOutShape<In, Out> {
    fn inlets(&self) -> Vec<AnyInlet> {
        vec![self.inlet.erase()]
    }

    fn outlets(&self) -> Vec<AnyOutlet> {
        self.outlets.iter().map(Outlet::erase).collect()
    }
}

/// One inlet and two heterogeneously-typed outlets — the shape of `Unzip` and
/// `UnzipWith`. Outlets are reached via `.out0()` / `.out1()`.
#[derive(Debug, PartialEq, Eq)]
pub struct FanOutShape2<In: 'static, Out0: 'static, Out1: 'static> {
    inlet: Inlet<In>,
    out0: Outlet<Out0>,
    out1: Outlet<Out1>,
}

impl<In: 'static, Out0: 'static, Out1: 'static> Clone for FanOutShape2<In, Out0, Out1> {
    fn clone(&self) -> Self {
        Self {
            inlet: self.inlet.clone(),
            out0: self.out0.clone(),
            out1: self.out1.clone(),
        }
    }
}

impl<In: 'static, Out0: 'static, Out1: 'static> FanOutShape2<In, Out0, Out1> {
    #[must_use]
    pub fn new(inlet: Inlet<In>, out0: Outlet<Out0>, out1: Outlet<Out1>) -> Self {
        Self { inlet, out0, out1 }
    }

    #[must_use]
    pub fn inlet(&self) -> Inlet<In> {
        self.inlet.clone()
    }

    #[must_use]
    pub fn out0(&self) -> Outlet<Out0> {
        self.out0.clone()
    }

    #[must_use]
    pub fn out1(&self) -> Outlet<Out1> {
        self.out1.clone()
    }
}

impl<In: 'static, Out0: 'static, Out1: 'static> Shape for FanOutShape2<In, Out0, Out1> {
    fn inlets(&self) -> Vec<AnyInlet> {
        vec![self.inlet.erase()]
    }

    fn outlets(&self) -> Vec<AnyOutlet> {
        vec![self.out0.erase(), self.out1.erase()]
    }
}

/// Two heterogeneously-typed inlets and one `(Left, Right)` outlet — the shape
/// of `Zip`. Inlets are reached via `.in0()` / `.in1()`.
#[derive(Debug, PartialEq, Eq)]
pub struct ZipShape<Left: 'static, Right: 'static> {
    left: Inlet<Left>,
    right: Inlet<Right>,
    outlet: Outlet<(Left, Right)>,
}

impl<Left: 'static, Right: 'static> Clone for ZipShape<Left, Right> {
    fn clone(&self) -> Self {
        Self {
            left: self.left.clone(),
            right: self.right.clone(),
            outlet: self.outlet.clone(),
        }
    }
}

impl<Left: 'static, Right: 'static> ZipShape<Left, Right> {
    #[must_use]
    pub fn new(left: Inlet<Left>, right: Inlet<Right>, outlet: Outlet<(Left, Right)>) -> Self {
        Self {
            left,
            right,
            outlet,
        }
    }

    #[must_use]
    pub fn in0(&self) -> Inlet<Left> {
        self.left.clone()
    }

    #[must_use]
    pub fn in1(&self) -> Inlet<Right> {
        self.right.clone()
    }

    #[must_use]
    pub fn outlet(&self) -> Outlet<(Left, Right)> {
        self.outlet.clone()
    }
}

impl<Left: 'static, Right: 'static> Shape for ZipShape<Left, Right> {
    fn inlets(&self) -> Vec<AnyInlet> {
        vec![self.left.erase(), self.right.erase()]
    }

    fn outlets(&self) -> Vec<AnyOutlet> {
        vec![self.outlet.erase()]
    }
}

/// Two inlets and two outlets arranged as two independent directions — the
/// shape of a bidirectional flow (top: `I1 → O1`, bottom: `I2 → O2`).
/// Explicit-only in the wiring DSL.
#[derive(Debug, PartialEq, Eq)]
pub struct BidiShape<I1: 'static, O1: 'static, I2: 'static, O2: 'static> {
    in1: Inlet<I1>,
    out1: Outlet<O1>,
    in2: Inlet<I2>,
    out2: Outlet<O2>,
}

impl<I1: 'static, O1: 'static, I2: 'static, O2: 'static> Clone for BidiShape<I1, O1, I2, O2> {
    fn clone(&self) -> Self {
        Self {
            in1: self.in1.clone(),
            out1: self.out1.clone(),
            in2: self.in2.clone(),
            out2: self.out2.clone(),
        }
    }
}

impl<I1: 'static, O1: 'static, I2: 'static, O2: 'static> BidiShape<I1, O1, I2, O2> {
    #[must_use]
    pub fn new(in1: Inlet<I1>, out1: Outlet<O1>, in2: Inlet<I2>, out2: Outlet<O2>) -> Self {
        Self {
            in1,
            out1,
            in2,
            out2,
        }
    }

    #[must_use]
    pub fn in1(&self) -> Inlet<I1> {
        self.in1.clone()
    }

    #[must_use]
    pub fn out1(&self) -> Outlet<O1> {
        self.out1.clone()
    }

    #[must_use]
    pub fn in2(&self) -> Inlet<I2> {
        self.in2.clone()
    }

    #[must_use]
    pub fn out2(&self) -> Outlet<O2> {
        self.out2.clone()
    }

    #[must_use]
    pub fn from_flows<In1: 'static, Out1: 'static, In2: 'static, Out2: 'static>(
        top: &FlowShape<In1, Out1>,
        bottom: &FlowShape<In2, Out2>,
    ) -> BidiShape<In1, Out1, In2, Out2> {
        BidiShape::new(top.inlet(), top.outlet(), bottom.inlet(), bottom.outlet())
    }
}

impl<I1: 'static, O1: 'static, I2: 'static, O2: 'static> Shape for BidiShape<I1, O1, I2, O2> {
    fn inlets(&self) -> Vec<AnyInlet> {
        vec![self.in1.erase(), self.in2.erase()]
    }

    fn outlets(&self) -> Vec<AnyOutlet> {
        vec![self.out1.erase(), self.out2.erase()]
    }
}

/// Hands a [`GraphStage`](super::GraphStage) fresh, uniquely-identified ports
/// when its shape is allocated. Each `inlet`/`outlet` call draws a new global
/// [`PortId`](super::PortId); the allocator itself is stateless.
#[derive(Debug, Default)]
pub struct PortAllocator;

impl PortAllocator {
    #[must_use]
    pub fn inlet<T: 'static>(&mut self, name: impl Into<String>) -> Inlet<T> {
        Inlet::with_id(next_port_id(), name)
    }

    pub(super) fn inlet_arc<T: 'static>(&mut self, name: Arc<str>) -> Inlet<T> {
        Inlet::with_arc_name(next_port_id(), name)
    }

    #[must_use]
    pub fn outlet<T: 'static>(&mut self, name: impl Into<String>) -> Outlet<T> {
        Outlet::with_id(next_port_id(), name)
    }

    pub(super) fn outlet_arc<T: 'static>(&mut self, name: Arc<str>) -> Outlet<T> {
        Outlet::with_arc_name(next_port_id(), name)
    }
}