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
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
pub use middle::{FfiAbi, ffi_abi_FFI_DEFAULT_ABI};
pub mod types;
pub use self::types::{Type, CType};
#[macro_use]
pub mod call;
pub use self::call::*;
macro_rules! define_closure_mod {
(
$module:ident $cif:ident
$callback:ident $callback_mut:ident $callback_once:ident
$closure:ident $closure_mut:ident $closure_once:ident;
$( $T:ident )*
)
=>
{
#[cfg_attr(feature = "clippy", allow(too_many_arguments))]
pub mod $module {
use std::any::Any;
use std::marker::PhantomData;
use std::{mem, process, ptr};
use std::io::{self, Write};
use super::*;
use middle;
pub struct $cif<$( $T, )* R> {
untyped: middle::Cif,
_marker: PhantomData<fn($( $T, )*) -> R>,
}
impl<$( $T, )* R> $cif<$( $T, )* R> {
#[allow(non_snake_case)]
pub fn new($( $T: Type<$T>, )* result: Type<R>) -> Self {
let cif = middle::Cif::new(
vec![$( $T.into_middle() ),*].into_iter(),
result.into_middle());
$cif { untyped: cif, _marker: PhantomData }
}
pub fn set_abi(&mut self, abi: FfiAbi) {
self.untyped.set_abi(abi);
}
}
impl<$( $T: CType, )* R: CType> $cif<$( $T, )* R> {
pub fn reify() -> Self {
Self::new($( $T::reify(), )* R::reify())
}
}
pub type $callback<U, $( $T, )* R>
= extern "C" fn(cif: &::low::ffi_cif,
result: &mut R,
args: &($( &$T, )*),
userdata: &U);
pub struct $closure<'a, $( $T, )* R> {
untyped: middle::Closure<'a>,
_marker: PhantomData<fn($( $T, )*) -> R>,
}
impl<'a, $($T: CType,)* R: CType> $closure<'a, $($T,)* R> {
pub fn new<Callback>(callback: &'a Callback) -> Self
where Callback: Fn($( $T, )*) -> R + 'a
{
Self::new_with_cif($cif::reify(), callback)
}
}
impl<'a, $( $T, )* R> $closure<'a, $( $T, )* R> {
pub fn code_ptr(&self) -> &extern "C" fn($( $T, )*) -> R {
unsafe {
mem::transmute(self.untyped.code_ptr())
}
}
pub fn from_parts<U>(cif: $cif<$( $T, )* R>,
callback: $callback<U, $( $T, )* R>,
userdata: &'a U) -> Self
{
let callback: middle::Callback<U, R>
= unsafe { mem::transmute(callback) };
let closure
= middle::Closure::new(cif.untyped,
callback,
userdata);
$closure {
untyped: closure,
_marker: PhantomData,
}
}
}
impl<'a, $( $T: Copy, )* R> $closure<'a, $( $T, )* R> {
pub fn new_with_cif<Callback>(cif: $cif<$( $T, )* R>,
callback: &'a Callback) -> Self
where Callback: Fn($( $T, )*) -> R + 'a
{
Self::from_parts(cif,
Self::static_callback,
callback)
}
#[allow(non_snake_case)]
extern "C" fn static_callback<Callback>
(_cif: &::low::ffi_cif,
result: &mut R,
&($( &$T, )*):
&($( &$T, )*),
userdata: &Callback)
where Callback: Fn($( $T, )*) -> R + 'a
{
abort_on_panic!("Cannot panic inside FFI callback", {
unsafe {
ptr::write(result, userdata($( $T, )*));
}
});
}
}
pub type $callback_mut<U, $( $T, )* R>
= extern "C" fn(cif: &::low::ffi_cif,
result: &mut R,
args: &($( &$T, )*),
userdata: &mut U);
pub struct $closure_mut<'a, $( $T, )* R> {
untyped: middle::Closure<'a>,
_marker: PhantomData<fn($( $T, )*) -> R>,
}
impl<'a, $($T: CType,)* R: CType>
$closure_mut<'a, $($T,)* R>
{
pub fn new<Callback>(callback: &'a mut Callback) -> Self
where Callback: FnMut($( $T, )*) -> R + 'a
{
Self::new_with_cif($cif::reify(), callback)
}
}
impl<'a, $( $T, )* R> $closure_mut<'a, $( $T, )* R> {
pub fn code_ptr(&self) -> &extern "C" fn($( $T, )*) -> R {
unsafe {
mem::transmute(self.untyped.code_ptr())
}
}
pub fn from_parts<U>(cif: $cif<$( $T, )* R>,
callback: $callback_mut<U, $( $T, )* R>,
userdata: &'a mut U) -> Self
{
let callback: middle::CallbackMut<U, R>
= unsafe { mem::transmute(callback) };
let closure
= middle::Closure::new_mut(cif.untyped,
callback,
userdata);
$closure_mut {
untyped: closure,
_marker: PhantomData,
}
}
}
impl<'a, $( $T: Copy, )* R> $closure_mut<'a, $( $T, )* R> {
pub fn new_with_cif<Callback>(cif: $cif<$( $T, )* R>,
callback: &'a mut Callback)
-> Self
where Callback: FnMut($( $T, )*) -> R + 'a
{
Self::from_parts(cif,
Self::static_callback,
callback)
}
#[allow(non_snake_case)]
extern "C" fn static_callback<Callback>
(_cif: &::low::ffi_cif,
result: &mut R,
&($( &$T, )*):
&($( &$T, )*),
userdata: &mut Callback)
where Callback: FnMut($( $T, )*) -> R + 'a
{
abort_on_panic!("Cannot panic inside FFI callback", {
unsafe {
ptr::write(result, userdata($( $T, )*));
}
});
}
}
pub type $callback_once<U, $( $T, )* R>
= $callback_mut<Option<U>, $( $T, )* R>;
pub struct $closure_once<$( $T, )* R> {
untyped: middle::ClosureOnce,
_marker: PhantomData<fn($( $T, )*) -> R>,
}
impl<$($T: CType,)* R: CType> $closure_once<$($T,)* R> {
pub fn new<Callback>(callback: Callback) -> Self
where Callback: FnOnce($( $T, )*) -> R + Any
{
Self::new_with_cif($cif::reify(), callback)
}
}
impl<$( $T: Copy, )* R> $closure_once<$( $T, )* R> {
pub fn new_with_cif<Callback>(cif: $cif<$( $T, )* R>,
callback: Callback) -> Self
where Callback: FnOnce($( $T, )*) -> R + Any
{
Self::from_parts(cif,
Self::static_callback,
callback)
}
#[allow(non_snake_case)]
extern "C" fn static_callback<Callback>
(_cif: &::low::ffi_cif,
result: &mut R,
&($( &$T, )*):
&($( &$T, )*),
userdata: &mut Option<Callback>)
where Callback: FnOnce($( $T, )*) -> R
{
if let Some(userdata) = userdata.take() {
abort_on_panic!("Cannot panic inside FFI callback", {
unsafe {
ptr::write(result, userdata($( $T, )*));
}
});
} else {
let _ =
io::stderr().write(b"FnOnce closure already used");
process::exit(2);
}
}
}
impl<$( $T, )* R> $closure_once<$( $T, )* R> {
pub fn code_ptr(&self) -> &extern "C" fn($( $T, )*) -> R {
unsafe {
mem::transmute(self.untyped.code_ptr())
}
}
pub fn from_parts<U: Any>(
cif: $cif<$( $T, )* R>,
callback: $callback_once<U, $( $T, )* R>,
userdata: U)
-> Self
{
let callback: middle::CallbackOnce<U, R>
= unsafe { mem::transmute(callback) };
let closure
= middle::ClosureOnce::new(cif.untyped,
callback,
userdata);
$closure_once {
untyped: closure,
_marker: PhantomData,
}
}
}
}
pub use self::$module::*;
}
}
define_closure_mod!(arity0 Cif0
Callback0 CallbackMut0 CallbackOnce0
Closure0 ClosureMut0 ClosureOnce0;
);
define_closure_mod!(arity1 Cif1
Callback1 CallbackMut1 CallbackOnce1
Closure1 ClosureMut1 ClosureOnce1;
A);
define_closure_mod!(arity2 Cif2
Callback2 CallbackMut2 CallbackOnce2
Closure2 ClosureMut2 ClosureOnce2;
A B);
define_closure_mod!(arity3 Cif3
Callback3 CallbackMut3 CallbackOnce3
Closure3 ClosureMut3 ClosureOnce3;
A B C);
define_closure_mod!(arity4 Cif4
Callback4 CallbackMut4 CallbackOnce4
Closure4 ClosureMut4 ClosureOnce4;
A B C D);
define_closure_mod!(arity5 Cif5
Callback5 CallbackMut5 CallbackOnce5
Closure5 ClosureMut5 ClosureOnce5;
A B C D E);
define_closure_mod!(arity6 Cif6
Callback6 CallbackMut6 CallbackOnce6
Closure6 ClosureMut6 ClosureOnce6;
A B C D E F);
define_closure_mod!(arity7 Cif7
Callback7 CallbackMut7 CallbackOnce7
Closure7 ClosureMut7 ClosureOnce7;
A B C D E F G);
define_closure_mod!(arity8 Cif8
Callback8 CallbackMut8 CallbackOnce8
Closure8 ClosureMut8 ClosureOnce8;
A B C D E F G H);
define_closure_mod!(arity9 Cif9
Callback9 CallbackMut9 CallbackOnce9
Closure9 ClosureMut9 ClosureOnce9;
A B C D E F G H I);
define_closure_mod!(arity10 Cif10
Callback10 CallbackMut10 CallbackOnce10
Closure10 ClosureMut10 ClosureOnce10;
A B C D E F G H I J);
define_closure_mod!(arity11 Cif11
Callback11 CallbackMut11 CallbackOnce11
Closure11 ClosureMut11 ClosureOnce11;
A B C D E F G H I J K);
define_closure_mod!(arity12 Cif12
Callback12 CallbackMut12 CallbackOnce12
Closure12 ClosureMut12 ClosureOnce12;
A B C D E F G H I J K L);
#[cfg(test)]
mod test {
use super::*;
#[test]
fn new_with_cif() {
let x: u64 = 1;
let f = |y: u64, z: u64| x + y + z;
let type_ = u64::reify();
let cif = Cif2::new(type_.clone(), type_.clone(), type_.clone());
let closure = Closure2::new_with_cif(cif, &f);
assert_eq!(12, closure.code_ptr()(5, 6));
}
#[test]
fn new_with_cif_mut() {
let mut x: u64 = 0;
let mut f = |y: u64| { x += y; x };
let type_ = u64::reify();
let cif = Cif1::new(type_.clone(), type_.clone());
let closure = ClosureMut1::new_with_cif(cif, &mut f);
let counter = closure.code_ptr();
assert_eq!(5, counter(5));
assert_eq!(6, counter(1));
assert_eq!(8, counter(2));
}
#[test]
fn new() {
let x: u64 = 1;
let f = |y: u64, z: u64| x + y + z;
let closure = Closure2::new(&f);
assert_eq!(12, closure.code_ptr()(5, 6));
}
#[test]
fn new_mut() {
let mut x: u64 = 0;
let mut f = |y: u32| { x += y as u64; x };
let closure = ClosureMut1::new(&mut f);
let counter = closure.code_ptr();
assert_eq!(5, counter(5));
assert_eq!(6, counter(1));
assert_eq!(8, counter(2));
}
}