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
use std::fmt;
use std::fmt::{Display, Formatter};
use ty::*;
use result::Result;

#[derive(Debug, PartialEq)]
pub enum Error {
    TypeMismatch(&'static str, Ty),
    MissingField(&'static str),
    IndexOutOfBounds(usize, usize),
    WrongArrayLength(usize, usize),
    IllegalString(&'static str, String)
}

impl Display for Error {
    fn fmt(&self, fmt: &mut Formatter) -> fmt::Result {
        match self {
            &Error::TypeMismatch(ref expected, ref ty) => {
                fmt.write_fmt(format_args!("expected {}, got {}", expected, ty))
            }
            &Error::MissingField(ref name) => {
                fmt.write_fmt(format_args!("missing object field '{}'", name))
            }
            &Error::IndexOutOfBounds(ref len, ref index) => {
                fmt.write_fmt(format_args!("array index {} out of bounds (length {})", index, len))
            }
            &Error::WrongArrayLength(ref expected, ref actual) => {
                fmt.write_fmt(format_args!("expected array of length {}, got array of length {}", expected, actual))
            }
            &Error::IllegalString(ref expected, ref actual) => {
                fmt.write_fmt(format_args!("expected {}, got {:?}", expected, actual))
            }
        }
    }
}

pub fn type_error<T>(expected: &'static str, actual: Ty) -> Result<T> {
    Err(Error::TypeMismatch(expected, actual))
}

pub fn field_error<T>(name: &'static str) -> Result<T> {
    Err(Error::MissingField(name))
}

pub fn array_error<T>(expected: usize, actual: usize) -> Result<T> {
    Err(Error::WrongArrayLength(expected, actual))
}

pub fn index_error<T>(len: usize, index: usize) -> Result<T> {
    Err(Error::IndexOutOfBounds(len, index))
}

pub fn string_error<T>(expected: &'static str, actual: String) -> Result<T> {
    Err(Error::IllegalString(expected, actual))
}