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
//! Error handling.
use std::char::ParseCharError;
use std::fmt;
use std::process::exit;

/// Trait that adds the `or_exit_with`  method to a struct. To be used to create a way to retrieve a
/// value, or exit with a specified error code.
pub trait WithOrExit<T> {
    fn or_exit_with(self, exit_code: i32) -> T;
}

impl<T, E: fmt::Debug> WithOrExit<T> for Result<T, E> {
    /// Unwraps the value from a Result, or terminates the process with the specified exit code.
    fn or_exit_with(self, exit_code: i32) -> T {
        match self {
            Ok(v) => v,
            Err(e) => {
                eprintln!("{:?}", e);
                exit(exit_code);
            }
        }
    }
}

impl<T> WithOrExit<T> for Option<T> {
    fn or_exit_with(self, exit_code: i32) -> T {
        match self {
            Some(v) => v,
            None => {
                eprintln!("Empty option");
                exit(exit_code);
            }
        }
    }
}

/// Generic parsing error.
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct ParseError(pub String);

impl ParseError {
    /// Produces a `ParseError` from a `&str`.
    #[deprecated(since = "0.6.1", note = "Please use the parse_error! macro instead.")]
    pub fn of(s: &str) -> ParseError {
        ParseError(s.to_string())
    }
}

impl fmt::Display for ParseError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "{}", self.0)
    }
}

impl From<std::io::Error> for ParseError {
    fn from(err: std::io::Error) -> Self {
        ParseError(format!("{:?}", err))
    }
}

impl From<std::num::ParseIntError> for ParseError {
    fn from(err: std::num::ParseIntError) -> Self {
        ParseError(format!("{:?}", err))
    }
}

impl From<std::char::ParseCharError> for ParseError {
    fn from(err: ParseCharError) -> Self {
        ParseError(format!("{:?}", err))
    }
}

// TODO:
// impl From<std::option::NoneError> for ParseError {
//     fn from(err: std::option::NoneError) -> Self {
//         ParseError(format!("{:?}", err))
//     }
// }

/// Macro to produce a ParseError, with optional interpolation (using format!).
#[macro_export]
macro_rules! parse_error {
    ($err:expr) => {{
        $crate::error::ParseError($err.to_string())
    }};
    ($err:expr, $($args:tt)*) => {{
        $crate::error::ParseError(format!($err, $($args)*))
    }};
}

/// Macro to produce a ParseError wrapped in an Err, with optional interpolation (using format!).
#[macro_export]
macro_rules! err_parse_error {
    ($err:expr) => {{
        Err($crate::parse_error!($err))
    }};
    ($err:expr, $($args:tt)*) => {{
        Err($crate::parse_error!($err, $($args)*))
    }};
}

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

    #[test]
    fn test_macro_parse_error_simple() {
        let err = parse_error!["This is a simple error."];
        assert_eq!(err, ParseError("This is a simple error.".to_string()));
    }

    #[test]
    fn test_macro_parse_error_with_formatting() {
        let err = parse_error!["This is an error with {}.", "formatting"];
        assert_eq!(
            err,
            ParseError("This is an error with formatting.".to_string())
        );
    }

    #[test]
    fn test_macro_err_parse_error_simple() {
        let err: Result<(), ParseError> = err_parse_error!["This is a simple error."];
        assert_eq!(err, Err(ParseError("This is a simple error.".to_string())));
    }

    #[test]
    fn test_macro_err_parse_error_with_formatting() {
        let err: Result<(), ParseError> =
            err_parse_error!["This is an error with {}.", "formatting"];

        assert_eq!(
            err,
            Err(ParseError("This is an error with formatting.".to_string()))
        );
    }
}