ruststream 0.6.1

Async messaging framework for Rust: broker-agnostic traits, router, codecs, and a conformance harness for broker authors.
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
//! The `include` family on [`Router`]: mounting macro-generated definitions, in the
//! default-codec form (`RouteCodec = ()`) and the chain-codec form (`RouteCodec: Codec`).

use serde::Serialize;
use serde::de::DeserializeOwned;

use crate::codec::Codec;
use crate::{BatchSubscriber, Broker, Connected, SubscriptionSource};

use crate::runtime::batch::{BatchDef, SliceHandler};
use crate::runtime::batch_publishing::BatchPublishingDef;
use crate::runtime::input::{DecodeWith, RawBytes};
use crate::runtime::metadata::HandlerMetadata;
use crate::runtime::publish::{PublishTransform, ReplyWiring, TypedPublisher};
use crate::runtime::publishing::PublishingDef;
use crate::runtime::subscriber_def::SubscriberDef;

use super::builder::Router;
use super::{
    BatchPublishingRouter, IncludedBatchRouter, IncludedRouter, PublishingRouter,
    SubscribedBatchRouter,
};

impl<B: Broker + 'static, Routes, RouteLayers> Router<B, Routes, (), RouteLayers> {
    /// Mounts a `#[subscriber]`-generated definition on its own source, decoding its input with the
    /// [`DefaultCodec`](crate::codec::DefaultCodec).
    ///
    /// Name a codec for the chain with [`with_codec`](Self::with_codec). The router-level
    /// counterpart of [`BrokerScope::include`](crate::runtime::BrokerScope::include).
    #[cfg(any(feature = "json", feature = "cbor", feature = "msgpack"))]
    pub fn include<Def>(
        self,
        def: Def,
    ) -> IncludedRouter<B, Def::Source, Def, crate::codec::DefaultCodec, (), RouteLayers, Routes>
    where
        Def: SubscriberDef,
        Def::Source: SubscriptionSource<Connected<B>> + Send + 'static,
        <Def::Source as SubscriptionSource<Connected<B>>>::Subscriber: Send + 'static,
        Def::Input: DecodeWith<crate::codec::DefaultCodec>,
        Def::Handler: 'static,
    {
        let source = def.source();
        self.mount_subscriber(source, def, crate::codec::DefaultCodec::default())
    }

    /// Mounts a `#[subscriber]`-generated definition on an explicit subscription `source`
    /// (overriding the macro's own source), decoding its input with the
    /// [`DefaultCodec`](crate::codec::DefaultCodec).
    ///
    /// Useful to retarget a handler - e.g. mount it on an in-memory source in tests, or a
    /// different broker descriptor per deployment. The subscription name in metadata comes from
    /// `source`. The router-level counterpart of
    /// [`BrokerScope::include_on`](crate::runtime::BrokerScope::include_on).
    #[cfg(any(feature = "json", feature = "cbor", feature = "msgpack"))]
    pub fn include_on<Source, Def>(
        self,
        source: Source,
        def: Def,
    ) -> IncludedRouter<B, Source, Def, crate::codec::DefaultCodec, (), RouteLayers, Routes>
    where
        Source: SubscriptionSource<Connected<B>> + Send + 'static,
        Source::Subscriber: Send + 'static,
        Def: SubscriberDef,
        Def::Input: DecodeWith<crate::codec::DefaultCodec>,
        Def::Handler: 'static,
    {
        self.mount_subscriber(source, def, crate::codec::DefaultCodec::default())
    }

    /// Mounts a `#[subscriber(batch(..))]`-generated definition on its own source, decoding each
    /// element with the [`DefaultCodec`](crate::codec::DefaultCodec).
    ///
    /// The source's subscriber must implement [`BatchSubscriber`] - natively, or through the
    /// [`Buffered`](crate::Buffered) adapter. Router and app middleware wrap per-message handlers
    /// and do not apply to batch registrations.
    #[cfg(any(feature = "json", feature = "cbor", feature = "msgpack"))]
    pub fn include_batch<Def>(
        self,
        def: Def,
    ) -> IncludedBatchRouter<B, Def::Source, Def, crate::codec::DefaultCodec, (), RouteLayers, Routes>
    where
        Def: BatchDef,
        Def::Source: SubscriptionSource<Connected<B>> + Send + 'static,
        <Def::Source as SubscriptionSource<Connected<B>>>::Subscriber:
            BatchSubscriber + Send + 'static,
        Def::Input: DecodeWith<crate::codec::DefaultCodec>,
        Def::Handler: 'static,
    {
        let source = def.source();
        self.mount_batch(source, def, crate::codec::DefaultCodec::default())
    }

    /// Mounts a `#[subscriber(batch(..))]`-generated definition on an explicit subscription
    /// `source` (overriding the macro's own source), decoding each element with the
    /// [`DefaultCodec`](crate::codec::DefaultCodec).
    #[cfg(any(feature = "json", feature = "cbor", feature = "msgpack"))]
    pub fn include_batch_on<S, Def>(
        self,
        source: S,
        def: Def,
    ) -> IncludedBatchRouter<B, S, Def, crate::codec::DefaultCodec, (), RouteLayers, Routes>
    where
        S: SubscriptionSource<Connected<B>> + Send + 'static,
        S::Subscriber: BatchSubscriber + Send + 'static,
        Def: BatchDef,
        Def::Input: DecodeWith<crate::codec::DefaultCodec>,
        Def::Handler: 'static,
    {
        self.mount_batch(source, def, crate::codec::DefaultCodec::default())
    }

    /// Attaches a slice handler to a batch subscription described by `source`, decoding each
    /// element with the [`DefaultCodec`](crate::codec::DefaultCodec).
    ///
    /// The functional-path counterpart of [`include_batch`](Self::include_batch): `handler` is
    /// any [`SliceHandler`](crate::runtime::SliceHandler), typically a closure
    /// `|batch: &[T], ctx: &mut Context| async { .. }`. The source's subscriber must implement
    /// [`BatchSubscriber`] - natively, or through the [`Buffered`](crate::Buffered) adapter.
    /// Set the dispatch concurrency with [`workers`](Router::workers) on the returned router.
    #[cfg(any(feature = "json", feature = "cbor", feature = "msgpack"))]
    pub fn subscribe_batch<S, T, H>(
        self,
        source: S,
        handler: H,
        meta: HandlerMetadata,
    ) -> SubscribedBatchRouter<B, S, T, crate::codec::DefaultCodec, H, (), RouteLayers, Routes>
    where
        S: SubscriptionSource<Connected<B>> + Send + 'static,
        S::Subscriber: BatchSubscriber + Send + 'static,
        T: DeserializeOwned + Send + Sync + 'static,
        H: SliceHandler<T> + 'static,
    {
        self.push_batch_route(source, handler, crate::codec::DefaultCodec::default(), meta)
    }

    /// Mounts a `#[subscriber(batch(..), publish("name"))]`-generated definition on its own
    /// source, decoding each element with the `publisher`'s own codec and publishing the replies
    /// through it.
    ///
    /// `publisher` is either a plain [`TypedPublisher`] (each reply published independently) or
    /// a [`Transactional`](crate::runtime::Transactional) one (the batch's replies inside one
    /// transaction). The mounted handler joins the app's publish pipeline at mount time, like
    /// [`include_publishing`](Self::include_publishing).
    pub fn include_batch_publishing<Def, RP>(
        self,
        def: Def,
        publisher: RP,
    ) -> BatchPublishingRouter<B, Def::Source, Def, RP::Codec, RP, (), RouteLayers, Routes>
    where
        Def: BatchPublishingDef + 'static,
        Def::Source: SubscriptionSource<Connected<B>> + Send + 'static,
        <Def::Source as SubscriptionSource<Connected<B>>>::Subscriber:
            BatchSubscriber + Send + 'static,
        Def::Input: DecodeWith<RP::Codec>,
        Def::Reply: Serialize + Send + Sync + 'static,
        RP: ReplyWiring + 'static,
    {
        let codec = publisher.decode_codec().clone();
        let source = def.source();
        self.mount_batch_publishing(source, def, codec, publisher)
    }

    /// Mounts a `#[subscriber(batch(..), publish("name"))]`-generated definition on an explicit
    /// subscription `source`, decoding each element with the `publisher`'s own codec.
    pub fn include_batch_publishing_on<S, Def, RP>(
        self,
        source: S,
        def: Def,
        publisher: RP,
    ) -> BatchPublishingRouter<B, S, Def, RP::Codec, RP, (), RouteLayers, Routes>
    where
        S: SubscriptionSource<Connected<B>> + Send + 'static,
        S::Subscriber: BatchSubscriber + Send + 'static,
        Def: BatchPublishingDef + 'static,
        Def::Input: DecodeWith<RP::Codec>,
        Def::Reply: Serialize + Send + Sync + 'static,
        RP: ReplyWiring + 'static,
    {
        let codec = publisher.decode_codec().clone();
        self.mount_batch_publishing(source, def, codec, publisher)
    }

    /// Mounts a `#[subscriber(.., publish("name"))]`-generated definition on its own source,
    /// decoding its input with the `publisher`'s own codec and sending the reply through it.
    ///
    /// The mounted handler joins the app's publish pipeline at mount time: the app-wide
    /// [`publish_layer`](crate::runtime::RustStream::publish_layer)s wrap each reply, and the
    /// publisher's own static [`PublishTransform`] stack runs closest to the value.
    pub fn include_publishing<Def, Leaf, ReplyCodec, Transforms>(
        self,
        def: Def,
        publisher: TypedPublisher<Leaf, ReplyCodec, Transforms>,
    ) -> PublishingRouter<
        B,
        Def::Source,
        Def,
        ReplyCodec,
        Leaf,
        ReplyCodec,
        Transforms,
        (),
        RouteLayers,
        Routes,
    >
    where
        Def: PublishingDef + 'static,
        Def::Source: SubscriptionSource<Connected<B>> + Send + 'static,
        <Def::Source as SubscriptionSource<Connected<B>>>::Subscriber: Send + 'static,
        Def::Input: DecodeWith<ReplyCodec>,
        Def::Reply: Serialize + Send + Sync + 'static,
        Leaf: 'static,
        ReplyCodec: Codec + Clone + 'static,
        Transforms: PublishTransform<Def::Context> + 'static,
    {
        let codec = publisher.codec().clone();
        let source = def.source();
        self.mount_publishing(source, def, codec, publisher)
    }

    /// Mounts a `#[subscriber(.., publish("name"))]`-generated definition on an explicit
    /// subscription `source`, decoding its input with the `publisher`'s own codec.
    pub fn include_publishing_on<Source, Def, Leaf, ReplyCodec, Transforms>(
        self,
        source: Source,
        def: Def,
        publisher: TypedPublisher<Leaf, ReplyCodec, Transforms>,
    ) -> PublishingRouter<
        B,
        Source,
        Def,
        ReplyCodec,
        Leaf,
        ReplyCodec,
        Transforms,
        (),
        RouteLayers,
        Routes,
    >
    where
        Source: SubscriptionSource<Connected<B>> + Send + 'static,
        Source::Subscriber: Send + 'static,
        Def: PublishingDef + 'static,
        Def::Input: DecodeWith<ReplyCodec>,
        Def::Reply: Serialize + Send + Sync + 'static,
        Leaf: 'static,
        ReplyCodec: Codec + Clone + 'static,
        Transforms: PublishTransform<Def::Context> + 'static,
    {
        let codec = publisher.codec().clone();
        self.mount_publishing(source, def, codec, publisher)
    }
}

impl<B: Broker + 'static, Routes, RouteCodec, RouteLayers>
    Router<B, Routes, RouteCodec, RouteLayers>
{
    /// Mounts a `#[subscriber(.., raw)]`-generated definition on its own source.
    ///
    /// No codec is involved: the byte input kind decodes with `()`, so this form exists on every
    /// chain regardless of [`with_codec`](Self::with_codec) (which raw mounts ignore). The
    /// router-level counterpart of mounting a raw definition with
    /// [`BrokerScope::include`](crate::runtime::BrokerScope::include).
    #[must_use]
    pub fn include_raw<Def>(
        self,
        def: Def,
    ) -> IncludedRouter<B, Def::Source, Def, (), RouteCodec, RouteLayers, Routes>
    where
        Def: SubscriberDef<Input = RawBytes>,
        Def::Source: SubscriptionSource<Connected<B>> + Send + 'static,
        <Def::Source as SubscriptionSource<Connected<B>>>::Subscriber: Send + 'static,
        Def::Handler: 'static,
    {
        let source = def.source();
        self.mount_subscriber(source, def, ())
    }
}

impl<B: Broker + 'static, Routes, RouteCodec: Codec + Clone + 'static, RouteLayers>
    Router<B, Routes, RouteCodec, RouteLayers>
{
    /// Mounts a `#[subscriber]`-generated definition on its own source, decoding its input with the
    /// chain's codec (set by [`with_codec`](Self::with_codec)).
    pub fn include<Def>(
        self,
        def: Def,
    ) -> IncludedRouter<B, Def::Source, Def, RouteCodec, RouteCodec, RouteLayers, Routes>
    where
        Def: SubscriberDef,
        Def::Source: SubscriptionSource<Connected<B>> + Send + 'static,
        <Def::Source as SubscriptionSource<Connected<B>>>::Subscriber: Send + 'static,
        Def::Input: DecodeWith<RouteCodec>,
        Def::Handler: 'static,
    {
        let codec = self.codec.clone();
        let source = def.source();
        self.mount_subscriber(source, def, codec)
    }

    /// Mounts a `#[subscriber]`-generated definition on an explicit subscription `source`, decoding
    /// its input with the chain's codec (set by [`with_codec`](Self::with_codec)).
    pub fn include_on<Source, Def>(
        self,
        source: Source,
        def: Def,
    ) -> IncludedRouter<B, Source, Def, RouteCodec, RouteCodec, RouteLayers, Routes>
    where
        Source: SubscriptionSource<Connected<B>> + Send + 'static,
        Source::Subscriber: Send + 'static,
        Def: SubscriberDef,
        Def::Input: DecodeWith<RouteCodec>,
        Def::Handler: 'static,
    {
        let codec = self.codec.clone();
        self.mount_subscriber(source, def, codec)
    }

    /// Mounts a `#[subscriber(batch(..))]`-generated definition on its own source, decoding each
    /// element with the chain's codec (set by [`with_codec`](Self::with_codec)).
    pub fn include_batch<Def>(
        self,
        def: Def,
    ) -> IncludedBatchRouter<B, Def::Source, Def, RouteCodec, RouteCodec, RouteLayers, Routes>
    where
        Def: BatchDef,
        Def::Source: SubscriptionSource<Connected<B>> + Send + 'static,
        <Def::Source as SubscriptionSource<Connected<B>>>::Subscriber:
            BatchSubscriber + Send + 'static,
        Def::Input: DecodeWith<RouteCodec>,
        Def::Handler: 'static,
    {
        let codec = self.codec.clone();
        let source = def.source();
        self.mount_batch(source, def, codec)
    }

    /// Mounts a `#[subscriber(batch(..))]`-generated definition on an explicit subscription
    /// `source`, decoding each element with the chain's codec (set by
    /// [`with_codec`](Self::with_codec)).
    pub fn include_batch_on<S, Def>(
        self,
        source: S,
        def: Def,
    ) -> IncludedBatchRouter<B, S, Def, RouteCodec, RouteCodec, RouteLayers, Routes>
    where
        S: SubscriptionSource<Connected<B>> + Send + 'static,
        S::Subscriber: BatchSubscriber + Send + 'static,
        Def: BatchDef,
        Def::Input: DecodeWith<RouteCodec>,
        Def::Handler: 'static,
    {
        let codec = self.codec.clone();
        self.mount_batch(source, def, codec)
    }

    /// Attaches a slice handler to a batch subscription described by `source`, decoding each
    /// element with the chain's codec (set by [`with_codec`](Self::with_codec)).
    ///
    /// See the default-codec form for details on the handler shape.
    pub fn subscribe_batch<S, T, H>(
        self,
        source: S,
        handler: H,
        meta: HandlerMetadata,
    ) -> SubscribedBatchRouter<B, S, T, RouteCodec, H, RouteCodec, RouteLayers, Routes>
    where
        S: SubscriptionSource<Connected<B>> + Send + 'static,
        S::Subscriber: BatchSubscriber + Send + 'static,
        T: DeserializeOwned + Send + Sync + 'static,
        H: SliceHandler<T> + 'static,
    {
        let codec = self.codec.clone();
        self.push_batch_route(source, handler, codec, meta)
    }

    /// Mounts a `#[subscriber(batch(..), publish("name"))]`-generated definition on its own
    /// source, decoding each element with the chain's codec and publishing the replies through
    /// `publisher`.
    pub fn include_batch_publishing<Def, RP>(
        self,
        def: Def,
        publisher: RP,
    ) -> BatchPublishingRouter<B, Def::Source, Def, RouteCodec, RP, RouteCodec, RouteLayers, Routes>
    where
        Def: BatchPublishingDef + 'static,
        Def::Source: SubscriptionSource<Connected<B>> + Send + 'static,
        <Def::Source as SubscriptionSource<Connected<B>>>::Subscriber:
            BatchSubscriber + Send + 'static,
        Def::Input: DecodeWith<RouteCodec>,
        Def::Reply: Serialize + Send + Sync + 'static,
        RP: 'static,
    {
        let codec = self.codec.clone();
        let source = def.source();
        self.mount_batch_publishing(source, def, codec, publisher)
    }

    /// Mounts a `#[subscriber(batch(..), publish("name"))]`-generated definition on an explicit
    /// subscription `source`, decoding each element with the chain's codec.
    pub fn include_batch_publishing_on<S, Def, RP>(
        self,
        source: S,
        def: Def,
        publisher: RP,
    ) -> BatchPublishingRouter<B, S, Def, RouteCodec, RP, RouteCodec, RouteLayers, Routes>
    where
        S: SubscriptionSource<Connected<B>> + Send + 'static,
        S::Subscriber: BatchSubscriber + Send + 'static,
        Def: BatchPublishingDef + 'static,
        Def::Input: DecodeWith<RouteCodec>,
        Def::Reply: Serialize + Send + Sync + 'static,
        RP: 'static,
    {
        let codec = self.codec.clone();
        self.mount_batch_publishing(source, def, codec, publisher)
    }

    /// Mounts a `#[subscriber(.., publish("name"))]`-generated definition on its own source,
    /// decoding its input with the chain's codec and replying through `publisher`.
    pub fn include_publishing<Def, Leaf, ReplyCodec, Transforms>(
        self,
        def: Def,
        publisher: TypedPublisher<Leaf, ReplyCodec, Transforms>,
    ) -> PublishingRouter<
        B,
        Def::Source,
        Def,
        RouteCodec,
        Leaf,
        ReplyCodec,
        Transforms,
        RouteCodec,
        RouteLayers,
        Routes,
    >
    where
        Def: PublishingDef + 'static,
        Def::Source: SubscriptionSource<Connected<B>> + Send + 'static,
        <Def::Source as SubscriptionSource<Connected<B>>>::Subscriber: Send + 'static,
        Def::Input: DecodeWith<RouteCodec>,
        Def::Reply: Serialize + Send + Sync + 'static,
        Leaf: 'static,
        ReplyCodec: Codec + 'static,
        Transforms: PublishTransform<Def::Context> + 'static,
    {
        let codec = self.codec.clone();
        let source = def.source();
        self.mount_publishing(source, def, codec, publisher)
    }

    /// Mounts a `#[subscriber(.., publish("name"))]`-generated definition on an explicit
    /// subscription `source`, decoding its input with the chain's codec.
    pub fn include_publishing_on<Source, Def, Leaf, ReplyCodec, Transforms>(
        self,
        source: Source,
        def: Def,
        publisher: TypedPublisher<Leaf, ReplyCodec, Transforms>,
    ) -> PublishingRouter<
        B,
        Source,
        Def,
        RouteCodec,
        Leaf,
        ReplyCodec,
        Transforms,
        RouteCodec,
        RouteLayers,
        Routes,
    >
    where
        Source: SubscriptionSource<Connected<B>> + Send + 'static,
        Source::Subscriber: Send + 'static,
        Def: PublishingDef + 'static,
        Def::Input: DecodeWith<RouteCodec>,
        Def::Reply: Serialize + Send + Sync + 'static,
        Leaf: 'static,
        ReplyCodec: Codec + 'static,
        Transforms: PublishTransform<Def::Context> + 'static,
    {
        let codec = self.codec.clone();
        self.mount_publishing(source, def, codec, publisher)
    }
}