-
Notifications
You must be signed in to change notification settings - Fork 303
/
handler.rs
280 lines (247 loc) · 9.24 KB
/
handler.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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
use std::any::Any;
use std::mem::ManuallyDrop;
use std::panic;
use std::panic::{RefUnwindSafe, UnwindSafe};
use allo_isolate::IntoDart;
use anyhow::Result;
use lazy_static::lazy_static;
use parking_lot::Mutex;
use threadpool::ThreadPool;
use crate::rust2dart::{Rust2Dart, TaskCallback};
use crate::support::{into_leak_vec_ptr, WireSyncReturnStruct};
use crate::SyncReturn;
#[derive(Copy, Clone)]
pub enum FfiCallMode {
Normal,
Sync,
Stream,
}
#[derive(Clone)]
pub struct WrapInfo {
pub port: Option<i64>,
pub debug_name: &'static str,
pub mode: FfiCallMode,
}
/// Provide your own handler to customize how to execute your function calls, etc
pub trait Handler {
// Why separate [PrepareFn] and [TaskFn]: because some things cannot be [Send] (e.g. raw
// pointers), so those can be done in [PrepareFn], while the real work is done in [TaskFn] with [Send].
fn wrap<PrepareFn, TaskFn, TaskRet>(&self, wrap_info: WrapInfo, prepare: PrepareFn)
where
PrepareFn: FnOnce() -> TaskFn + UnwindSafe,
TaskFn: FnOnce(TaskCallback) -> Result<TaskRet> + Send + UnwindSafe + 'static,
TaskRet: IntoDart;
fn wrap_sync<SyncTaskFn>(
&self,
wrap_info: WrapInfo,
sync_task: SyncTaskFn,
) -> WireSyncReturnStruct
where
SyncTaskFn: FnOnce() -> Result<SyncReturn<Vec<u8>>> + UnwindSafe;
}
/// The simple handler uses a simple thread pool to execute tasks.
pub struct SimpleHandler<E: Executor, EH: ErrorHandler> {
executor: E,
error_handler: EH,
}
impl<E: Executor, H: ErrorHandler> SimpleHandler<E, H> {
pub fn new(executor: E, error_handler: H) -> Self {
SimpleHandler {
executor,
error_handler,
}
}
}
pub type DefaultHandler =
SimpleHandler<ThreadPoolExecutor<ReportDartErrorHandler>, ReportDartErrorHandler>;
impl Default for DefaultHandler {
fn default() -> Self {
Self::new(
ThreadPoolExecutor::new(ReportDartErrorHandler),
ReportDartErrorHandler,
)
}
}
impl<E: Executor, EH: ErrorHandler> Handler for SimpleHandler<E, EH> {
fn wrap<PrepareFn, TaskFn, TaskRet>(&self, wrap_info: WrapInfo, prepare: PrepareFn)
where
PrepareFn: FnOnce() -> TaskFn + UnwindSafe,
TaskFn: FnOnce(TaskCallback) -> Result<TaskRet> + Send + UnwindSafe + 'static,
TaskRet: IntoDart,
{
// NOTE This extra [catch_unwind] **SHOULD** be put outside **ALL** code!
// Why do this: As nomicon says, unwind across languages is undefined behavior (UB).
// Therefore, we should wrap a [catch_unwind] outside of *each and every* line of code
// that can cause panic. Otherwise we may touch UB.
// Why do not report error or something like that if this outer [catch_unwind] really
// catches something: Because if we report error, that line of code itself can cause panic
// as well. Then that new panic will go across language boundry and cause UB.
// ref https://doc.rust-lang.org/nomicon/unwinding.html
let _ = panic::catch_unwind(move || {
let wrap_info2 = wrap_info.clone();
if let Err(error) = panic::catch_unwind(move || {
let task = prepare();
self.executor.execute(wrap_info2, task);
}) {
self.error_handler
.handle_error(wrap_info.port.unwrap(), Error::Panic(error));
}
});
}
fn wrap_sync<SyncTaskFn>(
&self,
wrap_info: WrapInfo,
sync_task: SyncTaskFn,
) -> WireSyncReturnStruct
where
SyncTaskFn: FnOnce() -> Result<SyncReturn<Vec<u8>>> + UnwindSafe,
{
// NOTE This extra [catch_unwind] **SHOULD** be put outside **ALL** code!
// For reason, see comments in [wrap]
panic::catch_unwind(move || {
let catch_unwind_result = panic::catch_unwind(move || {
match self.executor.execute_sync(wrap_info, sync_task) {
Ok(data) => (data.0, true),
Err(err) => (
self.error_handler
.handle_error_sync(Error::ResultError(err)),
false,
),
}
});
let (bytes, success) = catch_unwind_result.unwrap_or_else(|error| {
(
self.error_handler.handle_error_sync(Error::Panic(error)),
false,
)
});
let (ptr, len) = into_leak_vec_ptr(bytes);
WireSyncReturnStruct { ptr, len, success }
})
.unwrap_or_else(|_| WireSyncReturnStruct {
// return the simplest thing possible. Normally the inner [catch_unwind] should catch
// panic. If no, here is our *LAST* chance before encountering undefined behavior.
// We just return this data that does not have much sense, but at least much better
// than let panic happen across FFI boundry - which is undefined behavior.
ptr: ManuallyDrop::new(Vec::<u8>::new()).as_mut_ptr(),
len: 0,
success: false,
})
}
}
pub trait Executor: RefUnwindSafe {
fn execute<TaskFn, TaskRet>(&self, wrap_info: WrapInfo, task: TaskFn)
where
TaskFn: FnOnce(TaskCallback) -> Result<TaskRet> + Send + UnwindSafe + 'static,
TaskRet: IntoDart;
fn execute_sync<SyncTaskFn>(
&self,
wrap_info: WrapInfo,
sync_task: SyncTaskFn,
) -> Result<SyncReturn<Vec<u8>>>
where
SyncTaskFn: FnOnce() -> Result<SyncReturn<Vec<u8>>> + UnwindSafe;
}
pub struct ThreadPoolExecutor<EH: ErrorHandler> {
error_handler: EH,
}
impl<EH: ErrorHandler> ThreadPoolExecutor<EH> {
pub fn new(error_handler: EH) -> Self {
ThreadPoolExecutor { error_handler }
}
}
impl<EH: ErrorHandler> Executor for ThreadPoolExecutor<EH> {
fn execute<TaskFn, TaskRet>(&self, wrap_info: WrapInfo, task: TaskFn)
where
TaskFn: FnOnce(TaskCallback) -> Result<TaskRet> + Send + UnwindSafe + 'static,
TaskRet: IntoDart,
{
const NUM_WORKERS: usize = 4;
lazy_static! {
static ref THREAD_POOL: Mutex<ThreadPool> = Mutex::new(ThreadPool::with_name(
"frb_executor".to_string(),
NUM_WORKERS
));
}
let eh = self.error_handler;
let eh2 = self.error_handler;
THREAD_POOL.lock().execute(move || {
let wrap_info2 = wrap_info.clone();
let thread_result = panic::catch_unwind(move || {
let rust2dart = Rust2Dart::new(wrap_info2.port.unwrap());
let ret = task(TaskCallback::new(rust2dart)).map(|ret| ret.into_dart());
match ret {
Ok(result) => {
match wrap_info2.mode {
FfiCallMode::Normal => {
rust2dart.success(result);
}
FfiCallMode::Stream => {
// nothing - ignore the return value of a Stream-typed function
}
FfiCallMode::Sync => {
panic!("FfiCallMode::Sync should not call execute, please call execute_sync instead")
}
}
}
Err(error) => {
eh2.handle_error(wrap_info2.port.unwrap(), Error::ResultError(error));
}
};
});
if let Err(error) = thread_result {
eh.handle_error(wrap_info.port.unwrap(), Error::Panic(error));
}
});
}
fn execute_sync<SyncTaskFn>(
&self,
_wrap_info: WrapInfo,
sync_task: SyncTaskFn,
) -> Result<SyncReturn<Vec<u8>>>
where
SyncTaskFn: FnOnce() -> Result<SyncReturn<Vec<u8>>> + UnwindSafe,
{
sync_task()
}
}
#[derive(Debug)]
pub enum Error {
ResultError(anyhow::Error),
Panic(Box<dyn Any + Send>),
}
impl Error {
pub fn code(&self) -> &'static str {
match self {
Error::ResultError(_) => "RESULT_ERROR",
Error::Panic(_) => "PANIC_ERROR",
}
}
pub fn message(&self) -> String {
match self {
Error::ResultError(e) => format!("{:?}", e),
Error::Panic(panic_err) => match panic_err.downcast_ref::<&'static str>() {
Some(s) => *s,
None => match panic_err.downcast_ref::<String>() {
Some(s) => &s[..],
None => "Box<dyn Any>",
},
}
.to_string(),
}
}
}
pub trait ErrorHandler: UnwindSafe + RefUnwindSafe + Copy + Send + 'static {
fn handle_error(&self, port: i64, error: Error);
fn handle_error_sync(&self, error: Error) -> Vec<u8>;
}
#[derive(Clone, Copy)]
pub struct ReportDartErrorHandler;
impl ErrorHandler for ReportDartErrorHandler {
fn handle_error(&self, port: i64, error: Error) {
Rust2Dart::new(port).error(error.code().to_string(), error.message());
}
fn handle_error_sync(&self, error: Error) -> Vec<u8> {
format!("{}: {}", error.code(), error.message()).into_bytes()
}
}