multiio 0.2.3

A unified I/O orchestration library for CLI/server applications
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
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
//! Asynchronous I/O engine for orchestrating async read and write operations.

use futures::stream::{self, BoxStream, StreamExt};
use serde::{Serialize, de::DeserializeOwned};
use tokio::io::AsyncReadExt;

use crate::config::{AsyncInputSpec, AsyncOutputSpec, FileExistsPolicy};
use crate::error::{AggregateError, ErrorPolicy, SingleIoError, Stage};
use crate::format::{self, AsyncFormatRegistry, FormatKind, FormatRegistry};

pub struct AsyncIoEngine {
    registry: AsyncFormatRegistry,
    sync_registry: Option<FormatRegistry>,
    error_policy: ErrorPolicy,
    inputs: Vec<AsyncInputSpec>,
    outputs: Vec<AsyncOutputSpec>,
}

impl AsyncIoEngine {
    pub fn new(
        registry: AsyncFormatRegistry,
        error_policy: ErrorPolicy,
        inputs: Vec<AsyncInputSpec>,
        outputs: Vec<AsyncOutputSpec>,
    ) -> Self {
        Self {
            registry,
            sync_registry: None,
            error_policy,
            inputs,
            outputs,
        }
    }

    pub fn new_with_sync_registry(
        registry: AsyncFormatRegistry,
        sync_registry: FormatRegistry,
        error_policy: ErrorPolicy,
        inputs: Vec<AsyncInputSpec>,
        outputs: Vec<AsyncOutputSpec>,
    ) -> Self {
        Self {
            registry,
            sync_registry: Some(sync_registry),
            error_policy,
            inputs,
            outputs,
        }
    }

    pub fn registry(&self) -> &AsyncFormatRegistry {
        &self.registry
    }

    pub fn error_policy(&self) -> ErrorPolicy {
        self.error_policy
    }

    pub fn inputs(&self) -> &[AsyncInputSpec] {
        &self.inputs
    }

    pub fn outputs(&self) -> &[AsyncOutputSpec] {
        &self.outputs
    }

    pub async fn read_all<T>(&self) -> Result<Vec<T>, AggregateError>
    where
        T: DeserializeOwned + Send + 'static,
    {
        let mut results = Vec::with_capacity(self.inputs.len());
        let mut errors = Vec::new();
        let mut buffer = Vec::new();

        for spec in &self.inputs {
            match self.read_one_with_buffer::<T>(spec, &mut buffer).await {
                Ok(value) => results.push(value),
                Err(e) => {
                    errors.push(e);
                    if matches!(self.error_policy, ErrorPolicy::FastFail) {
                        return Err(AggregateError { errors });
                    }
                }
            }
        }

        if errors.is_empty() {
            Ok(results)
        } else {
            Err(AggregateError { errors })
        }
    }

    pub fn read_records_async<T>(
        &self,
        concurrency: usize,
    ) -> BoxStream<'_, Result<T, SingleIoError>>
    where
        T: DeserializeOwned + Send + 'static,
    {
        let futs = self
            .inputs
            .iter()
            .map(|spec| self.records_stream_for_spec_async::<T>(spec));

        stream::iter(futs)
            .buffer_unordered(concurrency)
            .flat_map(|s| s)
            .boxed()
    }

    /// Read a single input asynchronously.
    async fn read_one<T>(&self, spec: &AsyncInputSpec) -> Result<T, SingleIoError>
    where
        T: DeserializeOwned + Send + 'static,
    {
        let mut buffer = Vec::new();
        self.read_one_with_buffer::<T>(spec, &mut buffer).await
    }

    async fn read_one_with_buffer<T>(
        &self,
        spec: &AsyncInputSpec,
        buffer: &mut Vec<u8>,
    ) -> Result<T, SingleIoError>
    where
        T: DeserializeOwned + Send + 'static,
    {
        // Open the input stream
        let mut reader = spec.provider.open().await.map_err(|e| SingleIoError {
            stage: Stage::Open,
            target: spec.raw.clone(),
            error: Box::new(e),
        })?;

        // Read all bytes into the reusable buffer
        buffer.clear();
        reader
            .read_to_end(buffer)
            .await
            .map_err(|e| SingleIoError {
                stage: Stage::Open,
                target: spec.raw.clone(),
                error: Box::new(e),
            })?;

        // If a sync registry is available, delegate resolution and
        // deserialization to it so that custom formats participate fully in
        // decoding. Otherwise, fall back to the async-format helpers.
        if let Some(sync_registry) = &self.sync_registry {
            match sync_registry.deserialize_value::<T>(
                spec.explicit_format.as_ref(),
                &spec.format_candidates,
                buffer,
            ) {
                Ok(value) => Ok(value),
                Err(e) => {
                    let stage = match e {
                        format::FormatError::UnknownFormat(_)
                        | format::FormatError::NoFormatMatched
                        | format::FormatError::NotEnabled(_) => Stage::ResolveInput,
                        _ => Stage::Parse,
                    };

                    Err(SingleIoError {
                        stage,
                        target: spec.raw.clone(),
                        error: Box::new(e),
                    })
                }
            }
        } else {
            // Resolve the format using the async registry and fall back to the
            // existing async-format helpers.
            let kind = self
                .registry
                .resolve(spec.explicit_format.as_ref(), &spec.format_candidates)
                .map_err(|e| SingleIoError {
                    stage: Stage::ResolveInput,
                    target: spec.raw.clone(),
                    error: Box::new(e),
                })?;

            // Deserialize
            format::deserialize_async::<T>(kind, buffer)
                .await
                .map_err(|e| SingleIoError {
                    stage: Stage::Parse,
                    target: spec.raw.clone(),
                    error: Box::new(e),
                })
        }
    }

    pub async fn write_all<T>(&self, values: &[T]) -> Result<(), AggregateError>
    where
        T: Serialize + Sync,
    {
        let mut errors = Vec::new();

        for spec in &self.outputs {
            if let Err(e) = self.write_one(spec, values).await {
                errors.push(e);
                if matches!(self.error_policy, ErrorPolicy::FastFail) {
                    return Err(AggregateError { errors });
                }
            }
        }

        if errors.is_empty() {
            Ok(())
        } else {
            Err(AggregateError { errors })
        }
    }

    pub async fn write_one_value<T>(&self, value: &T) -> Result<(), AggregateError>
    where
        T: Serialize + Sync,
    {
        let mut errors = Vec::new();

        for spec in &self.outputs {
            if let Err(e) = self.write_single(spec, value).await {
                errors.push(e);
                if matches!(self.error_policy, ErrorPolicy::FastFail) {
                    return Err(AggregateError { errors });
                }
            }
        }

        if errors.is_empty() {
            Ok(())
        } else {
            Err(AggregateError { errors })
        }
    }

    async fn write_one<T>(&self, spec: &AsyncOutputSpec, values: &[T]) -> Result<(), SingleIoError>
    where
        T: Serialize + Sync,
    {
        // If a sync registry is available, delegate resolution and
        // serialization to it so that custom formats participate fully in
        // encoding. Otherwise, fall back to the async-format helpers.
        let bytes = if let Some(sync_registry) = &self.sync_registry {
            match sync_registry.serialize_value(
                spec.explicit_format.as_ref(),
                &spec.format_candidates,
                &values,
            ) {
                Ok(bytes) => bytes,
                Err(e) => {
                    let stage = match e {
                        format::FormatError::UnknownFormat(_)
                        | format::FormatError::NoFormatMatched
                        | format::FormatError::NotEnabled(_) => Stage::ResolveOutput,
                        _ => Stage::Serialize,
                    };

                    return Err(SingleIoError {
                        stage,
                        target: spec.raw.clone(),
                        error: Box::new(e),
                    });
                }
            }
        } else {
            let kind = self.resolve_output_kind(spec)?;

            format::serialize_async(kind, &values)
                .await
                .map_err(|e| SingleIoError {
                    stage: Stage::Serialize,
                    target: spec.raw.clone(),
                    error: Box::new(e),
                })?
        };

        // Open the output stream
        let mut writer = self.open_output(spec).await?;

        // Write bytes
        tokio::io::AsyncWriteExt::write_all(&mut *writer, &bytes)
            .await
            .map_err(|e| SingleIoError {
                stage: Stage::Serialize,
                target: spec.raw.clone(),
                error: Box::new(e),
            })
    }

    async fn write_single<T>(&self, spec: &AsyncOutputSpec, value: &T) -> Result<(), SingleIoError>
    where
        T: Serialize + Sync,
    {
        // If a sync registry is available, delegate resolution and
        // serialization to it so that custom formats participate fully in
        // encoding. Otherwise, fall back to the async-format helpers.
        let bytes = if let Some(sync_registry) = &self.sync_registry {
            match sync_registry.serialize_value(
                spec.explicit_format.as_ref(),
                &spec.format_candidates,
                value,
            ) {
                Ok(bytes) => bytes,
                Err(e) => {
                    let stage = match e {
                        format::FormatError::UnknownFormat(_)
                        | format::FormatError::NoFormatMatched
                        | format::FormatError::NotEnabled(_) => Stage::ResolveOutput,
                        _ => Stage::Serialize,
                    };

                    return Err(SingleIoError {
                        stage,
                        target: spec.raw.clone(),
                        error: Box::new(e),
                    });
                }
            }
        } else {
            // Resolve the format
            let kind = self
                .registry
                .resolve(spec.explicit_format.as_ref(), &spec.format_candidates)
                .map_err(|e| SingleIoError {
                    stage: Stage::ResolveOutput,
                    target: spec.raw.clone(),
                    error: Box::new(e),
                })?;

            // Serialize to bytes
            format::serialize_async(kind, value)
                .await
                .map_err(|e| SingleIoError {
                    stage: Stage::Serialize,
                    target: spec.raw.clone(),
                    error: Box::new(e),
                })?
        };

        // Open the output stream
        let mut writer = self.open_output(spec).await?;

        // Write bytes
        tokio::io::AsyncWriteExt::write_all(&mut *writer, &bytes)
            .await
            .map_err(|e| SingleIoError {
                stage: Stage::Serialize,
                target: spec.raw.clone(),
                error: Box::new(e),
            })
    }

    async fn open_output(
        &self,
        spec: &AsyncOutputSpec,
    ) -> Result<Box<dyn tokio::io::AsyncWrite + Unpin + Send>, SingleIoError> {
        let result = match spec.file_exists_policy {
            FileExistsPolicy::Overwrite => spec.target.open_overwrite().await,
            FileExistsPolicy::Append => spec.target.open_append().await,
            FileExistsPolicy::Error => spec.target.open_overwrite().await,
        };

        result.map_err(|e| SingleIoError {
            stage: Stage::Open,
            target: spec.raw.clone(),
            error: Box::new(e),
        })
    }

    fn resolve_output_kind(&self, spec: &AsyncOutputSpec) -> Result<FormatKind, SingleIoError> {
        self.registry
            .resolve(spec.explicit_format.as_ref(), &spec.format_candidates)
            .map_err(|e| SingleIoError {
                stage: Stage::ResolveOutput,
                target: spec.raw.clone(),
                error: Box::new(e),
            })
    }

    async fn records_stream_for_spec_async<'a, T>(
        &'a self,
        spec: &'a AsyncInputSpec,
    ) -> BoxStream<'a, Result<T, SingleIoError>>
    where
        T: DeserializeOwned + Send + 'static,
    {
        // Open the input stream
        let mut reader = match spec.provider.open().await {
            Ok(r) => r,
            Err(e) => {
                let err = SingleIoError {
                    stage: Stage::Open,
                    target: spec.raw.clone(),
                    error: Box::new(e),
                };
                return stream::iter(std::iter::once(Err(err))).boxed();
            }
        };

        // Read all bytes into an internal buffer
        let mut buffer = Vec::new();
        if let Err(e) = reader.read_to_end(&mut buffer).await {
            let err = SingleIoError {
                stage: Stage::Open,
                target: spec.raw.clone(),
                error: Box::new(e),
            };
            return stream::iter(std::iter::once(Err(err))).boxed();
        }

        // Resolve the format. If a sync registry is available we use it so
        // that custom formats (and their streaming handlers) participate in
        // resolution; otherwise we fall back to the async registry. Resolution
        // failures are treated as parse-stage errors, mirroring the sync
        // `read_records` behavior where resolution happens inside the format
        // registry.
        let kind = if let Some(sync_registry) = &self.sync_registry {
            match sync_registry.resolve(spec.explicit_format.as_ref(), &spec.format_candidates) {
                Ok(k) => k,
                Err(e) => {
                    let err = SingleIoError {
                        stage: Stage::Parse,
                        target: spec.raw.clone(),
                        error: Box::new(e),
                    };
                    return stream::iter(std::iter::once(Err(err))).boxed();
                }
            }
        } else {
            match self
                .registry
                .resolve(spec.explicit_format.as_ref(), &spec.format_candidates)
            {
                Ok(k) => k,
                Err(e) => {
                    let err = SingleIoError {
                        stage: Stage::Parse,
                        target: spec.raw.clone(),
                        error: Box::new(e),
                    };
                    return stream::iter(std::iter::once(Err(err))).boxed();
                }
            }
        };

        let target = spec.raw.clone();

        // Use format-specific streaming helpers where available.
        if let FormatKind::Json = kind {
            #[cfg(feature = "json")]
            {
                let reader = std::io::Cursor::new(buffer);
                let iter = crate::format::deserialize_json_stream::<T, _>(reader);
                return Self::iter_to_stream(iter, target);
            }
            #[cfg(not(feature = "json"))]
            {
                let err = SingleIoError {
                    stage: Stage::Parse,
                    target,
                    error: Box::new(crate::format::FormatError::NotEnabled(kind)),
                };
                return stream::iter(std::iter::once(Err(err))).boxed();
            }
        }

        // If we have a sync registry and the resolved kind is a custom format,
        // bridge to the sync FormatRegistry's streaming implementation. This
        // supports custom streaming handlers and falls back to non-streaming
        // single-item deserialization when no streaming handler is registered.
        if let (Some(sync_registry), FormatKind::Custom(_)) = (&self.sync_registry, kind) {
            use std::io::Cursor;

            let reader: Box<dyn std::io::Read> = Box::new(Cursor::new(buffer));
            let iter_result = sync_registry.stream_deserialize_into::<T>(Some(&kind), &[], reader);

            let target_for_stream = target.clone();

            let iter = match iter_result {
                Ok(iter) => iter,
                Err(e) => {
                    let err = SingleIoError {
                        stage: Stage::Parse,
                        target,
                        error: Box::new(e),
                    };
                    return stream::iter(std::iter::once(Err(err))).boxed();
                }
            };

            // The returned iterator may not be Send; collect into a Vec before
            // turning it into a stream so that the resulting iterator is Send.
            let collected: Vec<Result<T, format::FormatError>> = iter.collect();
            return Self::iter_to_stream(collected.into_iter(), target_for_stream);
        }

        if let FormatKind::Csv = kind {
            #[cfg(feature = "csv")]
            {
                let reader = std::io::Cursor::new(buffer);
                let iter = crate::format::deserialize_csv_stream::<T, _>(reader);
                return Self::iter_to_stream(iter, target);
            }
            #[cfg(not(feature = "csv"))]
            {
                let err = SingleIoError {
                    stage: Stage::Parse,
                    target,
                    error: Box::new(crate::format::FormatError::NotEnabled(kind)),
                };
                return stream::iter(std::iter::once(Err(err))).boxed();
            }
        }

        if let FormatKind::Yaml = kind {
            #[cfg(feature = "yaml")]
            {
                let reader = std::io::Cursor::new(buffer);
                let iter = crate::format::deserialize_yaml_stream::<T, _>(reader);
                let collected: Vec<_> = iter.collect();
                return Self::iter_to_stream(collected.into_iter(), target);
            }
            #[cfg(not(feature = "yaml"))]
            {
                let err = SingleIoError {
                    stage: Stage::Parse,
                    target,
                    error: Box::new(crate::format::FormatError::NotEnabled(kind)),
                };
                return stream::iter(std::iter::once(Err(err))).boxed();
            }
        }

        if let FormatKind::Plaintext = kind {
            #[cfg(feature = "plaintext")]
            {
                let reader = std::io::Cursor::new(buffer);
                let iter = crate::format::deserialize_plaintext_stream::<T, _>(reader);
                return Self::iter_to_stream(iter, target);
            }
            #[cfg(not(feature = "plaintext"))]
            {
                let err = SingleIoError {
                    stage: Stage::Parse,
                    target,
                    error: Box::new(crate::format::FormatError::NotEnabled(kind)),
                };
                return stream::iter(std::iter::once(Err(err))).boxed();
            }
        }

        // Other formats (including unsupported/custom): fall back to
        // non-streaming single-item deserialization.
        let value = format::deserialize_async::<T>(kind, &buffer).await;
        let result = value.map_err(|e| SingleIoError {
            stage: Stage::Parse,
            target,
            error: Box::new(e),
        });

        stream::iter(std::iter::once(result)).boxed()
    }

    fn iter_to_stream<T, I>(iter: I, target: String) -> BoxStream<'static, Result<T, SingleIoError>>
    where
        T: DeserializeOwned + Send + 'static,
        I: Iterator<Item = Result<T, format::FormatError>> + Send + 'static,
    {
        let mapped = iter.map(move |res| {
            res.map_err(|e| SingleIoError {
                stage: Stage::Parse,
                target: target.clone(),
                error: Box::new(e),
            })
        });

        stream::iter(mapped).boxed()
    }

    /// Create a stream that reads inputs with bounded concurrency.
    ///
    /// Uses `buffer_unordered` to process multiple inputs concurrently.
    pub fn read_stream_async<T>(
        &self,
        concurrency: usize,
    ) -> BoxStream<'_, Result<T, SingleIoError>>
    where
        T: DeserializeOwned + Send + 'static,
    {
        let futs = self.inputs.iter().map(|spec| self.read_one::<T>(spec));
        stream::iter(futs).buffer_unordered(concurrency).boxed()
    }
}