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
//! Run code in virtual machines (sandboxes)
//!
//! # Summary
//!
//! This crate provides an abstract API for the Rust programming language to
//! allow executing scripting language code snippets in a sandbox.
//!
//! The scripting language (or VM which executes code written in that scripting
//! language) is not specified by this crate. Instead, other crates may use
//! this crate to provide a scripting-language-independent interface to execute
//! certain functions or provide callbacks from the VM to Rust.
//!
//! Central trait is a [`Machine`], which is capable to compile certain code
//! into a function (see trait [`Compile`] for compiling code into functions,
//! and see associated type [`Machine::Function`] and trait [`Function`] for
//! executing these functions).
//!
//! Passing values from Rust to the VM or from the VM to Rust is done through a
//! "datum" type that is specific to each particular VM used (see associated
//! type [`Machine::Datum`]). Some VMs may support creating closures in Rust
//! which can then be converted into a "datum" and passed to the VM (see trait
//! [`Callback`]).
//!
//! VMs may also support setting global variables or variables in modules (see
//! traits [`Globals`] and [`HasModules`]).
//!
//! As different VMs may have "datum" types with different features (e.g. some
//! scripting languages might support integers while others only know strings,
//! a [`Machine::Datum`] can implement different traits in the [`types`] module
//! which determine which functionality is supported
//! (e.g. [`types::MaybeString`] if a datum can be a string).

#![warn(missing_docs)]
// We do not elide certain lifetimes for clarity:
#![allow(clippy::needless_lifetimes)]

pub mod errors;
pub mod types;

/// Unnameable traits to be included via wildcard syntax
pub mod traits {
    pub use super::types::{
        HasArray as _, HasStringMap as _, MaybeArray as _, MaybeBinary as _, MaybeBoolean as _,
        MaybeFloat as _, MaybeFunction as _, MaybeInteger as _, MaybeOpaque as _, MaybeString as _,
        MaybeStringMap as _, Nullable as _,
    };
    pub use super::{
        Callback as _, Compile as _, Function as _, Globals as _, HasModules as _, Machine as _,
        Module as _,
    };
}

/// Prelude that (currently) re-exports everything
pub mod prelude {
    pub use super::{
        errors::*, types::*, Callback, Compile, Function, Globals, HasModules, Machine, Module,
    };
}

pub use errors::*;

use std::error::Error;

/// Virtual machine to execute code (with inner mutability)
///
/// # Lifetimes
///
/// The lifetime argument `'a` is a lower bound for closures passed to the
/// machine (see [`Callback`]), which will usually be inferred automatically.
///
/// The generic associated types have a lifetime argument `'b`, which is
/// usually equal to the lifetime of the shared reference to the machine that
/// is being worked with. The lifetime argument `'c` of [`Machine::Datum`] is
/// usually `'static` but may be shorter for temporary values that have been
/// created from a `&str`, for example.
///
/// # Example
///
/// ```
/// use sandkiste::prelude::*;
///
/// fn say_hello<'a, 'b, M, C>(
///     machine: &'b M,
///     code: C,
/// ) -> Result<String, MachineError>
/// where
///     M: Machine<'a> + Compile<'a, C>,
///     for<'c> <M as Machine<'a>>::Datum<'b, 'c>: MaybeString<'c>,
/// {
///     Ok(machine
///         .compile(None, code)?
///         .call_1ret(["Hi there! Who are you?".into()])?
///         .try_into()?
///     )
/// }
/// ```
pub trait Machine<'a> {
    /// Data type representing values passed to or returned from machine
    type Datum<'b, 'c>
    where
        Self: 'b;
    /// Function (for example returned by [`Compile::compile`])
    /// which can be executed by the machine
    type Function<'b>: for<'c> Function<Datum<'c> = Self::Datum<'b, 'c>>
    where
        Self: 'b;
}

/// Ability of [`Machine`]s to compile provided code (of a certain type, e.g. `&str` or `String`)
///
/// # Owned vs borrowed code
///
/// Implementations should provide an implementation both for the owned and the
/// borrowed variant of the type representing the code (e.g. [`String`] and
/// [`&str`](str), or `Vec<u8>` and `&[u8]`). The `chunk_name` is always passed
/// as owned `String`, as it will usually be stored in the returned
/// [`Function`].
///
/// # Example
///
/// See [`Machine`].
pub trait Compile<'a, C>: Machine<'a> {
    /// Compiles code, returns the compiled function or a compilation error
    ///
    /// `chunk_name` is an optional chunk name for diagnostic output.
    fn compile(
        &self,
        chunk_name: Option<String>,
        code: C,
    ) -> Result<Self::Function<'_>, MachineError>;
}

fn expect_cardinality<F>(
    function: &F,
    retvals: Vec<F::Datum<'static>>,
    count: usize,
    strict: bool,
) -> Result<Vec<F::Datum<'static>>, MachineError>
where
    F: Function + ?Sized,
{
    let len = retvals.len();
    if (strict && len == count) || (!strict && len >= count) {
        Ok(retvals)
    } else {
        Err(MachineError::new()
            .set_kind(MachineErrorKind::Data)
            .set_message(format!(
                "expected {} {} but got {} return value{}",
                if strict { "exactly" } else { "at least" },
                count,
                retvals.len(),
                if retvals.len() != 1 { "s" } else { "" }
            ))
            .set_chunk_name_opt(function.chunk_name().map(ToOwned::to_owned)))
    }
}

/// Basic interface of function that runs in a [`Machine`]
///
/// # Example
///
/// ```
/// use sandkiste::prelude::*;
///
/// fn perform_numeric_operation<F>(func: F, a: i32, b: i32) -> i32
/// where
///     F: Function,
///     for<'c> <F as Function>::Datum<'c>: MaybeInteger,
/// {
///     func
///         .call_1ret([a.into(), b.into()])
///         .expect("runtime error")
///         .try_as_i32().expect("type error")
/// }
/// ```
pub trait Function {
    /// Type used for arguments and return values
    type Datum<'c>;
    /// Chunk name which was used to create function (if known)
    fn chunk_name(&self) -> Option<&str>;
    /// Call the function
    fn call<'c, A>(&self, args: A) -> Result<Vec<Self::Datum<'static>>, MachineError>
    where
        A: IntoIterator<Item = Self::Datum<'c>>,
        <A as IntoIterator>::IntoIter: ExactSizeIterator;
    /// Same as [`Function::call`] but expects a fixed number of return values
    fn call_expect_retvals<'c, A>(
        &self,
        count: usize,
        args: A,
    ) -> Result<Vec<Self::Datum<'static>>, MachineError>
    where
        A: IntoIterator<Item = Self::Datum<'c>>,
        <A as IntoIterator>::IntoIter: ExactSizeIterator,
    {
        expect_cardinality(self, self.call(args)?, count, true)
    }
    /// Same as [`Function::call`] but expects a minimum number of return values
    fn call_expect_min_retvals<'c, A>(
        &self,
        count: usize,
        args: A,
    ) -> Result<Vec<Self::Datum<'static>>, MachineError>
    where
        A: IntoIterator<Item = Self::Datum<'c>>,
        <A as IntoIterator>::IntoIter: ExactSizeIterator,
    {
        expect_cardinality(self, self.call(args)?, count, false)
    }
    /// Same as [`Function::call`] but expects exactly one return value
    fn call_1ret<'c, A>(&self, args: A) -> Result<Self::Datum<'static>, MachineError>
    where
        A: IntoIterator<Item = Self::Datum<'c>>,
        <A as IntoIterator>::IntoIter: ExactSizeIterator,
    {
        Ok(self
            .call_expect_retvals(1, args)?
            .into_iter()
            .next()
            .unwrap())
    }
    /// Same as [`Function::call`] but expects exactly two return values
    fn call_2ret<'c, A>(
        &self,
        args: A,
    ) -> Result<(Self::Datum<'static>, Self::Datum<'static>), MachineError>
    where
        A: IntoIterator<Item = Self::Datum<'c>>,
        <A as IntoIterator>::IntoIter: ExactSizeIterator,
    {
        let mut retvals = self.call_expect_retvals(2, args)?.into_iter();
        Ok((retvals.next().unwrap(), retvals.next().unwrap()))
    }
    /// Same as [`Function::call`] but expects exactly three return values
    #[allow(clippy::type_complexity)]
    fn call_3ret<'c, A>(
        &self,
        args: A,
    ) -> Result<
        (
            Self::Datum<'static>,
            Self::Datum<'static>,
            Self::Datum<'static>,
        ),
        MachineError,
    >
    where
        A: IntoIterator<Item = Self::Datum<'c>>,
        <A as IntoIterator>::IntoIter: ExactSizeIterator,
    {
        let mut retvals = self.call_expect_retvals(3, args)?.into_iter();
        Ok((
            retvals.next().unwrap(),
            retvals.next().unwrap(),
            retvals.next().unwrap(),
        ))
    }
}

/// Ability of [`Machine`]s to call provided callbacks
///
/// # Example
///
/// ```
/// use std::rc::Rc;
/// use std::cell::RefCell;
/// use sandkiste::prelude::*;
///
/// fn collect_output<'a, 'b, M, C>(
///     machine: &'b M,
///     setup: C,
///     run: C,
/// ) -> Result<String, MachineError>
/// where
///     M: Machine<'a> + Compile<'a, C> + Callback<'a>,
///     for<'c> <M as Machine<'a>>::Datum<'b, 'c>: MaybeString<'c>,
/// {
///     let output_cell = RefCell::new(String::new());
///     let output_rc = Rc::new(output_cell);
///     let output_weak = Rc::downgrade(&output_rc);
///
///     let my_print = machine
///         .callback_1arg(move |s| {
///             output_weak
///                 .upgrade()
///                 .ok_or("closure expired")?
///                 .borrow_mut()
///                 .push_str(s.try_as_str()?);
///             Ok([])
///         })?;
///
///     machine.compile(None, setup)?.call([my_print])?;
///     machine.compile(None, run)?.call([])?;
///
///     Ok(Rc::try_unwrap(output_rc).unwrap().into_inner())
/// }
/// ```
pub trait Callback<'a>: Machine<'a> {
    /// Create a [`Machine::Datum`] representing a callback (which invokes the `func` closure)
    fn callback<'b, 'c, F, R>(&'b self, func: F) -> Result<Self::Datum<'b, 'static>, MachineError>
    where
        R: IntoIterator<Item = Self::Datum<'b, 'c>>,
        <R as IntoIterator>::IntoIter: ExactSizeIterator,
        F: 'a + Fn(Vec<Self::Datum<'b, 'static>>) -> Result<R, Box<dyn Error>>;
    /// Same as [`Callback::callback`] but expects a fixed number of arguments
    fn callback_expect_args<'b, 'c, F, R>(
        &'b self,
        argc: usize,
        func: F,
    ) -> Result<Self::Datum<'b, 'static>, MachineError>
    where
        R: IntoIterator<Item = Self::Datum<'b, 'c>>,
        <R as IntoIterator>::IntoIter: ExactSizeIterator,
        F: 'a + Fn(Vec<Self::Datum<'b, 'static>>) -> Result<R, Box<dyn Error>>,
    {
        self.callback(move |args| {
            if args.len() != argc {
                Err(format!(
                    "expected exactly {} but got {} argument{}",
                    argc,
                    args.len(),
                    if args.len() != 1 { "s" } else { "" }
                ))?;
            }
            func(args)
        })
    }
    /// Same as [`Callback::callback`] but expects a minimum number of arguments
    fn callback_expect_min_args<'b, 'c, F, R>(
        &'b self,
        argc: usize,
        func: F,
    ) -> Result<Self::Datum<'b, 'static>, MachineError>
    where
        R: IntoIterator<Item = Self::Datum<'b, 'c>>,
        <R as IntoIterator>::IntoIter: ExactSizeIterator,
        F: 'a + Fn(Vec<Self::Datum<'b, 'static>>) -> Result<R, Box<dyn Error>>,
    {
        self.callback(move |args| {
            if args.len() < argc {
                Err(format!(
                    "expected at least {} but got {} argument{}",
                    argc,
                    args.len(),
                    if args.len() != 1 { "s" } else { "" }
                ))?;
            }
            func(args)
        })
    }
    /// Same as [`Callback::callback`] but expects exactly one argument
    fn callback_1arg<'b, 'c, F, R>(
        &'b self,
        func: F,
    ) -> Result<Self::Datum<'b, 'static>, MachineError>
    where
        R: IntoIterator<Item = Self::Datum<'b, 'c>>,
        <R as IntoIterator>::IntoIter: ExactSizeIterator,
        F: 'a + Fn(Self::Datum<'b, 'static>) -> Result<R, Box<dyn Error>>,
    {
        self.callback_expect_args(1, move |args| {
            let mut args = args.into_iter();
            func(args.next().unwrap())
        })
    }
    /// Same as [`Callback::callback`] but expects exactly two arguments
    fn callback_2arg<'b, 'c, F, R>(
        &'b self,
        func: F,
    ) -> Result<Self::Datum<'b, 'static>, MachineError>
    where
        R: IntoIterator<Item = Self::Datum<'b, 'c>>,
        <R as IntoIterator>::IntoIter: ExactSizeIterator,
        F: 'a + Fn(Self::Datum<'b, 'static>, Self::Datum<'b, 'static>) -> Result<R, Box<dyn Error>>,
    {
        self.callback_expect_args(2, move |args| {
            let mut args = args.into_iter();
            func(args.next().unwrap(), args.next().unwrap())
        })
    }
    /// Same as [`Callback::callback`] but expects exactly three arguments
    fn callback_3arg<'b, 'c, F, R>(
        &'b self,
        func: F,
    ) -> Result<Self::Datum<'b, 'static>, MachineError>
    where
        R: IntoIterator<Item = Self::Datum<'b, 'c>>,
        <R as IntoIterator>::IntoIter: ExactSizeIterator,
        F: 'a
            + Fn(
                Self::Datum<'b, 'static>,
                Self::Datum<'b, 'static>,
                Self::Datum<'b, 'static>,
            ) -> Result<R, Box<dyn Error>>,
    {
        self.callback_expect_args(3, move |args| {
            let mut args = args.into_iter();
            func(
                args.next().unwrap(),
                args.next().unwrap(),
                args.next().unwrap(),
            )
        })
    }
    /// Same as [`Callback::callback`] but expects exactly four arguments
    fn callback_4arg<'b, 'c, F, R>(
        &'b self,
        func: F,
    ) -> Result<Self::Datum<'b, 'static>, MachineError>
    where
        R: IntoIterator<Item = Self::Datum<'b, 'c>>,
        <R as IntoIterator>::IntoIter: ExactSizeIterator,
        F: 'a
            + Fn(
                Self::Datum<'b, 'static>,
                Self::Datum<'b, 'static>,
                Self::Datum<'b, 'static>,
                Self::Datum<'b, 'static>,
            ) -> Result<R, Box<dyn Error>>,
    {
        self.callback_expect_args(4, move |args| {
            let mut args = args.into_iter();
            func(
                args.next().unwrap(),
                args.next().unwrap(),
                args.next().unwrap(),
                args.next().unwrap(),
            )
        })
    }
    /// Same as [`Callback::callback`] but expects exactly five arguments
    fn callback_5arg<'b, 'c, F, R>(
        &'b self,
        func: F,
    ) -> Result<Self::Datum<'b, 'static>, MachineError>
    where
        R: IntoIterator<Item = Self::Datum<'b, 'c>>,
        <R as IntoIterator>::IntoIter: ExactSizeIterator,
        F: 'a
            + Fn(
                Self::Datum<'b, 'static>,
                Self::Datum<'b, 'static>,
                Self::Datum<'b, 'static>,
                Self::Datum<'b, 'static>,
                Self::Datum<'b, 'static>,
            ) -> Result<R, Box<dyn Error>>,
    {
        self.callback_expect_args(5, move |args| {
            let mut args = args.into_iter();
            func(
                args.next().unwrap(),
                args.next().unwrap(),
                args.next().unwrap(),
                args.next().unwrap(),
                args.next().unwrap(),
            )
        })
    }
}

/// [`Machine`]s that support global variables
///
/// # Example
///
/// ```
/// use sandkiste::prelude::*;
///
/// fn call_func_with_globals<'a, 'b, M, F>(machine: &'b M, func: F, a: i32, b: i32) -> i32
/// where
///     M: Machine<'a> + Globals<'a>,
///     for<'c> <M as Machine<'a>>::Datum<'b, 'c>: MaybeInteger,
///     F: Function,
/// {
///     machine.set("a", a.into());
///     machine.set("b", b.into());
///     func.call([]).expect("runtime error");
///     machine.get("c").expect("runtime error").try_as_i32().expect("type error")
/// }
/// ```
pub trait Globals<'a>: Machine<'a> {
    /// Get global variable
    fn get<'b>(&'b self, name: &str) -> Result<Self::Datum<'b, 'static>, MachineError>;
    /// Set global variable
    fn set<'b, 'c>(&'b self, name: &str, datum: Self::Datum<'b, 'c>) -> Result<(), MachineError>;
}

/// Ability to load language-independent modules into a [`Machine`]
///
/// # Example
///
/// ```
/// use sandkiste::prelude::*;
///
/// fn load_my_module<'a, 'b, M>(machine: &'b M) -> Result<(), MachineError>
/// where
///     M: Machine<'a> + HasModules<'a> + Callback<'a>,
///     for<'c> M::Datum<'b, 'c>: MaybeFloat,
/// {
///     let mymod = machine.module("mymod")?;
///     mymod.set("pi_approx", 3.14.into())?;
///     mymod.set("double", machine.callback_1arg(|x| {
///         Ok([(x.try_as_f64()? * 2.0).into()])
///     })?)?;
///     Ok(())
/// }
/// ```
pub trait HasModules<'a> {
    /// Type of modules and sub-modules
    type Module<'b>: Module<'a, 'b, Machine = Self>
    where
        Self: 'b;
    /// Open a module (create if non-existent)
    fn module<'b>(&'b self, name: &str) -> Result<Self::Module<'b>, MachineError>;
}

/// Module of [`Machine`] where values can be read and set (access with [`HasModules::module`])
pub trait Module<'a, 'b>: Sized {
    /// Machine type which the module belongs to
    type Machine: Machine<'a>;
    /// Open a sub-module (create if non-existent)
    fn module(&self, name: &str) -> Result<Self, MachineError>;
    /// Get value from module
    fn get(
        &self,
        name: &str,
    ) -> Result<<Self::Machine as Machine<'a>>::Datum<'b, 'static>, MachineError>;
    /// Set value in module
    fn set<'c>(
        &self,
        name: &str,
        datum: <Self::Machine as Machine<'a>>::Datum<'b, 'c>,
    ) -> Result<(), MachineError>;
}