ad-astra 1.0.0

Embeddable scripting language platform Ad Astra. Main Crate.
Documentation
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
////////////////////////////////////////////////////////////////////////////////
// This file is part of "Ad Astra", an embeddable scripting programming       //
// language platform.                                                         //
//                                                                            //
// This work is proprietary software with source-available code.              //
//                                                                            //
// To copy, use, distribute, or contribute to this work, you must agree to    //
// the terms of the General License Agreement:                                //
//                                                                            //
// https://github.com/Eliah-Lakhin/ad-astra/blob/master/EULA.md               //
//                                                                            //
// The agreement grants a Basic Commercial License, allowing you to use       //
// this work in non-commercial and limited commercial products with a total   //
// gross revenue cap. To remove this commercial limit for one of your         //
// products, you must acquire a Full Commercial License.                      //
//                                                                            //
// If you contribute to the source code, documentation, or related materials, //
// you must grant me an exclusive license to these contributions.             //
// Contributions are governed by the "Contributions" section of the General   //
// License Agreement.                                                         //
//                                                                            //
// Copying the work in parts is strictly forbidden, except as permitted       //
// under the General License Agreement.                                       //
//                                                                            //
// If you do not or cannot agree to the terms of this Agreement,              //
// do not use this work.                                                      //
//                                                                            //
// This work is provided "as is", without any warranties, express or implied, //
// except where such disclaimers are legally invalid.                         //
//                                                                            //
// Copyright (c) 2024 Ilya Lakhin (Илья Александрович Лахин).                 //
// All rights reserved.                                                       //
////////////////////////////////////////////////////////////////////////////////

use std::{
    any::type_name,
    ops::{Range, RangeFrom, RangeFull, RangeInclusive, RangeTo, RangeToInclusive},
    ptr::{addr_of, addr_of_mut},
    sync::Arc,
};

use crate::{
    export,
    exports::utils::transparent_upcast,
    runtime::{
        ops::{ScriptClone, ScriptDebug, ScriptHash, ScriptPartialEq},
        Arg,
        Cell,
        Downcast,
        NumericOperationKind,
        Origin,
        Provider,
        RuntimeError,
        RuntimeResult,
        ScriptType,
        TypeHint,
        Upcast,
    },
};

/// A range of integer numbers: `10..125`.
///
/// This range includes all integer numbers starting from the lower value
/// (inclusive) up to the upper value (exclusive).
#[export(include)]
#[export(name "range")]
pub(crate) type RangeType = Range<usize>;

impl<'a> Downcast<'a> for RangeType {
    fn downcast(origin: Origin, provider: Provider<'a>) -> RuntimeResult<Self> {
        let mut type_match = provider.type_match();

        if type_match.is::<Self>() {
            return provider.to_owned().take(origin);
        }

        Err(type_match.mismatch(origin))
    }

    #[inline(always)]
    fn hint() -> TypeHint {
        TypeHint::Type(Self::type_meta())
    }
}

impl<'a> Downcast<'a> for &'a RangeType {
    #[inline]
    fn downcast(origin: Origin, provider: Provider<'a>) -> RuntimeResult<Self> {
        let mut type_match = provider.type_match();

        if type_match.is::<RangeType>() {
            return provider.to_borrowed(&origin)?.borrow_ref(origin);
        }

        Err(type_match.mismatch(origin))
    }

    #[inline(always)]
    fn hint() -> TypeHint {
        TypeHint::Type(RangeType::type_meta())
    }
}

impl<'a> Downcast<'a> for &'a mut RangeType {
    #[inline]
    fn downcast(origin: Origin, provider: Provider<'a>) -> RuntimeResult<Self> {
        let mut type_match = provider.type_match();

        if type_match.is::<RangeType>() {
            return provider.to_borrowed(&origin)?.borrow_mut(origin);
        }

        Err(type_match.mismatch(origin))
    }

    #[inline(always)]
    fn hint() -> TypeHint {
        TypeHint::Type(RangeType::type_meta())
    }
}

transparent_upcast!(RangeType);

#[export(include)]
impl ScriptClone for RangeType {}

#[export(include)]
impl ScriptHash for RangeType {}

#[export(include)]
impl ScriptDebug for RangeType {}

#[export(include)]
impl ScriptPartialEq for RangeType {
    type RHS = Self;

    fn script_eq(_origin: Origin, mut lhs: Arg, mut rhs: Arg) -> RuntimeResult<bool> {
        let lhs = lhs.data.borrow_ref::<Self>(lhs.origin)?;

        let mut type_match = rhs.data.type_match();

        if type_match.is::<Self>() {
            let rhs = rhs.data.borrow_ref::<Self>(rhs.origin)?;

            return Ok(lhs == rhs);
        }

        if type_match.belongs_to::<usize>() {
            let singleton =
                <usize as Downcast>::downcast(rhs.origin, Provider::Borrowed(&mut rhs.data))?;

            return match singleton == usize::MAX {
                true => Ok(false),

                false => Ok(lhs.start == singleton && lhs.end == singleton + 1),
            };
        }

        Err(type_match.mismatch(rhs.origin))
    }
}

trait RangeImpl {
    fn start(origin: Origin, lhs: Arg) -> RuntimeResult<Cell>;
    fn end(origin: Origin, lhs: Arg) -> RuntimeResult<Cell>;
}

#[export(include)]
impl RangeImpl for RangeType {
    #[export(component RangeType)]
    fn start(origin: Origin, lhs: Arg) -> RuntimeResult<Cell> {
        unsafe fn by_ref(range: *const RangeType) -> *const usize {
            // Safety: Upheld by the Cell::map_component specification.
            unsafe { addr_of!((*range).start) }
        }

        unsafe fn by_mut(range: *mut RangeType) -> *mut usize {
            // Safety: Upheld by the Cell::map_component specification.
            unsafe { addr_of_mut!((*range).start) }
        }

        lhs.data
            .map_ptr::<Self, usize>(origin, Some(by_ref), Some(by_mut))
    }

    #[export(component RangeType)]
    fn end(origin: Origin, lhs: Arg) -> RuntimeResult<Cell> {
        unsafe fn by_ref(range: *const RangeType) -> *const usize {
            // Safety: Upheld by the Cell::map_component specification.
            unsafe { addr_of!((*range).end) }
        }

        unsafe fn by_mut(range: *mut RangeType) -> *mut usize {
            // Safety: Upheld by the Cell::map_component specification.
            unsafe { addr_of_mut!((*range).end) }
        }

        lhs.data
            .map_ptr::<Self, usize>(origin, Some(by_ref), Some(by_mut))
    }
}

impl<'a> Downcast<'a> for RangeFrom<usize> {
    #[inline]
    fn downcast(origin: Origin, provider: Provider<'a>) -> RuntimeResult<Self> {
        let range = provider.to_owned().take::<RangeType>(origin)?;

        if range.end != usize::MAX {
            return Err(RuntimeError::RangeCast {
                access_origin: origin,
                from: range,
                to: type_name::<RangeFrom<usize>>(),
            });
        }

        Ok(RangeFrom { start: range.start })
    }

    #[inline(always)]
    fn hint() -> TypeHint {
        TypeHint::Type(RangeType::type_meta())
    }
}

impl<'a> Upcast<'a> for RangeFrom<usize> {
    type Output = Box<RangeType>;

    #[inline(always)]
    fn upcast(_origin: Origin, this: Self) -> RuntimeResult<Self::Output> {
        Ok(Box::new(this.start..usize::MAX))
    }

    #[inline(always)]
    fn hint() -> TypeHint {
        TypeHint::Type(RangeType::type_meta())
    }
}

impl<'a> Downcast<'a> for RangeFull {
    #[inline]
    fn downcast(origin: Origin, provider: Provider<'a>) -> RuntimeResult<Self> {
        let range = provider.to_owned().take::<RangeType>(origin)?;

        if range.start != 0 || range.end != usize::MAX {
            return Err(RuntimeError::RangeCast {
                access_origin: origin,
                from: range,
                to: type_name::<RangeFrom<usize>>(),
            });
        }

        Ok(RangeFull)
    }

    #[inline(always)]
    fn hint() -> TypeHint {
        TypeHint::Type(RangeType::type_meta())
    }
}

impl<'a> Upcast<'a> for RangeFull {
    type Output = Box<RangeType>;

    #[inline(always)]
    fn upcast(_origin: Origin, _this: Self) -> RuntimeResult<Self::Output> {
        Ok(Box::new(0..usize::MAX))
    }

    #[inline(always)]
    fn hint() -> TypeHint {
        TypeHint::Type(RangeType::type_meta())
    }
}

impl<'a> Downcast<'a> for RangeInclusive<usize> {
    #[inline]
    fn downcast(origin: Origin, provider: Provider<'a>) -> RuntimeResult<Self> {
        let mut type_match = provider.type_match();

        if type_match.is::<RangeType>() {
            let range = provider.to_owned().take::<RangeType>(origin)?;

            let start = range.start;

            let end = match start.checked_add(1) {
                Some(bound) => bound,

                None => {
                    return Err(RuntimeError::NumericOperation {
                        invoke_origin: origin,
                        kind: NumericOperationKind::Add,
                        lhs: (usize::type_meta(), Arc::new(start)),
                        rhs: Some((usize::type_meta(), Arc::new(1))),
                        target: usize::type_meta(),
                    })
                }
            };

            return Ok(start..=end);
        }

        if type_match.belongs_to::<usize>() {
            let start = <usize as Downcast>::downcast(origin, provider)?;

            return Ok(start..=start);
        }

        Err(type_match.mismatch(origin))
    }

    #[inline(always)]
    fn hint() -> TypeHint {
        TypeHint::Type(RangeType::type_meta())
    }
}

impl<'a> Upcast<'a> for RangeInclusive<usize> {
    type Output = Box<RangeType>;

    #[inline]
    fn upcast(origin: Origin, this: Self) -> RuntimeResult<Self::Output> {
        let start = *this.start();

        let end = match start.checked_add(1) {
            Some(bound) => bound,

            None => {
                return Err(RuntimeError::NumericOperation {
                    invoke_origin: origin,
                    kind: NumericOperationKind::Add,
                    lhs: (usize::type_meta(), Arc::new(start)),
                    rhs: Some((usize::type_meta(), Arc::new(1))),
                    target: usize::type_meta(),
                })
            }
        };

        Ok(Box::new(start..end))
    }

    #[inline(always)]
    fn hint() -> TypeHint {
        TypeHint::Type(RangeType::type_meta())
    }
}

impl<'a> Downcast<'a> for RangeTo<usize> {
    #[inline]
    fn downcast(origin: Origin, provider: Provider<'a>) -> RuntimeResult<Self> {
        let range = provider.to_owned().take::<RangeType>(origin)?;

        if range.start != 0 {
            return Err(RuntimeError::RangeCast {
                access_origin: origin,
                from: range,
                to: type_name::<RangeTo<usize>>(),
            });
        }

        Ok(..range.end)
    }

    #[inline(always)]
    fn hint() -> TypeHint {
        TypeHint::Type(RangeType::type_meta())
    }
}

impl<'a> Upcast<'a> for RangeTo<usize> {
    type Output = Box<RangeType>;

    #[inline(always)]
    fn upcast(_origin: Origin, this: Self) -> RuntimeResult<Self::Output> {
        Ok(Box::new(0..this.end))
    }

    #[inline(always)]
    fn hint() -> TypeHint {
        TypeHint::Type(RangeType::type_meta())
    }
}

impl<'a> Downcast<'a> for RangeToInclusive<usize> {
    #[inline]
    fn downcast(origin: Origin, provider: Provider<'a>) -> RuntimeResult<Self> {
        let range = provider.to_owned().take::<RangeType>(origin)?;

        if range.start != 0 {
            return Err(RuntimeError::RangeCast {
                access_origin: origin,
                from: range,
                to: type_name::<RangeToInclusive<usize>>(),
            });
        }

        let end = match range.end.checked_add(1) {
            Some(bound) => bound,

            None => {
                return Err(RuntimeError::NumericOperation {
                    invoke_origin: origin,
                    kind: NumericOperationKind::Add,
                    lhs: (usize::type_meta(), Arc::new(range.end)),
                    rhs: Some((usize::type_meta(), Arc::new(1))),
                    target: usize::type_meta(),
                })
            }
        };

        Ok(..=end)
    }

    #[inline(always)]
    fn hint() -> TypeHint {
        TypeHint::Type(RangeType::type_meta())
    }
}