Struct wasmer_wasix::WasiEnv

source ·
pub struct WasiEnv {
Show 13 fields pub control_plane: WasiControlPlane, pub process: WasiProcess, pub thread: WasiThread, pub vfork: Option<WasiVFork>, pub stack_end: u64, pub stack_start: u64, pub poll_seed: u64, pub bin_factory: BinFactory, pub inner: Option<WasiInstanceHandles>, pub owned_handles: Vec<WasiThreadHandle>, pub runtime: Arc<dyn WasiRuntime + Send + Sync + 'static>, pub module_cache: Arc<ModuleCache>, pub capabilities: Capabilities, /* private fields */
}
Expand description

The environment provided to the WASI imports.

Fields§

§control_plane: WasiControlPlane§process: WasiProcess

Represents the process this environment is attached to

§thread: WasiThread

Represents the thread this environment is attached to

§vfork: Option<WasiVFork>

Represents a fork of the process that is currently in play

§stack_end: u64

End of the stack memory that is allocated for this thread

§stack_start: u64

Start of the stack memory that is allocated for this thread

§poll_seed: u64

Seed used to rotate around the events returned by poll_oneoff

§bin_factory: BinFactory

Binary factory attached to this environment

§inner: Option<WasiInstanceHandles>

Inner functions and references that are loaded before the environment starts

§owned_handles: Vec<WasiThreadHandle>

List of the handles that are owned by this context (this can be used to ensure that threads own themselves or others)

§runtime: Arc<dyn WasiRuntime + Send + Sync + 'static>

Implementation of the WASI runtime.

§module_cache: Arc<ModuleCache>§capabilities: Capabilities

Implementations§

source§

impl WasiEnv

source

pub fn builder(program_name: impl Into<String>) -> WasiEnvBuilder

Construct a new WasiEnvBuilder that allows customizing an environment.

source

pub fn fork(&self) -> Result<(Self, WasiThreadHandle), ControlPlaneError>

Forking the WasiState is used when either fork or vfork is called

source

pub fn pid(&self) -> WasiProcessId

source

pub fn tid(&self) -> WasiThreadId

source

pub fn runtime(&self) -> &dyn WasiRuntime

Returns a copy of the current runtime implementation for this environment

source

pub fn tasks(&self) -> &Arc<dyn VirtualTaskManager>

Returns a copy of the current tasks implementation for this environment

source

pub fn fs_root(&self) -> &WasiFsRoot

source

pub fn set_runtime<R>(&mut self, runtime: R)where R: WasiRuntime + Send + Sync + 'static,

Overrides the runtime implementation for this environment

source

pub fn active_threads(&self) -> u32

Returns the number of active threads

source

pub fn process_signals_and_exit( ctx: &mut FunctionEnvMut<'_, Self> ) -> Result<Result<bool, Errno>, WasiError>

Porcesses any signals that are batched up or any forced exit codes

source

pub fn process_signals( ctx: &mut FunctionEnvMut<'_, Self> ) -> Result<Result<bool, Errno>, WasiError>

Porcesses any signals that are batched up

source

pub fn process_signals_internal( ctx: &mut FunctionEnvMut<'_, Self>, signals: Vec<Signal> ) -> Result<bool, WasiError>

source

pub fn should_exit(&self) -> Option<ExitCode>

Returns an exit code if the thread or process has been forced to exit

source

pub fn net(&self) -> &DynVirtualNetworking

Accesses the virtual networking implementation

source

pub fn inner(&self) -> &WasiInstanceHandles

Providers safe access to the initialized part of WasiEnv (it must be initialized before it can be used)

source

pub fn inner_mut(&mut self) -> &mut WasiInstanceHandles

Providers safe access to the initialized part of WasiEnv (it must be initialized before it can be used)

source

pub fn memory_view<'a>(&'a self, store: &'a impl AsStoreRef) -> MemoryView<'a>

Providers safe access to the memory (it must be initialized before it can be used)

source

pub fn memory(&self) -> &Memory

Providers safe access to the memory (it must be initialized before it can be used)

source

pub fn memory_clone(&self) -> Memory

Copy the lazy reference so that when it’s initialized during the export phase, all the other references get a copy of it

source

pub fn stdout( &self ) -> Result<Option<Box<dyn VirtualFile + Send + Sync + 'static>>, FsError>

Get the VirtualFile object at stdout

source

pub fn stderr( &self ) -> Result<Option<Box<dyn VirtualFile + Send + Sync + 'static>>, FsError>

Get the VirtualFile object at stderr

source

pub fn stdin( &self ) -> Result<Option<Box<dyn VirtualFile + Send + Sync + 'static>>, FsError>

Get the VirtualFile object at stdin

source

pub fn std_dev_get( &self, fd: WasiFd ) -> Result<Option<Box<dyn VirtualFile + Send + Sync + 'static>>, FsError>

Internal helper function to get a standard device handle. Expects one of __WASI_STDIN_FILENO, __WASI_STDOUT_FILENO, __WASI_STDERR_FILENO.

source

pub fn uses<I>(&self, uses: I) -> Result<(), WasiStateCreationError>where I: IntoIterator<Item = String>,

source

pub fn map_commands( &self, map_commands: HashMap<String, PathBuf> ) -> Result<(), WasiStateCreationError>

source

pub fn blocking_cleanup(&self, exit_code: Option<ExitCode>)

Cleans up all the open files (if this is the main thread)

source

pub async fn cleanup(&self, exit_code: Option<ExitCode>)

Cleans up all the open files (if this is the main thread)

Trait Implementations§

source§

impl Debug for WasiEnv

source§

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

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<T> ArchivePointee for T

§

type ArchivedMetadata = ()

The archived version of the pointer metadata for this type.
§

fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata

Converts some archived metadata to the pointer metadata for itself.
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
§

impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,

§

fn deserialize( &self, deserializer: &mut D ) -> Result<With<T, W>, <D as Fallible>::Error>

Deserializes using the given deserializer
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for Twhere 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> LayoutRaw for T

§

fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>

Gets the layout of the type.
§

impl<T> Pointee for T

§

type Metadata = ()

The type for metadata in pointers and references to Self.
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.
source§

impl<T> Upcastable for Twhere T: Any + Debug + 'static,

source§

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

source§

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

source§

fn upcast_any_box(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>

§

impl<T> Upcastable for Twhere T: Any + Send + Sync + 'static,

§

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

upcast ref
§

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

upcast mut ref
§

fn upcast_any_box(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>

upcast boxed dyn
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more