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
use crate::{
    std::{error, fmt},
    Slot, ValueBag,
};

use super::{cast, Inner};

impl<'v> ValueBag<'v> {
    /// Get a value from an error.

    pub fn capture_error<T>(value: &'v T) -> Self
    where
        T: error::Error + 'static,
    {
        ValueBag {
            inner: Inner::Error {
                value,
                type_id: Some(cast::type_id::<T>()),
            },
        }
    }

    /// Try get an error from this value.

    pub fn to_error<'a>(&'a self) -> Option<impl Error + 'a> {
        struct RefError<'a>(&'a dyn Error);

        impl<'a> Error for RefError<'a> {
            fn source(&self) -> Option<&(dyn Error + 'static)> {
                self.0.source()
            }

            // NOTE: Once backtraces are stable, add them here too

        }

        impl<'a> fmt::Debug for RefError<'a> {
            fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
                fmt::Debug::fmt(self.0, f)
            }
        }

        impl<'a> fmt::Display for RefError<'a> {
            fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
                fmt::Display::fmt(self.0, f)
            }
        }

        match self.inner {
            Inner::Error { value, .. } => Some(RefError(value)),
            _ => None,
        }
    }
}

impl<'s, 'f> Slot<'s, 'f> {
    /// Fill the slot with an error.

    ///

    /// The given value doesn't need to satisfy any particular lifetime constraints.

    ///

    /// # Panics

    ///

    /// Calling more than a single `fill` method on this slot will panic.

    pub fn fill_error<T>(&mut self, value: T) -> Result<(), crate::Error>
    where
        T: error::Error,
    {
        self.fill(|visitor| visitor.error(&value))
    }
}

pub use self::error::Error;

impl<'v> From<&'v (dyn error::Error)> for ValueBag<'v> {
    fn from(value: &'v (dyn error::Error)) -> ValueBag<'v> {
        ValueBag {
            inner: Inner::Error {
                value,
                type_id: None,
            },
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    use crate::std::{
        io,
        string::ToString,
    };

    #[test]
    fn error_capture() {
        let err = io::Error::from(io::ErrorKind::Other);

        assert_eq!(
            err.to_string(),
            ValueBag::capture_error(&err)
                .to_error()
                .expect("invalid value")
                .to_string()
        );
    }

    #[test]
    fn error_downcast() {
        let err = io::Error::from(io::ErrorKind::Other);

        assert!(ValueBag::capture_error(&err)
            .downcast_ref::<io::Error>()
            .is_some());
    }
}