Struct gluon_vm::thread::Thread

source ·
pub struct Thread { /* private fields */ }
Expand description

Representation of the virtual machine

Implementations§

source§

impl Thread

source

pub fn new_thread(&self) -> Result<RootedThread>

Spawns a new gluon thread with its own stack and heap but while still sharing the same global environment

source

pub fn root_thread(&self) -> RootedThread

Roots self, extending the lifetime of this thread until at least the returned RootedThread is droppped

source

pub fn spawner(&self) -> Option<&(dyn Spawn + Send + Sync)>

source

pub fn get_global<'vm, T>(&'vm self, name: &str) -> Result<T>
where T: for<'value> Getable<'vm, 'value> + VmType,

Retrieves the global called name.

Examples

Bind the (+) function in gluon’s prelude standard library to an add function in rust



let vm = new_vm_async().await;

vm.run_expr_async::<OpaqueValue<&Thread, Hole>>("example", r#" import! std.int "#)
    .await
    .unwrap_or_else(|err| panic!("{}", err));
let mut add: FunctionRef<fn(i32, i32) -> i32> =
    vm.get_global("std.int.num.(+)").unwrap();
let result = add.call_async(1, 2).await;
assert_eq!(result, Ok(3));
Errors

if the global does not exist or it does not have the correct type.

source

pub fn get_global_type(&self, name: &str) -> Result<ArcType>

source

pub fn find_type_info(&self, name: &str) -> Result<Alias<Symbol, ArcType>>

Retrieves type information about the type name. Types inside records can be accessed using dot notation (std.prelude.Option)

source

pub fn get_type<T: ?Sized + Any>(&self) -> Option<ArcType>

Returns the gluon type that was bound to T

source

pub fn register_type<T: ?Sized + Any>( &self, name: &str, args: &[&str] ) -> Result<ArcType>

Registers the type T as being a gluon type called name with generic arguments args

source

pub fn register_type_as( &self, name: Symbol, alias: Alias<Symbol, ArcType>, id: TypeId ) -> Result<ArcType>

source

pub fn get_cache_alias(&self, name: &str) -> Option<ArcType>

source

pub fn cache_alias(&self, alias: Alias<Symbol, ArcType>) -> ArcType

source

pub fn get_env<'b>(&'b self) -> VmEnvInstance<'b>

Locks and retrieves the global environment of the vm

source

pub fn get_macros(&self) -> &MacroEnv

Retrieves the macros defined for this vm

source

pub fn collect(&self)

Runs a garbage collection.

source

pub fn push<'vm, T>(&'vm self, v: T) -> Result<()>
where T: Pushable<'vm>,

Pushes a value to the top of the stack

source

pub fn pop(&self)

Removes the top value from the stack

source

pub fn allocated_memory(&self) -> usize

source

pub fn set_memory_limit(&self, memory_limit: usize)

source

pub fn interrupt(&self)

source

pub fn interrupted(&self) -> bool

source

pub fn current_context(&self) -> ActiveThread<'_>

Trait Implementations§

source§

impl Debug for Thread

source§

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

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

impl<'de, 'gc> DeserializeState<'de, DeSeed<'gc>> for Thread

source§

fn deserialize_state<__D>( __seed: &mut DeSeed<'gc>, __deserializer: __D ) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserializes Self using seed and the deserializer
source§

impl Drop for Thread

source§

fn drop(&mut self)

Executes the destructor for this type. Read more
source§

impl PartialEq for Thread

source§

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

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

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

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl PostDeserialize for Thread

source§

fn init<'gc>(parent: &Thread, ptr: OwnedGcRef<'gc, Self>) -> GcRef<'gc, Self>

source§

impl SerializeState<SeSeed> for Thread

source§

fn serialize_state<__S>( &self, __serializer: __S, __seed: &SeSeed ) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serializes self
source§

impl SerializeState<Thread> for JsonString

source§

fn serialize_state<__S>( &self, __serializer: __S, __seed: &Thread ) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serializes self
source§

impl SerializeState<Thread> for JsonValue

source§

fn serialize_state<S>( &self, serializer: S, vm: &Thread ) -> StdResult<S::Ok, S::Error>
where S: Serializer,

Serializes self
source§

impl<T> SerializeState<Thread> for Opaque<T, str>
where T: AsValueRef,

source§

fn serialize_state<S>( &self, serializer: S, _thread: &Thread ) -> StdResult<S::Ok, S::Error>
where S: Serializer,

Serializes self
source§

impl SerializeState<Thread> for Value

source§

fn serialize_state<__S>( &self, __serializer: __S, __seed: &Thread ) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serializes self
source§

impl ThreadInternal for Thread

source§

fn root_value<'vm, T>(&'vm self, value: Variants<'_>) -> RootedValue<T>
where T: VmRoot<'vm>,

Roots a value

source§

fn execute_io<'life0, 'life1, 'async_trait>( &'life0 self, value: Variants<'life1> ) -> Pin<Box<dyn Future<Output = Result<RootedValue<RootedThread>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Calls a module, allowed to to run IO expressions

source§

fn call_function<'b>( &'b self, cx: &mut Context<'_>, context: OwnedContext<'b>, args: VmIndex ) -> Poll<Result<Option<OwnedContext<'b>>>>

Calls a function on the stack. When this function is called it is expected that the function exists at stack.len() - args - 1 and that the arguments are of the correct type

source§

fn context(&self) -> OwnedContext<'_>

Locks and retrives this threads stack
source§

fn call_thunk<'life0, 'life1, 'async_trait>( &'life0 self, closure: &'life1 GcPtr<ClosureData> ) -> Pin<Box<dyn Future<Output = Result<RootedValue<RootedThread>>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Evaluates a zero argument function (a thunk)
source§

fn resume(&self, cx: &mut Context<'_>) -> Poll<Result<OwnedContext<'_>>>

source§

fn deep_clone_value( &self, owner: &Thread, value: &Value ) -> Result<RootedValue<&Thread>>

source§

fn can_share_values_with(&self, gc: &mut Gc, other: &Thread) -> bool

source§

fn call_thunk_top<'life0, 'life1, 'async_trait>( &'life0 self, closure: &'life1 GcPtr<ClosureData> ) -> Pin<Box<dyn Future<Output = Result<RootedValue<RootedThread>>> + Send + 'async_trait>>
where Self: Send + Sync + Sync + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source§

fn execute_io_top<'life0, 'life1, 'async_trait>( &'life0 self, value: Variants<'life1> ) -> Pin<Box<dyn Future<Output = Result<RootedValue<RootedThread>>> + Send + 'async_trait>>
where Self: Send + Sync + Sync + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

source§

impl Trace for Thread

source§

unsafe fn root(&mut self)

source§

unsafe fn unroot(&mut self)

source§

fn trace(&self, gc: &mut Gc)

source§

impl Userdata for Thread

source§

fn deep_clone<'gc>( &self, deep_cloner: &'gc mut Cloner<'_> ) -> Result<GcRef<'gc, Box<dyn Userdata>>>

source§

impl<'a> VmRoot<'a> for &'a Thread

source§

fn new_root(thread: &'a Thread) -> Self

source§

impl<'a> VmRootInternal for &'a Thread

source§

fn root_vm(&mut self)

source§

fn unroot_vm(&mut self)

source§

unsafe fn root_value_with_self(self, value: &Value) -> RootedValue<Self>
where Self: Sized,

Roots a value
source§

impl VmType for Thread

§

type Type = Thread

A version of Self which implements Any allowing a TypeId to be retrieved
source§

fn make_forall_type(vm: &Thread) -> ArcType

source§

fn make_type(vm: &Thread) -> ArcType

Creates an gluon type which maps to Self in rust
source§

const EXTRA_ARGS: VmIndex = 0u32

How many extra arguments a function returning this type requires. Used for abstract types which when used in return position should act like they still need more arguments before they are called

Auto Trait Implementations§

§

impl !RefUnwindSafe for Thread

§

impl Send for Thread

§

impl Sync for Thread

§

impl Unpin for Thread

§

impl !UnwindSafe for Thread

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<Id> AsId<Id> for Id
where Id: ?Sized,

source§

fn as_id(&self) -> &Id

source§

impl<'vm, T> AsyncPushable<'vm> for T
where T: Pushable<'vm>,

source§

fn async_push( self, context: &mut ActiveThread<'vm>, lock: Lock, _: u32 ) -> Poll<Result<(), Error>>

Pushes self to stack. If the call is successful a single element should have been added to the stack and Ok(()) should be returned. If the call is unsuccessful Status:Error should be returned and the stack should be left intact. Read more
source§

fn async_status_push( self, context: &mut ActiveThread<'vm>, lock: Lock, frame_index: VmIndex ) -> Status
where Self: Sized,

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
§

impl<Choices> CoproductSubsetter<CNil, HNil> for Choices

§

type Remainder = Choices

§

fn subset( self ) -> Result<CNil, <Choices as CoproductSubsetter<CNil, HNil>>::Remainder>

Extract a subset of the possible types in a coproduct (or get the remaining possibilities) Read more
§

impl<T> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
source§

impl<T> DowncastArc for T
where T: Downcast + Send + Sync,

source§

fn into_arc_any(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

§

impl<T> DowncastSync for T
where T: Any + Send + Sync,

§

fn into_any_arc(self: Arc<T>) -> Arc<dyn Any + Send + Sync>

Convert Arc<Trait> (where Trait: Downcast) to Arc<Any>. Arc<Any> can then be further downcast into Arc<ConcreteType> where ConcreteType implements Trait.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<D, T> FromPtr<D> for T

source§

unsafe fn make_ptr(_: D, ptr: *mut ()) -> *mut T

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.

§

impl<T, U, I> LiftInto<U, I> for T
where U: LiftFrom<T, I>,

§

fn lift_into(self) -> U

Performs the indexed conversion.
source§

impl<'vm, T> Pushable<'vm> for T
where T: Userdata,

source§

fn vm_push(self, context: &mut ActiveThread<'vm>) -> Result<(), Error>

Pushes self to stack. If the call is successful a single element should have been added to the stack and Ok(()) should be returned. If the call is unsuccessful Status:Error should be returned and the stack should be left intact
source§

fn status_push(self, context: &mut ActiveThread<'vm>) -> Status
where Self: Sized,

source§

unsafe fn marshal_unrooted(self, vm: &'vm Thread) -> Result<Value>
where Self: Sized,

source§

fn marshal<T>(self, vm: &'vm Thread) -> Result<RootedValue<T>>
where Self: Sized, T: VmRoot<'vm>,

§

impl<Source> Sculptor<HNil, HNil> for Source

§

type Remainder = Source

§

fn sculpt(self) -> (HNil, <Source as Sculptor<HNil, HNil>>::Remainder)

Consumes the current HList and returns an HList with the requested shape. Read more
source§

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

§

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>,

§

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.
§

impl<T> Any for T
where T: Any,

source§

impl<T> Captures<'_> for T