jlrs 0.23.0

jlrs provides bindings to the Julia C API that enable Julia code to be called from Rust and more.
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
//! Static references to `Symbol`s.

use std::{
    ffi::{c_char, c_void},
    fmt::Debug,
    hash::{Hash, Hasher},
    marker::PhantomData,
    ptr::NonNull,
};

use jl_sys::jl_symbol_n;

use crate::{
    data::{
        managed::{private::ManagedPriv, symbol::Symbol},
        types::construct_type::{ConstructType, TypeVarName},
    },
    memory::target::{Target, unrooted::Unrooted},
    prelude::Managed,
    private::Private,
};

/// Define a new implementation of `StaticSymbol`.
///
/// `StaticSymbol`s are the fastest way that `Symbol`s can be accessed in jlrs, you use them
/// by calling [`StaticSymbol::get_symbol`].
///
/// Example:
///
/// ```
/// # use jlrs::prelude::*;
/// # use jlrs::data::managed::array::{TypedArray, TypedRankedArray};
/// # use jlrs::define_static_symbol;
/// # use jlrs::data::managed::symbol::static_symbol::{StaticSymbol, sym};
///
/// struct Bar;
///
/// // Define for existing struct.
/// define_static_symbol!(for Bar, "Bar");
///
/// // Define for new struct. The struct is defined as a unit type, i.e. `struct Where;`
/// define_static_symbol!(Where, "where");
///
/// // Attributes and visibility modifiers are accepted when a new struct is defined.
/// define_static_symbol!(
///     /// The subtype operator `:<:`.
///     pub SubtypeOperator,
///     "<:"
/// );
///
/// # fn main() {
/// # let mut julia = Builder::new().start_local().unwrap();
/// julia
///     .local_scope::<_, 0>(|frame| {
///         let where_sym = Bar::get_symbol(&frame);
///         let sym = sym::<Bar, _>(&frame);
///         assert_eq!(where_sym, sym);
///     });
/// # }
/// ```
#[macro_export]
macro_rules! define_static_symbol {
    (for $name:ident, $sym:literal) => {
        unsafe impl $crate::data::managed::symbol::static_symbol::StaticSymbol for $name {
            #[inline]
            fn get_symbol<'target, Tgt: $crate::memory::target::Target<'target>>(_: &Tgt) -> $crate::data::managed::symbol::Symbol<'target> {
                static PTR: ::std::sync::atomic::AtomicPtr<::std::ffi::c_void> = ::std::sync::atomic::AtomicPtr::new(::std::ptr::null_mut());

                #[cold]
                #[inline(never)]
                unsafe fn init() -> $crate::data::managed::symbol::Symbol<'static> { unsafe {
                    const N: usize = $sym.as_bytes().len();
                    const INNER_PTR: *mut ::std::ffi::c_char = $sym.as_ptr() as *const ::std::ffi::c_char as *mut ::std::ffi::c_char;
                    let ptr = $crate::data::managed::symbol::static_symbol::new_symbol(INNER_PTR, N);
                    PTR.store(ptr, ::std::sync::atomic::Ordering::Relaxed);
                    $crate::data::managed::symbol::static_symbol::convert_void_ptr(ptr)
                }}

                fn inner() -> $crate::data::managed::symbol::Symbol<'static> {
                    let ptr = PTR.load(::std::sync::atomic::Ordering::Relaxed);
                    unsafe {
                        if ptr.is_null() {
                            init()
                        } else {
                            $crate::data::managed::symbol::static_symbol::convert_void_ptr(ptr)
                        }
                    }
                }

                inner()
            }
        }
    };
    ($(#[$meta:meta])* $vis:vis $name:ident, $sym:literal) => {
        $(#[$meta])*
        $vis struct $name;
        $crate::define_static_symbol!(for $name, $sym);
    };
}

/// Same as [`define_static_symbol`] but accepts byte string literals instead of string literals.
#[macro_export]
macro_rules! define_static_binary_symbol {
    (for $name:ident, $sym:literal) => {
        unsafe impl $crate::data::managed::symbol::static_symbol::StaticSymbol for $name {
            #[inline]
            fn get_symbol<'target, Tgt: $crate::memory::target::Target<'target>>(_: &Tgt) -> $crate::data::managed::symbol::Symbol<'target> {
                static PTR: ::std::sync::atomic::AtomicPtr<::std::ffi::c_void> = ::std::sync::atomic::AtomicPtr::new(::std::ptr::null_mut());

                #[cold]
                #[inline(never)]
                unsafe fn init() -> $crate::data::managed::symbol::Symbol<'static> {
                    const N: usize = $sym.len();
                    const INNER_PTR: *mut ::std::ffi::c_char = $sym.as_ptr() as *const ::std::ffi::c_char as *mut ::std::ffi::c_char;
                    let ptr = $crate::data::managed::symbol::static_symbol::new_symbol(INNER_PTR, N);
                    PTR.store(ptr, ::std::sync::atomic::Ordering::Relaxed);
                    $crate::data::managed::symbol::static_symbol::convert_void_ptr(ptr)
                }

                fn inner() -> $crate::data::managed::symbol::Symbol<'static> {
                    let ptr = PTR.load(::std::sync::atomic::Ordering::Relaxed);
                    unsafe {
                        if ptr.is_null() {
                            init()
                        } else {
                            $crate::data::managed::symbol::static_symbol::convert_void_ptr(ptr)
                        }
                    }
                };

                inner()
            }
        }
    };
    ($(#[$meta:meta])* $vis:vis $name:ident, $sym:literal) => {
        $(#[$meta])*
        $vis struct $name;
        $crate::define_static_binary_symbol!(for $name, $sym);
    };
}

/// Trait implemented by types that encode a `Symbol`.
///
/// New implementations of this trait must be created with [`define_static_symbol`].
pub unsafe trait StaticSymbol: 'static {
    /// Returns the symbol encoded by this type.
    fn get_symbol<'target, Tgt: Target<'target>>(target: &Tgt) -> Symbol<'target>;
}

/// Helper struct that wraps a `StaticSymbol`
///
/// This type implements [`ToSymbol`], [`ConstructType`], and [`TypeVarName`], `Hash`, and
/// `PartialEq`. In the case of `PartialEq`, a `Sym` can be compared with `Symbols`, other `Sym`s,
/// and types that implement `StaticSymbol`. The hash is guaranteed to be the same as the
/// hash of the symbol.
///
/// [`ToSymbol`]: crate::convert::to_symbol::ToSymbol
#[repr(transparent)]
pub struct Sym<'target, S>(S, PhantomData<&'target ()>);

impl<'target, S: StaticSymbol> Sym<'target, S> {
    /// Convert an instance of an implementation of [`StaticSymbol`] to `Sym`.
    ///
    /// If you want to use the type rather than an instance, use [`sym`] instead.
    ///
    /// Safety: Must be called from a thread known to Julia, the result must only be used while
    /// Julia is active.
    #[inline]
    pub fn new<Tgt>(_: &Tgt, s: S) -> Self
    where
        Tgt: Target<'target>,
    {
        Sym(s, PhantomData)
    }

    /// Extract the instance of an implementation of [`StaticSymbol`] from a `self`.
    #[inline]
    pub fn take(self) -> S {
        self.0
    }
}

/// Convert `S` to `Sym<PhantomData<S>>`.
#[inline]
pub fn sym<'target, S, Tgt>(_: &Tgt) -> Sym<'target, PhantomData<S>>
where
    S: StaticSymbol,
    Tgt: Target<'target>,
{
    Sym(PhantomData, PhantomData)
}

unsafe impl<S: StaticSymbol> ConstructType for Sym<'_, S> {
    type Static = Sym<'static, S>;

    const CACHEABLE: bool = false;

    #[inline]
    fn construct_type_uncached<'target, Tgt>(
        target: Tgt,
    ) -> crate::prelude::ValueData<'target, 'static, Tgt>
    where
        Tgt: Target<'target>,
    {
        S::get_symbol(&target).as_value().root(target)
    }

    #[inline]
    fn construct_type_with_env_uncached<'target, Tgt>(
        target: Tgt,
        _: &crate::data::types::construct_type::TypeVarEnv,
    ) -> crate::prelude::ValueData<'target, 'static, Tgt>
    where
        Tgt: Target<'target>,
    {
        S::get_symbol(&target).as_value().root(target)
    }

    #[inline]
    fn base_type<'target, Tgt>(_: &Tgt) -> Option<crate::prelude::Value<'target, 'static>>
    where
        Tgt: Target<'target>,
    {
        None
    }
}

unsafe impl<S: StaticSymbol> ConstructType for Sym<'_, PhantomData<S>> {
    type Static = Sym<'static, S>;

    const CACHEABLE: bool = false;

    #[inline]
    fn construct_type_uncached<'target, Tgt>(
        target: Tgt,
    ) -> crate::prelude::ValueData<'target, 'static, Tgt>
    where
        Tgt: Target<'target>,
    {
        S::get_symbol(&target).as_value().root(target)
    }

    #[inline]
    fn construct_type_with_env_uncached<'target, Tgt>(
        target: Tgt,
        _: &crate::data::types::construct_type::TypeVarEnv,
    ) -> crate::prelude::ValueData<'target, 'static, Tgt>
    where
        Tgt: Target<'target>,
    {
        S::get_symbol(&target).as_value().root(target)
    }

    #[inline]
    fn base_type<'target, Tgt>(_: &Tgt) -> Option<crate::prelude::Value<'target, 'static>>
    where
        Tgt: Target<'target>,
    {
        None
    }
}

impl<S: StaticSymbol> TypeVarName for Sym<'static, S> {
    #[inline]
    fn symbol<'target, Tgt: Target<'target>>(target: &Tgt) -> Symbol<'target> {
        S::get_symbol(target)
    }
}

impl<S: StaticSymbol> TypeVarName for Sym<'static, PhantomData<S>> {
    #[inline]
    fn symbol<'target, Tgt: Target<'target>>(target: &Tgt) -> Symbol<'target> {
        S::get_symbol(target)
    }
}

impl<S: StaticSymbol> Hash for Sym<'_, S> {
    #[inline]
    fn hash<H: Hasher>(&self, state: &mut H) {
        unsafe {
            let unrooted = Unrooted::new();
            let s = S::get_symbol(&unrooted);
            <Symbol as Hash>::hash(&s, state)
        }
    }
}

impl<S: StaticSymbol> Hash for Sym<'_, PhantomData<S>> {
    #[inline]
    fn hash<H: Hasher>(&self, state: &mut H) {
        unsafe {
            let unrooted = Unrooted::new();
            let s = S::get_symbol(&unrooted);
            <Symbol as Hash>::hash(&s, state)
        }
    }
}

impl<S: StaticSymbol> Debug for Sym<'_, S> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        unsafe {
            f.debug_tuple("Sym")
                .field(&S::get_symbol(&Unrooted::new()))
                .finish()
        }
    }
}

impl<S: StaticSymbol> Debug for Sym<'_, PhantomData<S>> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        unsafe {
            f.debug_tuple("Sym")
                .field(&S::get_symbol(&Unrooted::new()))
                .finish()
        }
    }
}

impl<S: StaticSymbol, T: StaticSymbol> PartialEq<T> for Sym<'_, S> {
    fn eq(&self, _: &T) -> bool {
        unsafe {
            let unrooted = Unrooted::new();
            let this = S::get_symbol(&unrooted);
            let other = T::get_symbol(&unrooted);
            this == other
        }
    }
}

impl<S: StaticSymbol, T: StaticSymbol> PartialEq<Sym<'_, T>> for Sym<'_, S> {
    fn eq(&self, _: &Sym<T>) -> bool {
        unsafe {
            let unrooted = Unrooted::new();
            let this = S::get_symbol(&unrooted);
            let other = T::get_symbol(&unrooted);
            this == other
        }
    }
}

impl<S: StaticSymbol, T: StaticSymbol> PartialEq<Sym<'_, PhantomData<T>>> for Sym<'_, S> {
    fn eq(&self, _: &Sym<PhantomData<T>>) -> bool {
        unsafe {
            let unrooted = Unrooted::new();
            let this = S::get_symbol(&unrooted);
            let other = T::get_symbol(&unrooted);
            this == other
        }
    }
}

impl<S: StaticSymbol, T: StaticSymbol> PartialEq<T> for Sym<'_, PhantomData<S>> {
    fn eq(&self, _: &T) -> bool {
        unsafe {
            let unrooted = Unrooted::new();
            let this = S::get_symbol(&unrooted);
            let other = T::get_symbol(&unrooted);
            this == other
        }
    }
}

impl<S: StaticSymbol, T: StaticSymbol> PartialEq<Sym<'_, T>> for Sym<'_, PhantomData<S>> {
    fn eq(&self, _: &Sym<T>) -> bool {
        unsafe {
            let unrooted = Unrooted::new();
            let this = S::get_symbol(&unrooted);
            let other = T::get_symbol(&unrooted);
            this == other
        }
    }
}

impl<S: StaticSymbol, T: StaticSymbol> PartialEq<Sym<'_, PhantomData<T>>>
    for Sym<'_, PhantomData<S>>
{
    fn eq(&self, _: &Sym<PhantomData<T>>) -> bool {
        unsafe {
            let unrooted = Unrooted::new();
            let this = S::get_symbol(&unrooted);
            let other = T::get_symbol(&unrooted);
            this == other
        }
    }
}

impl<S: StaticSymbol> PartialEq<Symbol<'_>> for Sym<'_, S> {
    fn eq(&self, other: &Symbol<'_>) -> bool {
        unsafe {
            let unrooted = Unrooted::new();
            let this = S::get_symbol(&unrooted);
            this.0 == other.0
        }
    }
}

impl<S: StaticSymbol> PartialEq<Symbol<'_>> for Sym<'_, PhantomData<S>> {
    fn eq(&self, other: &Symbol<'_>) -> bool {
        unsafe {
            let unrooted = Unrooted::new();
            let this = S::get_symbol(&unrooted);
            this.0 == other.0
        }
    }
}

// Converts a void pointer to a symbol, the pointer must have been returned by `new_symbol`.
#[doc(hidden)]
#[inline(always)]
pub unsafe fn convert_void_ptr(ptr: *mut c_void) -> Symbol<'static> {
    unsafe { Symbol::wrap_non_null(NonNull::new_unchecked(ptr as *mut _), Private) }
}

// Creates a new symbol, ptr and len must the pointer and length of a string slice `&str`.
#[doc(hidden)]
#[inline(always)]
pub unsafe fn new_symbol<'target>(ptr: *mut c_char, len: usize) -> *mut c_void {
    unsafe { jl_symbol_n(ptr, len) as *mut _ }
}

define_static_symbol!(pub NSym, "N");
define_static_symbol!(pub TSym, "T");