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
use crate::kind::QueryKind;
use std::{convert, num::ParseIntError};

#[derive(Debug, PartialEq)]
pub enum Error {
    // is an error for dictionary key not exists
    KeyNotExist(String),
    // is an error for array index not exists or out of bound
    IndexNotExist(usize),
    EmptyPath(QueryKind),
    UnknownType(String),
    IndexError(IndexError),
    KeyError(KeyError),
    // path, expected, found
    TypeError(String, QueryKind, QueryKind),
}

#[derive(Debug, PartialEq)]
pub enum IndexError {
    IntError(ParseIntError),
    ParseError(String),
    // TODO: @zerosign, maybe use StdError ?
    CustomError(String),
}

#[derive(Debug, PartialEq)]
pub enum KeyError {
    ParseError(String),
    EmptyKey,
    // TODO: @zerosign, maybe use StdError ?
    CustomError(String),
}

impl convert::From<KeyError> for Error {
    #[inline]
    fn from(e: KeyError) -> Self {
        Error::KeyError(e)
    }
}

impl convert::From<IndexError> for Error {
    #[inline]
    fn from(e: IndexError) -> Self {
        Error::IndexError(e)
    }
}