-
Notifications
You must be signed in to change notification settings - Fork 32
/
error.rs
256 lines (220 loc) · 7.58 KB
/
error.rs
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
use crate::{FromValue, Runtime, ToValue, Value};
/// Errors that are translated directly into OCaml exceptions
#[derive(Debug)]
pub enum CamlError {
/// Not_found
NotFound,
/// Failure
Failure(&'static str),
/// Invalid_argument
InvalidArgument(&'static str),
/// Out_of_memory
OutOfMemory,
/// Stack_overflow
StackOverflow,
/// Sys_error
SysError(Value),
/// End_of_file
EndOfFile,
/// Zero_divide
ZeroDivide,
/// Array bound error
ArrayBoundError,
/// Sys_blocked_io
SysBlockedIo,
/// A pre-allocated OCaml exception
Exception(Value),
/// An exception type and argument
WithArg(Value, Value),
}
/// Error returned by `ocaml-rs` functions
#[derive(Debug)]
pub enum Error {
/// A value cannot be called using callback functions
NotCallable,
/// Array is not a double array
NotDoubleArray,
/// Error message
Message(&'static str),
/// General error
#[cfg(not(feature = "no-std"))]
Error(Box<dyn std::error::Error>),
/// OCaml exceptions
Caml(CamlError),
}
#[cfg(not(feature = "no-std"))]
impl<T: 'static + std::error::Error> From<T> for Error {
fn from(x: T) -> Error {
Error::Error(Box::new(x))
}
}
impl From<CamlError> for Error {
fn from(x: CamlError) -> Error {
Error::Caml(x)
}
}
impl Error {
/// Re-raise an existing exception value
pub fn reraise(exc: Value) -> Result<(), Error> {
Err(CamlError::Exception(exc).into())
}
/// Raise an exception that has been registered using `Callback.register_exception` with no
/// arguments
pub fn raise<S: AsRef<str>>(exc: S) -> Result<(), Error> {
let value = match unsafe { Value::named(exc.as_ref()) } {
Some(v) => v,
None => {
return Err(Error::Message(
"Value has not been registered with the OCaml runtime",
))
}
};
Err(CamlError::Exception(value).into())
}
/// Raise an exception that has been registered using `Callback.register_exception` with an
/// argument
pub fn raise_with_arg<S: AsRef<str>>(exc: S, arg: Value) -> Result<(), Error> {
let value = match unsafe { Value::named(exc.as_ref()) } {
Some(v) => v,
None => {
return Err(Error::Message(
"Value has not been registered with the OCaml runtime",
))
}
};
Err(CamlError::WithArg(value, arg).into())
}
/// Raise `Not_found`
pub fn not_found() -> Result<(), Error> {
Err(CamlError::NotFound.into())
}
/// Raise `Out_of_memory`
pub fn out_of_memory() -> Result<(), Error> {
Err(CamlError::OutOfMemory.into())
}
/// Raise `Failure`
pub fn failwith(s: &'static str) -> Result<(), Error> {
Err(CamlError::Failure(s).into())
}
/// Raise `Invalid_argument`
pub fn invalid_argument(s: &'static str) -> Result<(), Error> {
Err(CamlError::Failure(s).into())
}
#[doc(hidden)]
pub fn raise_failure(s: &str) -> ! {
unsafe {
let value = crate::sys::caml_alloc_string(s.len());
let ptr = crate::sys::string_val(value);
core::ptr::copy_nonoverlapping(s.as_ptr(), ptr, s.len());
crate::sys::caml_failwith_value(value);
}
#[allow(clippy::empty_loop)]
loop {}
}
#[doc(hidden)]
pub fn raise_value(v: Value, x: Value) -> ! {
unsafe {
crate::sys::caml_raise_with_arg(v.root().raw().0, x.root().raw().0);
}
#[allow(clippy::empty_loop)]
loop {}
}
/// Get named error registered using `Callback.register_exception`
pub fn named<S: AsRef<str>>(s: S) -> Option<Value> {
unsafe { Value::named(s.as_ref()) }
}
}
unsafe impl<T: ToValue, E: ToValue> ToValue for Result<T, E> {
fn to_value(&self, rt: &Runtime) -> Value {
unsafe {
match self {
Ok(x) => Value::result_ok(rt, x),
Err(e) => Value::result_error(rt, e),
}
}
}
}
unsafe impl<T: ToValue> ToValue for Result<T, Error> {
fn to_value(&self, rt: &Runtime) -> Value {
match self {
Ok(x) => return x.to_value(rt),
Err(Error::Caml(CamlError::Exception(e))) => unsafe {
crate::sys::caml_raise(e.raw().0);
},
Err(Error::Caml(CamlError::NotFound)) => unsafe {
crate::sys::caml_raise_not_found();
},
Err(Error::Caml(CamlError::ArrayBoundError)) => unsafe {
crate::sys::caml_array_bound_error();
},
Err(Error::Caml(CamlError::OutOfMemory)) => unsafe {
crate::sys::caml_raise_out_of_memory();
},
Err(Error::Caml(CamlError::EndOfFile)) => unsafe {
crate::sys::caml_raise_end_of_file()
},
Err(Error::Caml(CamlError::StackOverflow)) => unsafe {
crate::sys::caml_raise_stack_overflow()
},
Err(Error::Caml(CamlError::ZeroDivide)) => unsafe {
crate::sys::caml_raise_zero_divide()
},
Err(Error::Caml(CamlError::SysBlockedIo)) => unsafe {
crate::sys::caml_raise_sys_blocked_io()
},
Err(Error::Caml(CamlError::InvalidArgument(s))) => {
unsafe {
let s = crate::util::CString::new(*s).expect("Invalid C string");
crate::sys::caml_invalid_argument(s.as_ptr() as *const ocaml_sys::Char)
};
}
Err(Error::Caml(CamlError::WithArg(a, b))) => unsafe {
crate::sys::caml_raise_with_arg(a.raw().0, b.raw().0)
},
Err(Error::Caml(CamlError::SysError(s))) => {
unsafe { crate::sys::caml_raise_sys_error(s.raw().0) };
}
Err(Error::Message(s)) => {
unsafe {
let s = crate::util::CString::new(*s).expect("Invalid C string");
crate::sys::caml_failwith(s.as_ptr() as *const ocaml_sys::Char)
};
}
Err(Error::Caml(CamlError::Failure(s))) => {
unsafe {
let s = crate::util::CString::new(*s).expect("Invalid C string");
crate::sys::caml_failwith(s.as_ptr() as *const ocaml_sys::Char)
};
}
#[cfg(not(feature = "no-std"))]
Err(Error::Error(e)) => {
let s = format!("{:?}\0", e);
unsafe { crate::sys::caml_failwith(s.as_ptr() as *const ocaml_sys::Char) };
}
Err(Error::NotDoubleArray) => {
let s = "invalid double array\0";
unsafe { crate::sys::caml_failwith(s.as_ptr() as *const ocaml_sys::Char) };
}
Err(Error::NotCallable) => {
let s = "value is not callable\0";
unsafe { crate::sys::caml_failwith(s.as_ptr() as *const ocaml_sys::Char) };
}
};
unreachable!()
}
}
unsafe impl<T: FromValue> FromValue for Result<T, crate::Error> {
fn from_value(value: Value) -> Result<T, crate::Error> {
unsafe {
if value.is_exception_result() {
return Err(CamlError::Exception(value).into());
}
Ok(T::from_value(value))
}
}
}
unsafe impl<A: FromValue, B: FromValue> FromValue for Result<A, B> {
fn from_value(value: Value) -> Result<A, B> {
unsafe { value.result() }
}
}