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
//! LFA error and result types.
use crate::IndexT;
use std::{error::Error as StdError, fmt};

pub type Result<T> = ::std::result::Result<T, Error>;

#[derive(Clone, Copy, Debug, PartialEq, Eq)]
#[cfg_attr(
    feature = "serde",
    derive(Serialize, Deserialize),
    serde(crate = "serde_crate")
)]
pub enum ErrorKind {
    Basis,
    Evaluation,
    Optimisation,
}

#[derive(Clone, Debug, PartialEq, Eq)]
#[cfg_attr(
    feature = "serde",
    derive(Serialize, Deserialize),
    serde(crate = "serde_crate")
)]
pub struct Error {
    kind: ErrorKind,
    message: String,
}

impl Error {
    pub fn index_error(index: IndexT, dim: IndexT) -> Self {
        Error {
            kind: ErrorKind::Basis,
            message: format!(
                "Index ({}) exceeded dimensionality ({}) of the projection.",
                index, dim
            ),
        }
    }
}

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

impl StdError for Error {
    fn description(&self) -> &str { &*self.message }
}

macro_rules! check_index {
    ($index:ident < $dim:expr => $code:block) => {
        if $index < $dim {
            $code
        } else {
            Err($crate::error::Error::index_error($index, $dim))
        }
    };
}