mozjs 0.15.7

Rust bindings to the Mozilla SpiderMonkey JavaScript engine.
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
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
use std::marker::PhantomData;
use std::mem::MaybeUninit;
use std::ops::{Deref, IndexMut};
use std::ptr;
use std::ptr::NonNull;

use crate::context::NoGC;
use crate::jsapi::{jsid, JSContext, JSFunction, JSObject, JSScript, JSString, Symbol, Value, JS};
use mozjs_sys::jsgc::{RootKind, Rooted};

use crate::jsapi::Handle as RawHandle;
use crate::jsapi::HandleObject as RawHandleObject;
use crate::jsapi::HandleValue as RawHandleValue;
use crate::jsapi::MutableHandle as RawMutableHandle;
use mozjs_sys::jsgc::IntoHandle as IntoRawHandle;
use mozjs_sys::jsgc::IntoMutableHandle as IntoRawMutableHandle;
use mozjs_sys::jsgc::ValueArray;

/// Rust API for keeping a Rooted value in the context's root stack.
/// Example usage: `rooted!(in(cx) let x = UndefinedValue());`.
/// `RootedGuard::new` also works, but the macro is preferred.
#[cfg_attr(
    feature = "crown",
    crown::unrooted_must_root_lint::allow_unrooted_interior
)]
pub struct RootedGuard<'a, T: 'a + RootKind> {
    root: *mut Rooted<T>,
    anchor: PhantomData<&'a mut Rooted<T>>,
}

impl<'a, T: 'a + RootKind> RootedGuard<'a, T> {
    pub fn new(cx: *mut JSContext, root: &'a mut MaybeUninit<Rooted<T>>, initial: T) -> Self {
        let root: *mut Rooted<T> = root.write(Rooted::new_unrooted(initial));

        unsafe {
            Rooted::add_to_root_stack(root, cx);
            RootedGuard {
                root,
                anchor: PhantomData,
            }
        }
    }

    pub fn handle(&'a self) -> Handle<'a, T> {
        // SAFETY: A root is a marked location.
        unsafe { Handle::from_marked_location(self.as_ptr()) }
    }

    pub fn handle_mut(&'_ mut self) -> MutableHandle<'_, T> {
        unsafe { MutableHandle::from_marked_location(self.as_ptr()) }
    }

    pub fn as_ptr(&self) -> *mut T {
        // SAFETY: self.root points to an inbounds allocation
        unsafe { (&raw mut (*self.root).data) }
    }

    /// Obtains a reference to the value pointed to by this handle.
    /// While this reference is alive, no GC can occur, because of the `_no_gc` argument:
    ///
    /// ```compile_fail
    /// use mozjs::context::*;
    /// use mozjs::jsapi::JSObject;
    /// use mozjs::rooted;
    ///
    /// fn gc(cx: &mut JSContext) {}
    ///
    /// fn f(cx: &mut JSContext, obj: *mut JSObject) {
    ///     rooted!(&in(cx) let mut root = obj);
    ///     let r = root.as_ref(cx);
    ///     gc(cx); // cannot call gc while r (thus cx borrow) is alive
    ///     drop(r); // otherwise rust automatically drops r before gc call
    /// }
    /// ```
    pub fn as_ref<'s: 'r, 'cx: 'r, 'r>(&'s self, _no_gc: &'cx NoGC) -> &'r T
    where
        'a: 's,
    {
        unsafe { &*(self.as_ptr()) }
    }

    /// Obtains a reference to the value pointed to by this handle.
    /// While this reference is alive, no GC can occur, because of the `_no_gc` argument:
    ///
    /// ```compile_fail
    /// use mozjs::context::*;
    /// use mozjs::jsapi::JSObject;
    /// use mozjs::rooted;
    ///
    /// fn gc(cx: &mut JSContext) {}
    ///
    /// fn f(cx: &mut JSContext, obj: *mut JSObject) {
    ///     rooted!(&in(cx) let mut root = obj);
    ///     let r = root.as_mut_ref(cx);
    ///     gc(cx); // cannot call gc while r (thus cx borrow) is alive
    ///     drop(r); // otherwise rust automatically drops r before gc call
    /// }
    /// ```
    pub fn as_mut_ref<'s: 'r, 'cx: 'r, 'r>(&'s mut self, _no_gc: &'cx NoGC) -> &'r mut T
    where
        'a: 's,
    {
        unsafe { &mut *(self.as_ptr()) }
    }

    /// Safety: GC must not run during the lifetime of the returned reference.
    /// Prefer using [`RootedGuard::as_mut_ref`] instead.
    pub unsafe fn as_mut<'b>(&'b mut self) -> &'b mut T
    where
        'a: 'b,
    {
        &mut *(self.as_ptr())
    }

    pub fn get(&self) -> T
    where
        T: Copy,
    {
        *self.deref()
    }

    pub fn set(&mut self, v: T) {
        // SAFETY: GC does not run during this block
        unsafe { *self.as_mut() = v };
    }
}

impl<'a, T> RootedGuard<'a, Option<T>>
where
    Option<T>: RootKind,
{
    pub fn take(&mut self) -> Option<T> {
        // Safety: No GC occurs during take call
        unsafe { self.as_mut().take() }
    }
}

impl<'a, T> RootedGuard<'a, Vec<T>>
where
    Vec<T>: RootKind,
{
    pub fn push(&mut self, value: T) {
        // Safety: No GC occurs during this call
        unsafe { self.as_mut().push(value) }
    }

    pub fn extend(&mut self, iterator: impl Iterator<Item = T>) {
        // Safety: No GC occurs during this call
        unsafe { self.as_mut().extend(iterator) }
    }

    pub fn set_index(&mut self, index: usize, value: T) {
        // Safety: No GC occurs during this call
        unsafe {
            *self.as_mut().index_mut(index) = value;
        }
    }

    pub fn handle_at(&'_ self, index: usize) -> Handle<'_, T> {
        assert!(index < self.len());
        // Safety: Values within this rooted vector are traced.
        unsafe { Handle::from_marked_location(self.deref().as_ptr().add(index)) }
    }

    pub fn handle_mut_at(&'_ mut self, index: usize) -> MutableHandle<'_, T> {
        assert!(index < self.len());
        // Safety: Values within this rooted vector are traced.
        unsafe { MutableHandle::from_marked_location(self.as_mut().as_mut_ptr().add(index)) }
    }
}

impl<'a, T: 'a + RootKind> Deref for RootedGuard<'a, T> {
    type Target = T;

    /// This is unsound and will be removed eventually.
    /// Use [`RootedGuard::as_ref`] instead.
    fn deref(&self) -> &T {
        unsafe { &(*self.root).data }
    }
}

impl<'a, T: 'a + RootKind> Drop for RootedGuard<'a, T> {
    fn drop(&mut self) {
        // SAFETY: The `drop_in_place` invariants are upheld:
        // https://doc.rust-lang.org/std/ptr/fn.drop_in_place.html#safety
        unsafe {
            let ptr = self.as_ptr();
            ptr::drop_in_place(ptr);
            ptr.write_bytes(0, 1);
        }

        unsafe {
            (*self.root).remove_from_root_stack();
        }
    }
}

impl<'a, const N: usize> From<&RootedGuard<'a, ValueArray<N>>> for JS::HandleValueArray {
    fn from(array: &RootedGuard<'a, ValueArray<N>>) -> JS::HandleValueArray {
        JS::HandleValueArray::from(unsafe { &*array.root })
    }
}

pub struct Handle<'a, T: 'a> {
    pub(crate) ptr: NonNull<T>,
    pub(crate) _phantom: PhantomData<&'a T>,
}

impl<T> Clone for Handle<'_, T> {
    fn clone(&self) -> Self {
        *self
    }
}

impl<T> Copy for Handle<'_, T> {}

#[cfg_attr(
    feature = "crown",
    crown::unrooted_must_root_lint::allow_unrooted_interior
)]
pub struct MutableHandle<'a, T: 'a> {
    pub(crate) ptr: NonNull<T>,
    anchor: PhantomData<&'a mut T>,
}

pub type HandleFunction<'a> = Handle<'a, *mut JSFunction>;
pub type HandleId<'a> = Handle<'a, jsid>;
pub type HandleObject<'a> = Handle<'a, *mut JSObject>;
pub type HandleScript<'a> = Handle<'a, *mut JSScript>;
pub type HandleString<'a> = Handle<'a, *mut JSString>;
pub type HandleSymbol<'a> = Handle<'a, *mut Symbol>;
pub type HandleValue<'a> = Handle<'a, Value>;

pub type MutableHandleFunction<'a> = MutableHandle<'a, *mut JSFunction>;
pub type MutableHandleId<'a> = MutableHandle<'a, jsid>;
pub type MutableHandleObject<'a> = MutableHandle<'a, *mut JSObject>;
pub type MutableHandleScript<'a> = MutableHandle<'a, *mut JSScript>;
pub type MutableHandleString<'a> = MutableHandle<'a, *mut JSString>;
pub type MutableHandleSymbol<'a> = MutableHandle<'a, *mut Symbol>;
pub type MutableHandleValue<'a> = MutableHandle<'a, Value>;

impl<'a, T> Handle<'a, T> {
    pub fn get(&self) -> T
    where
        T: Copy,
    {
        unsafe { *self.ptr.as_ptr() }
    }

    /// Obtains a reference to the value pointed to by this handle.
    /// While this reference is alive, no GC can occur, because of the `_no_gc` argument:
    ///
    /// ```compile_fail
    /// use mozjs::context::*;
    /// use mozjs::jsapi::JSObject;
    /// use mozjs::rooted;
    ///
    ///
    /// fn gc(cx: &mut JSContext) {}
    ///
    /// fn f(cx: &mut JSContext, obj: *mut JSObject) {
    ///     rooted!(&in(cx) let mut root = obj);
    ///     let handle = root.handle();
    ///     let r = handle.as_ref(cx);
    ///     gc(cx); // cannot call gc while r (thus cx borrow) is alive
    ///     drop(r); // otherwise rust automatically drops r before gc call
    /// }
    /// ```
    pub fn as_ref<'s: 'r, 'cx: 'r, 'r>(&'s self, _no_gc: &'cx NoGC) -> &'r T
    where
        'a: 's,
    {
        unsafe { self.ptr.as_ref() }
    }

    pub unsafe fn from_marked_location(ptr: *const T) -> Self {
        Handle {
            ptr: NonNull::new(ptr as *mut T).unwrap(),
            _phantom: PhantomData,
        }
    }

    pub unsafe fn from_raw(handle: RawHandle<T>) -> Self {
        Handle::from_marked_location(handle.ptr)
    }
}

impl<'a, T> IntoRawHandle for Handle<'a, T> {
    type Target = T;
    fn into_handle(self) -> RawHandle<T> {
        unsafe { RawHandle::from_marked_location(self.ptr.as_ptr()) }
    }
}

impl<'a, T> IntoRawHandle for MutableHandle<'a, T> {
    type Target = T;
    fn into_handle(self) -> RawHandle<T> {
        unsafe { RawHandle::from_marked_location(self.ptr.as_ptr()) }
    }
}

impl<'a, T> IntoRawMutableHandle for MutableHandle<'a, T> {
    fn into_handle_mut(self) -> RawMutableHandle<T> {
        unsafe { RawMutableHandle::from_marked_location(self.ptr.as_ptr()) }
    }
}

impl<'a, T> Deref for Handle<'a, T> {
    type Target = T;

    /// This is unsound and will be removed eventually.
    /// Use [`Handle::as_ref`] instead.
    fn deref(&self) -> &T {
        unsafe { self.ptr.as_ref() }
    }
}

impl<'a, T> MutableHandle<'a, T> {
    pub unsafe fn from_marked_location(ptr: *mut T) -> Self {
        Self {
            ptr: NonNull::new(ptr).unwrap(),
            anchor: PhantomData,
        }
    }

    pub unsafe fn from_raw(handle: RawMutableHandle<T>) -> Self {
        MutableHandle::from_marked_location(handle.ptr)
    }

    pub fn handle(&self) -> Handle<'a, T> {
        // SAFETY: This mutable handle was already derived from a marked location.
        unsafe { Handle::from_marked_location(self.ptr.as_ptr()) }
    }

    pub fn get(&self) -> T
    where
        T: Copy,
    {
        unsafe { *self.ptr.as_ptr() }
    }

    pub fn set(&mut self, v: T)
    where
        T: Copy,
    {
        unsafe { *self.ptr.as_mut() = v }
    }

    /// Obtains a reference to the value pointed to by this handle.
    /// While this reference is alive, no GC can occur, because of the `_no_gc` argument:
    ///
    /// ```compile_fail
    /// use mozjs::context::*;
    /// use mozjs::jsapi::JSObject;
    /// use mozjs::rooted;
    ///
    /// fn gc(cx: &mut JSContext) {}
    ///
    /// fn f(cx: &mut JSContext, obj: *mut JSObject) {
    ///     rooted!(&in(cx) let mut root = obj);
    ///     let handle = root.handle_mut();
    ///     let r = handle.as_ref(cx);
    ///     gc(cx); // cannot call gc while r (thus cx borrow) is alive
    ///     drop(r); // otherwise rust automatically drops r before gc call
    /// }
    /// ```
    pub fn as_ref<'s: 'r, 'cx: 'r, 'r>(&'s self, _no_gc: &'cx NoGC) -> &'r T
    where
        'a: 's,
    {
        unsafe { self.ptr.as_ref() }
    }

    /// Obtains a reference to the value pointed to by this handle.
    /// While this reference is alive, no GC can occur, because of the `_no_gc` argument:
    ///
    /// ```compile_fail
    /// use mozjs::context::*;
    /// use mozjs::jsapi::JSObject;
    /// use mozjs::rooted;
    ///
    /// fn gc(cx: &mut JSContext) {}
    ///
    /// fn f(cx: &mut JSContext, obj: *mut JSObject) {
    ///     rooted!(&in(cx) let mut root = obj);
    ///     let mut handle = root.handle_mut();
    ///     let r = handle.as_mut_ref(cx);
    ///     gc(cx); // cannot call gc while r (thus cx borrow) is alive
    ///     drop(r); // otherwise rust automatically drops r before gc call
    /// }
    /// ```
    pub fn as_mut_ref<'s: 'r, 'cx: 'r, 'r>(&'s mut self, _no_gc: &'cx NoGC) -> &'r mut T
    where
        'a: 's,
    {
        unsafe { self.ptr.as_mut() }
    }

    /// Safety: GC must not run during the lifetime of the returned reference.
    /// Use [`MutableHandle::as_mut_ref`] instead.
    pub unsafe fn as_mut<'b>(&'b mut self) -> &'b mut T
    where
        'a: 'b,
    {
        self.ptr.as_mut()
    }

    /// Creates a copy of this object, with a shorter lifetime, that holds a
    /// mutable borrow on the original object. When you write code that wants
    /// to use a `MutableHandle` more than once, you will typically need to
    /// call `reborrow` on all but the last usage. The same way that you might
    /// naively clone a type to allow it to be passed to multiple functions.
    ///
    /// This is the same thing that happens with regular mutable references,
    /// except there the compiler implicitly inserts the reborrow calls. Until
    /// rust gains a feature to implicitly reborrow other types, we have to do
    /// it by hand.
    pub fn reborrow<'b>(&'b mut self) -> MutableHandle<'b, T>
    where
        'a: 'b,
    {
        MutableHandle {
            ptr: self.ptr,
            anchor: PhantomData,
        }
    }

    pub(crate) fn raw(&mut self) -> RawMutableHandle<T> {
        unsafe { RawMutableHandle::from_marked_location(self.ptr.as_ptr()) }
    }
}

impl<'a, T> MutableHandle<'a, Option<T>> {
    pub fn take(&mut self) -> Option<T> {
        // Safety: No GC occurs during take call
        unsafe { self.as_mut().take() }
    }
}

impl<'a, T> Deref for MutableHandle<'a, T> {
    type Target = T;

    /// This is unsound and will be removed eventually.
    /// Use [`MutableHandle::as_ref`] instead.
    fn deref(&self) -> &T {
        unsafe { self.ptr.as_ref() }
    }
}

impl HandleValue<'static> {
    pub fn null() -> Self {
        unsafe { Self::from_raw(RawHandleValue::null()) }
    }

    pub fn undefined() -> Self {
        unsafe { Self::from_raw(RawHandleValue::undefined()) }
    }
}

impl<'a> HandleObject<'a> {
    pub fn null() -> Self {
        unsafe { Self::from_raw(RawHandleObject::null()) }
    }
}