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
use std::error::Error;
use std::fmt;
use regex;
use semver;


quick_error! {
    #[derive(PartialEq, Debug)]
    pub enum CalcverErrorReason {
        // Unknown {
        //     display("I dunno what the error is!!!")
        //     description("Unknown!")
        // }
        Library(c: String) {
            display("Library error: {:?}", c)
            description("Handlebars error")
        }
        NoCommitsOnRelease {
            display("Release cannot be true if there are no commits")
            description("Release cannot be true if there are no commits")
        }
    }
}


/// Generic error for now
#[derive(Debug, PartialEq)]
pub struct CalcverError {
    pub reason: CalcverErrorReason,
}

impl CalcverError {
    pub fn of(e: CalcverErrorReason) -> CalcverError {
        CalcverError {
            reason: e,
        }
    }
    pub fn with<E>(cause: E) -> CalcverError
        where
        E: Error + 'static,
    {
        CalcverError::of(CalcverErrorReason::Library(cause.description().to_string()))
    }
}

impl Error for CalcverError {
    fn description(&self) -> &str {
        self.reason.description()
    }
}

impl fmt::Display for CalcverError {
    fn fmt(&self, e: &mut fmt::Formatter) -> Result<(), fmt::Error> {
        write!(e, "Error: {}",self.reason.description())
    }
}

impl From<regex::Error> for CalcverError {
     fn from(e: regex::Error) -> CalcverError {
        CalcverError::with(e)
    }
}

impl From<semver::SemVerError> for CalcverError {
     fn from(e: semver::SemVerError) -> CalcverError {
        CalcverError::with(e)
    }
}