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
use core::fmt;
#[cfg(feature = "std")]
use std::io;

use crate::raw;

/// A `Result` type alias for this crate's `Error` type.
#[cfg(feature = "std")]
pub type Result<T> = std::result::Result<T, Error>;

/// A `Result` type alias for this crate's `Error` type.
#[cfg(not(feature = "std"))]
pub type Result<T> = core::result::Result<T, Error>;

/// An error that encapsulates all possible errors in this crate.
#[derive(Debug)]
pub enum Error {
    /// An error that occurred while reading or writing a finite state
    /// transducer.
    Fst(raw::Error),
    /// An IO error that occurred while writing a finite state transducer.
    #[cfg(feature = "std")]
    Io(io::Error),
}

#[cfg(feature = "std")]
impl From<io::Error> for Error {
    #[inline]
    fn from(err: io::Error) -> Error {
        Error::Io(err)
    }
}

impl From<raw::Error> for Error {
    #[inline]
    fn from(err: raw::Error) -> Error {
        Error::Fst(err)
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match *self {
            Error::Fst(_) => write!(f, "FST error"),
            #[cfg(feature = "std")]
            Error::Io(_) => write!(f, "I/O error"),
        }
    }
}

#[cfg(feature = "std")]
impl std::error::Error for Error {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        match *self {
            Error::Fst(ref err) => Some(err),
            #[cfg(feature = "std")]
            Error::Io(ref err) => Some(err),
        }
    }
}

#[cfg(not(feature = "std"))]
impl core::error::Error for Error {
    fn source(&self) -> Option<&(dyn core::error::Error + 'static)> {
        match *self {
            Error::Fst(ref err) => Some(err),
            #[cfg(feature = "std")]
            Error::Io(ref err) => Some(err),
        }
    }
}