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
use std::result;
use std::fmt;

/// Stack trace record.
pub enum TraceEntry {
    /// Trace source file change that caused the error.
    SourceFile { target: String },
    /// Trace operator call that caused the error.
    Operator { target: String, extension: String },
    /// Trace position in last known source that cause the error.
    Position { from: Location },
}

/// Location record in source file.
pub struct Location {
    pub line: usize,
}

impl Location {
    pub fn new(line: usize) -> Location {
        Location { line: line }
    }
}

#[derive(Debug)]
/// Runtime error message.
pub enum ErrorMessage {
    /// Callable invoked with argument count that does not match defined count.
    InvalidArgumentCount { expected: usize, found: usize },
}

/// Runtime error with stack trace.
pub struct Error {
    pub message: ErrorMessage,
    pub stack_trace: Vec<TraceEntry>,
}

impl Error {
    pub fn new(message: ErrorMessage) -> Error {
        Error {
            message: message,
            stack_trace: Vec::new(),
        }
    }
}

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

/// Runtime operation result.
pub type Result<T> = result::Result<T, Error>;