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
use crate::{
    channel::{Channel, ForkHandle},
    kind,
    kind::Future,
    ConstructResult, DeconstructResult, Kind,
};

use futures::{SinkExt, StreamExt};
use std::error::Error;
use thiserror::Error;

use super::WrappedError;

#[derive(Error, Debug)]
pub enum ResultError<T: Error + 'static, E: Error + 'static> {
    #[error("{0}")]
    Ok(#[source] T),
    #[error("{0}")]
    Err(#[source] E),
}

#[kind]
impl<T, E> Kind for Result<T, E>
where
    T: Kind,
    E: Kind,
{
    type ConstructItem = Result<ForkHandle, ForkHandle>;
    type ConstructError = WrappedError<ResultError<T::ConstructError, E::ConstructError>>;
    type ConstructFuture = Future<ConstructResult<Self>>;
    type DeconstructItem = ();
    type DeconstructError = WrappedError<ResultError<T::DeconstructError, E::DeconstructError>>;
    type DeconstructFuture = Future<DeconstructResult<Self>>;
    fn deconstruct<C: Channel<Self::DeconstructItem, Self::ConstructItem>>(
        self,
        mut channel: C,
    ) -> Self::DeconstructFuture {
        Box::pin(async move {
            Ok(channel
                .send(match self {
                    Ok(item) => Ok(channel.fork(item).await.map_err(ResultError::Ok)?),
                    Err(item) => Err(channel.fork(item).await.map_err(ResultError::Err)?),
                })
                .await
                .map_err(WrappedError::Send)?)
        })
    }
    fn construct<C: Channel<Self::ConstructItem, Self::DeconstructItem>>(
        mut channel: C,
    ) -> Self::ConstructFuture {
        Box::pin(async move {
            Ok(
                match channel.next().await.ok_or(WrappedError::Insufficient {
                    got: 0,
                    expected: 1,
                })? {
                    Ok(item) => Ok(channel.get_fork(item).await.map_err(ResultError::Ok)?),
                    Err(item) => Err(channel.get_fork(item).await.map_err(ResultError::Err)?),
                },
            )
        })
    }
}