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
// Copyright (c) Mysten Labs, Inc.
// SPDX-License-Identifier: Apache-2.0

use typed_store_error::TypedStoreError;

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

#[derive(Debug)]
pub struct Error {
    inner: Box<Inner>,
}

type BoxError = Box<dyn std::error::Error + Send + Sync + 'static>;

#[derive(Debug)]
struct Inner {
    kind: Kind,
    source: Option<BoxError>,
}

#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum Kind {
    Serialization,
    Missing,
    Custom,
}

impl Error {
    fn new<E: Into<BoxError>>(kind: Kind, source: Option<E>) -> Self {
        Self {
            inner: Box::new(Inner {
                kind,
                source: source.map(Into::into),
            }),
        }
    }

    pub fn serialization<E: Into<BoxError>>(e: E) -> Self {
        Self::new(Kind::Serialization, Some(e))
    }

    pub fn missing<E: Into<BoxError>>(e: E) -> Self {
        Self::new(Kind::Missing, Some(e))
    }

    pub fn custom<E: Into<BoxError>>(e: E) -> Self {
        Self::new(Kind::Custom, Some(e))
    }

    pub fn kind(&self) -> Kind {
        self.inner.kind
    }
}

impl std::error::Error for Error {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        self.inner.source.as_ref().map(|e| &**e as _)
    }
}

impl std::fmt::Display for Error {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        // TODO: change output based on kind?
        write!(f, "{:?}", self)
    }
}

impl From<TypedStoreError> for Error {
    fn from(e: TypedStoreError) -> Self {
        Self::custom(e)
    }
}