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
//! Asynchronous Single-Reader, Multi-Writer
//!
//! Provides async functions to read data from a single reader, and write it to many writers.

#[macro_use]
extern crate thiserror;

mod copy;
mod flush;
mod seek;
mod validate;

pub use self::{copy::*, validate::*};

use slab::Slab;
use std::ops::{Deref, DerefMut};

/// A multi-writer type which enables copying from a single reader, concurrently to many writers.
pub struct MultiWriter<W> {
    subscribed: Slab<W>,
    drop_list:  Vec<usize>,
}

impl<W> Default for MultiWriter<W> {
    fn default() -> Self { Self { subscribed: Slab::new(), drop_list: Vec::new() } }
}

impl<W> Deref for MultiWriter<W> {
    type Target = Slab<W>;

    fn deref(&self) -> &Self::Target { &self.subscribed }
}

impl<W> DerefMut for MultiWriter<W> {
    fn deref_mut(&mut self) -> &mut Self::Target { &mut self.subscribed }
}