Struct RubyCore

Source
pub struct RubyCore { /* private fields */ }
Expand description

A Ruby load path builder that prepares paths for in-memory Ruby Core and Ruby Standard Library sources.

Artichoke embeds Ruby sources and native extensions into an in-memory file system. This in-memory file system is addressed at a virtual mount point, which must be located within the VM $LOAD_PATH so they may be loaded by the require subsystem.

Like the site directories in MRI, these paths are the lowest priority load paths and should appear at the end of the $LOAD_PATH.

Paths earlier in the sequence returned from load_path have higher priority.

use mezzaluna_load_path::RubyCore;

let core_loader = RubyCore::new();
// Load path contains 2 entries: one for Ruby Core sources and one for
// Ruby Standard Library sources.
assert_eq!(core_loader.load_path().len(), 2);

Implementations§

Source§

impl RubyCore

Source

pub const fn new() -> Self

Create a new load path builder that reads from the RUBYLIB environment variable.

The RUBYLIB environment variable is read only once at the time this method is called. The resolved load path is immutable.

This method returns None if there are errors resolving the RUBYLIB environment variable, if the RUBYLIB environment variable is not set, or if the given RUBYLIB environment variable only contains empty paths.

§Examples
use mezzaluna_load_path::RubyCore;

let loader = RubyCore::new();
Source

pub fn core_load_path(self) -> &'static Path

Return a reference to the load path for sources in the Ruby Core library.

Features in Ruby Core have the lowest priority, so the returned path should appear last in $LOAD_PATH.

§Examples
use std::path::Path;
use mezzaluna_load_path::RubyCore;

let loader = RubyCore::new();

if cfg!(windows) {
    assert_eq!(
        loader.core_load_path(),
        Path::new("c:/artichoke/virtual_root/site/core/lib"),
    );
} else {
    assert_eq!(
        loader.core_load_path(),
        Path::new("/artichoke/virtual_root/site/core/lib"),
    );
}
Source

pub fn stdlib_load_path(self) -> &'static Path

Return a reference to the load path for sources in the Ruby Standard Library.

Features in Ruby Standard Library have low priority, so the returned path should appear second to last in $LOAD_PATH (only ahead of the core load path).

§Examples
use std::path::Path;
use mezzaluna_load_path::RubyCore;

let loader = RubyCore::new();

if cfg!(windows) {
    assert_eq!(
        loader.stdlib_load_path(),
        Path::new("c:/artichoke/virtual_root/site/stdlib/lib"),
    );
} else {
    assert_eq!(
        loader.stdlib_load_path(),
        Path::new("/artichoke/virtual_root/site/stdlib/lib"),
    );
}
Source

pub fn load_path(self) -> [&'static Path; 2]

Return a reference to the paths in $LOAD_PATH parsed by this builder.

Because the site paths have the lowest priority when loading features, the returned paths should appear last in $LOAD_PATH.

§Examples
use mezzaluna_load_path::RubyCore;

let loader = RubyCore::new();
assert_eq!(
    loader.load_path(),
    [loader.stdlib_load_path(), loader.core_load_path()],
);

Trait Implementations§

Source§

impl Clone for RubyCore

Source§

fn clone(&self) -> RubyCore

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for RubyCore

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for RubyCore

Source§

fn default() -> RubyCore

Returns the “default value” for a type. Read more
Source§

impl PartialEq for RubyCore

Source§

fn eq(&self, other: &RubyCore) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Copy for RubyCore

Source§

impl Eq for RubyCore

Source§

impl StructuralPartialEq for RubyCore

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.