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
//! Create a simple error enum that is a composite of other errors.
//! ```rust
//! # use composite_error::composite_error;
//! composite_error! {
//!     MyError {
//!         IoError: std::io::Error,
//!         Other: String,
//!     }
//! }
//!
//! let e = MyError::Other("This is an error".into());
//! println!("{}", e);
//! ```

#[macro_export]
macro_rules! composite_error {
    ($name:ident { $($variant:ident: $error:ty,)* }) => {
        enum $name {
            $($variant($error)),*
        }
        
        impl std::fmt::Display for $name {
            fn fmt(&self, f: &mut std::fmt::Formatter) -> std::result::Result<(), std::fmt::Error> {
                let (variant, value) = match self {
                    $(Self::$variant(e) => (stringify!($variant), e.to_string())),*
                };

                std::write!(f, "{}: {}", variant, value)
            }
        }

        $(
        impl std::convert::From<$error> for $name {
            fn from(e: $error) -> Self {
                Self::$variant(e)
            }
        }
        )*
    };
    (#[derive($($derives:path),*)] $name:ident { $($variant:ident: $error:ty,)* }) => {
        #[derive($($derives),*)]
        enum $name {
            $($variant($error)),*
        }
        
        impl std::fmt::Display for $name {
            fn fmt(&self, f: &mut std::fmt::Formatter) -> std::result::Result<(), std::fmt::Error> {
                let (variant, value) = match self {
                    $(Self::$variant(e) => (stringify!($variant), e.to_string())),*
                };

                std::write!(f, "{}: {}", variant, value)
            }
        }

        $(
        impl std::convert::From<$error> for $name {
            fn from(e: $error) -> Self {
                Self::$variant(e)
            }
        }
        )*
    };
}

#[cfg(test)]
mod tests {
    #[test]
    fn it_works() {
        assert_eq!(2 + 2, 4);
    }
}