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
use crate::Value;
use leo_ast::{Error as FormattedError, Span};
use snarkos_errors::gadgets::SynthesisError;
use std::path::Path;
#[derive(Debug, Error, Eq, PartialEq)]
pub enum CoreCircuitError {
#[error("{}", _0)]
Error(#[from] FormattedError),
}
impl CoreCircuitError {
pub fn set_path(&mut self, path: &Path) {
match self {
CoreCircuitError::Error(error) => error.set_path(path),
}
}
fn new_from_span(message: String, span: Span) -> Self {
CoreCircuitError::Error(FormattedError::new_from_span(message, span))
}
pub fn arguments_length(expected: usize, actual: usize, span: Span) -> Self {
let message = format!("Core circuit expected {} arguments, found {}", expected, actual);
CoreCircuitError::new_from_span(message, span)
}
pub fn array_length(expected: usize, actual: usize, span: Span) -> Self {
let message = format!(
"Core circuit expected an array of length {}, found an array of length {}",
expected, actual
);
CoreCircuitError::new_from_span(message, span)
}
pub fn cannot_enforce(operation: String, error: SynthesisError, span: Span) -> Self {
let message = format!(
"The gadget operation `{}` failed due to synthesis error `{:?}`",
operation, error,
);
Self::new_from_span(message, span)
}
pub fn invalid_array(actual: Value, span: Span) -> Self {
let message = format!("Core circuit expected an array argument, found `{}`", actual);
Self::new_from_span(message, span)
}
pub fn invalid_array_bytes(actual: Value, span: Span) -> Self {
let message = format!(
"Core circuit expected an array of UInt8 gadgets, found an array of `{}`",
actual
);
Self::new_from_span(message, span)
}
}