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
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
//! Call Julia functions.
//!
//! This module provides the [`Call`], [`CallAsync`] and [`ProvideKeywords`] traits. Their methods
//! can be used to call Julia functions, including inner and outer constructors; schedule a
//! function call as a new Julia task; and provide keyword arguments respectively.
//!
//! Let's add a few numbers with Julia's `+` function:
//!
//! ```
//! use jlrs::prelude::*;
//!
//! # fn main() {
//! # let mut julia = Builder::new().start_local().unwrap();
//!
//! julia.local_scope::<_, 9>(|mut frame| {
//! // Create a few Julia values
//! let i = Value::new(&mut frame, 2u64);
//! let j = Value::new(&mut frame, 1u32);
//! let k = Value::new(&mut frame, 3u16);
//!
//! // The `+` function can be found in the base module
//! let add_func = Module::base(&frame)
//! .global(&mut frame, "+")
//! .expect("Add function not found");
//!
//! let i_plus_j = unsafe { add_func.call(&mut frame, [i, j]) };
//! assert!(i_plus_j.is_ok());
//! assert_eq!(i_plus_j.unwrap().unbox::<u64>().expect("wrong type"), 3);
//!
//! // The `+` function accepts any number of variables
//! let i_plus_j_plus_k = unsafe { add_func.call(&mut frame, [i, j, k]) };
//! assert!(i_plus_j_plus_k.is_ok());
//! assert_eq!(
//! i_plus_j_plus_k.unwrap().unbox::<u64>().expect("wrong type"),
//! 6
//! );
//!
//! // You can provide an arbitary number of arguments with `Call::call`
//! let i_plus_j_plus_k_plus_k = unsafe { add_func.call(&mut frame, [i, j, k, k]) };
//! assert!(i_plus_j_plus_k_plus_k.is_ok());
//! assert_eq!(
//! i_plus_j_plus_k_plus_k
//! .unwrap()
//! .unbox::<u64>()
//! .expect("wrong type"),
//! 9
//! );
//!
//! // Exception are caught
//! let sum_of_nothing = unsafe { add_func.call(&mut frame, []) };
//! assert!(sum_of_nothing.is_err());
//!
//! // You can call the function without using a try-catch block with `Call::call_unchecked`
//! // Be aware that Julia exception handling works by jumping to the nearest catch block. You
//! // must either guarantee that the function never throws, or use `catch::catch_exceptions`
//! // to manually create a try-catch block.
//! let i_plus_j_plus_k_plus_k_unchecked =
//! unsafe { add_func.call_unchecked(&mut frame, [i, j, k, k]) };
//! assert_eq!(
//! i_plus_j_plus_k_plus_k_unchecked
//! .unbox::<u64>()
//! .expect("wrong type"),
//! 9
//! );
//! });
//! # }
//! ```
//!
//! In the example above we added several numbers of different types by calling the same function.
//! Julia functions are generic, they can have multiple methods with different signatures. When a
//! function is called, the method is selected based on the number and types of all arguments.
//! That this selection depends on the type of all function arguments is what makes Julia's
//! functions multiple dispatch.
//!
//! A minor technical detail that's useful to be aware of is that every function has a unique
//! type, and every type in Julia has a method table. If an instance of a type is called as a
//! function this table is used to find the method that is called. Because every type has a
//! method table, every Julia value is potentially callable. A fun way to see that in action
//! is by making `Int`s callable:
//!
//! ```
//! use jlrs::prelude::*;
//!
//! # fn main() {
//! # let mut julia = Builder::new().start_local().unwrap();
//!
//! julia.local_scope::<_, 4>(|mut frame| {
//! let i = Value::new(&mut frame, 1isize);
//! let j = Value::new(&mut frame, 2isize);
//!
//! // We can 't call `Int`s yet...
//! let i_plus_j = unsafe { i.call(&mut frame, [j]) };
//! assert!(i_plus_j.is_err());
//!
//! unsafe {
//! // ... but if we add a method to `Int`'s method table...
//! Value::eval_string(&frame, "(i::Int)(j::Int) = i + j").expect("unexpected exception");
//! }
//!
//! // ... we can!
//! let i_plus_j = unsafe { i.call(&mut frame, [j]) };
//! assert!(i_plus_j.is_ok());
//!
//! let i_plus_j = i_plus_j.unwrap().unbox::<isize>().expect("wrong type");
//!
//! assert_eq!(i_plus_j, 3);
//! });
//! # }
//! ```
//!
//! In the first example we acquired a handle to the `+` function via the `Base` module. The
//! `Base`, `Core` and `Main` modules can be accessed by calling `Module::base`, `Module::core`,
//! and `Module::main`. The root module of a package can be accessed by calling
//! `Module::package_root_module`. Any installed package can be accessed, but you might need to
//! evaluate an explicit `using` statement first:
//!
//! ```
//! use jlrs::prelude::*;
//!
//! # fn main() {
//! # let mut julia = Builder::new().start_local().unwrap();
//!
//! julia.local_scope::<_, 1>(|mut frame| {
//! let mut lin_alg = Module::package_root_module(&frame, "LinearAlgebra");
//! if lin_alg.is_none() {
//! unsafe {
//! Value::eval_string(&frame, "using LinearAlgebra")
//! .expect("LinearAlgebra package has not been installed");
//! }
//!
//! lin_alg = Module::package_root_module(&frame, "LinearAlgebra");
//! }
//! assert!(lin_alg.is_some());
//!
//! let mul_mut_func = lin_alg.unwrap().global(&mut frame, "mul!");
//! assert!(mul_mut_func.is_ok());
//! });
//! # }
//! ```
//!
//! Keyword arguments can be provided by creating a `NamedTuple` with the [`named_tuple`] macro
//! and calling [`ProvideKeywords::provide_keywords`]:
//!
//! ```
//! use jlrs::prelude::*;
//!
//! # fn main() {
//! # let mut julia = Builder::new().start_local().unwrap();
//!
//! julia.local_scope::<_, 5>(|mut frame| {
//! unsafe {
//! Value::eval_string(&frame, "my_kw_func(x; kw1=0, kw2=1) = x + kw1 + kw2")
//! .expect("unexpected exception");
//! }
//!
//! let x = Value::new(&mut frame, 0isize);
//! let kw1 = Value::new(&mut frame, 3isize);
//! let kws = named_tuple!(&mut frame, "kw1" => kw1).unwrap();
//!
//! // Access the function in the `Main` module and provide it with our keyword arguments:
//! let func = Module::main(&frame)
//! .global(&mut frame, "my_kw_func")
//! .expect("cannot find `my_kw_func` in `Main` module");
//!
//! // Positional arguments are provided via `call[n]`:
//! let res = unsafe { func.call_kw(&mut frame, [x], kws).expect("unexpected exception") };
//! let unboxed = res.unbox::<isize>().expect("wrong type");
//!
//! assert_eq!(unboxed, 4);
//! });
//! # }
//! ```
//!
//! Constructors can be called by calling the type object:
//!
//! ```
//! use jlrs::prelude::*;
//!
//! # fn main() {
//! # let mut julia = Builder::new().start_local().unwrap();
//!
//! julia.local_scope::<_, 3>(|mut frame| {
//! unsafe {
//! Value::eval_string(&frame, "struct Foo a::Int; b::Int; Foo(a) = new(a, a); end")
//! .expect("unexpected exception");
//! }
//!
//! let foo_ty = Module::main(&frame)
//! .global(&mut frame, "Foo")
//! .expect("Cannot find `Foo` in `Main` module");
//!
//! let v = Value::new(&mut frame, 1isize);
//! let foo = unsafe { foo_ty.call(&mut frame, [v]) };
//!
//! assert!(foo.is_ok());
//! });
//! # }
//! ```
//!
//! Constructors of parametric types can be called directly if all parameters can be inferred from
//! the arguments:
//!
//! ```
//! use jlrs::prelude::*;
//!
//! # fn main() {
//! # let mut julia = Builder::new().start_local().unwrap();
//!
//! julia.local_scope::<_, 3>(|mut frame| {
//! unsafe {
//! Value::eval_string(&frame, "struct Foo{T} a::T; end").expect("unexpected exception");
//! }
//!
//! let foo_ty = Module::main(&frame)
//! .global(&mut frame, "Foo")
//! .expect("Cannot find `Foo` in `Main` module");
//!
//! let v = Value::new(&mut frame, 1isize);
//! let foo = unsafe { foo_ty.call(&mut frame, [v]) };
//!
//! assert!(foo.is_ok());
//! });
//! # }
//! ```
//!
//! If some types can't be inferred from the arguments you must apply them manually before trying
//! to call the function:
//!
//! ```
//! use jlrs::{data::managed::union_all::UnionAll, prelude::*};
//!
//! use crate::jlrs::data::types::construct_type::ConstructType;
//!
//! # fn main() {
//! # let mut julia = Builder::new().start_local().unwrap();
//!
//! julia.local_scope::<_, 5>(|mut frame| {
//! unsafe {
//! Value::eval_string(&frame, "struct Foo{V,T} a::T; end").expect("unexpected exception");
//! }
//!
//! // Foo{V,T}
//! let foo_ua = Module::main(&frame)
//! .global(&mut frame, "Foo")
//! .expect("Cannot find `Foo` in `Main` module")
//! .cast::<UnionAll>()
//! .expect("`Foo` is not a `UnionAll`");
//!
//! // V = true
//! let true_v = Value::true_v(&frame);
//! // T = Int
//! let int_ty = isize::construct_type(&mut frame);
//!
//! // foo_ty = Foo{true, Int}
//! let foo_ty = unsafe {
//! foo_ua
//! .apply_types(&mut frame, [true_v, int_ty])
//! .expect("Cannot apply types to `Foo`")
//! };
//!
//! let v = Value::new(&mut frame, 1isize);
//! let foo = unsafe { foo_ty.call(&mut frame, [v]) };
//!
//! assert!(foo.is_ok());
//! });
//! # }
//! ```
//!
//! [`named_tuple`]: crate::named_tuple
use NonNull;
pub use CallAsync;
use ;
use jlrs_call_unchecked;
use crate::;
/// A function and its keyword arguments.
/// Call Julia functions.
///
/// There are two types that implement this trait: [`Value`] and [`WithKeywords`]. Any `Value`
/// can be called, `WithKeywords` combines a function with its keyword arguments. If you call a
/// value that isn't a function, an error is returned.
///
/// All of these methods are unsafe, there is no way to distinguish between obviously safe
/// functions like `+`, and obviously unsafe ones like `unsafe_load` except through their names.
/// If multithreading is used, either via the multithreaded runtime or internally in Julia,
/// potential thread-safety issues must also be taken into account.
///
/// More information can be found in the [`safety`] module.
///
/// [`safety`]: crate::safety