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
//! A [Riemann](http://riemann.io/) client library and command line interface.

pub mod client;
/// Layer one: Protobuf implementation generated by `protoc --rust_out`.
pub mod proto;
pub mod transport;

pub use self::client::Client;
pub use self::utils::{Error, Result};

/// Error and From implementations
mod utils {
    use std::fmt::{Display, Formatter};
    use std::io::Error as IoError;

    use ::protobuf::error::ProtobufError;

    use super::proto::Query;

    impl<'a> From<&'a str> for Query {
        fn from(query_str: &'a str) -> Self {
            Query::from(query_str.to_string())
        }
    }

    impl From<String> for Query {
        fn from(string: String) -> Self {
            let mut query = Query::new();
            query.set_string(string);
            query
        }
    }

    #[derive(Debug)]
    pub enum Error {
        Io(::std::io::Error),
        Protobuf(ProtobufError),
        Riemann(String),
        Cert(webpki::Error),
        CACert(String),
        Key(String),
        TLS(rustls::TLSError),
        InvalidDNSNameError(webpki::InvalidDNSNameError),
    }

    impl Display for Error {
        fn fmt(&self, f: &mut Formatter) -> ::std::fmt::Result {
            write!(f, "{}", self)
        }
    }

    impl From<IoError> for Error {
        fn from(err: IoError) -> Self {
            Error::Io(err)
        }
    }

    impl From<ProtobufError> for Error {
        fn from(err: ProtobufError) -> Self {
            Error::Protobuf(err)
        }
    }

    impl From<webpki::Error> for Error {
        fn from(err: webpki::Error) -> Self {
            Error::Cert(err)
        }
    }

    impl From<rustls::TLSError> for Error {
        fn from(err: rustls::TLSError) -> Self {
            Error::TLS(err)
        }
    }

    impl From<webpki::InvalidDNSNameError> for Error {
        fn from(err: webpki::InvalidDNSNameError) -> Self {
            Error::InvalidDNSNameError(err)
        }
    }

    /// Result alias for Riemann client errors
    pub type Result<T> = ::std::result::Result<T, Error>;
}