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
// Copyright (C) 2019 Peter Mezei
//
// This file is part of Project A.
//
// Project A is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 2 of the License, or
// (at your option) any later version.
//
// Project A is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with Project A.  If not, see <http://www.gnu.org/licenses/>.

use std::fmt;

pub type StorageResult<T> = Result<T, Error>;

/// Storage Error type
/// For internal use
pub enum Error {
    /// Any error that has a custom message.
    /// Any kind of error that has no other
    /// more specific variant in Error::*
    InternalError(String),
    /// Object not found in a storage.
    /// Usually using with get_by_id()
    ObjectNotFound,
    /// Path not found
    /// Using at reading data from path.
    PathNotFound,
}

// Well formatted display text for users
// TODO: Use error code and language translation for end-user error messages.
impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Error::InternalError(msg) => write!(f, "Internal error: {}", msg),
            Error::ObjectNotFound => write!(f, "Storage object not found in storage."),
            Error::PathNotFound => write!(f, "Path not found"),
        }
    }
}

impl fmt::Debug for Error {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Error::InternalError(msg) => write!(f, "Internal error: {}", msg),
            Error::ObjectNotFound => write!(f, "Storage object not found in storage."),
            Error::PathNotFound => write!(f, "Path not found"),
        }
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    #[test]
    fn test_display() {
        let err = Error::InternalError("test error".into());
        assert_eq!(format!("{}", err), "Internal error: test error");
    }
    #[test]
    fn test_debug() {
        let err = Error::InternalError("test error".into());
        assert_eq!(format!("{:?}", err), "Internal error: test error");
    }
    #[test]
    fn test_error() {
        let e = Error::InternalError("test".into());
        assert_eq!(format!("{}", e), "Internal error: test");
        assert_eq!(format!("{:?}", e), "Internal error: test");
        let f = Error::ObjectNotFound;
        assert_eq!(format!("{}", f), "Storage object not found in storage.");
        assert_eq!(format!("{:?}", f), "Storage object not found in storage.");
        let g = Error::PathNotFound;
        assert_eq!(format!("{}", g), "Path not found");
        assert_eq!(format!("{:?}", g), "Path not found");
    }
}