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
//! Error values.
//
// Copyright (c) 2016 Ivan Nejgebauer <inejge@gmail.com>
//
// Licensed under the MIT license <LICENSE-MIT or
// http://opensource.org/licenses/MIT>. This file may not be copied,
// modified, or distributed except according to the terms of this
// license.
//!
//! For simplicity, there's no provision for recording the cause of any
//! errors except I/O errors when opening the system entropy source.
use std::{io, fmt};
use std::error::Error as StdError;

/// Possible errors.
#[derive(Debug)]
pub enum Error {
    /// The system entropy source couldn't be opened.
    Io(io::Error),
    /// Some component of the hash string contains an invalid character.
    EncodingError,
    /// An encoded value is too short.
    InsufficientLength,
    /// The number of rounds is out of range.
    InvalidRounds,
    /// The hash string is not in the expected format.
    InvalidHashString,
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
	match *self {
	    Error::Io(ref err) => write!(f, "{}", err),
	    _ => write!(f, "{}", self.description()),
	}
    }
}

impl StdError for Error {
    fn description(&self) -> &str {
	match *self {
	    Error::Io(_) => "I/O error",
	    Error::EncodingError => "Invalid encoding",
	    Error::InsufficientLength => "Encoded value is too short",
	    Error::InvalidRounds => "Invalid rounds value",
	    Error::InvalidHashString => "Invalid hash string",
	}
    }

    fn cause(&self) -> Option<&StdError> {
	match *self {
	    Error::Io(ref err) => Some(err),
	    _ => None,
	}
    }
}

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