Struct VirtualMachine

Source
pub struct VirtualMachine {
Show 13 fields pub builtins: PyRef<PyModule>, pub sys_module: PyRef<PyModule>, pub ctx: PyRc<Context>, pub frames: RefCell<Vec<FrameRef>>, pub wasm_id: Option<String>, pub import_func: PyObjectRef, pub profile_func: RefCell<PyObjectRef>, pub trace_func: RefCell<PyObjectRef>, pub use_tracing: Cell<bool>, pub recursion_limit: Cell<usize>, pub repr_guards: RefCell<HashSet<usize>>, pub state: PyRc<PyGlobalState>, pub initialized: bool, /* private fields */
}
Expand description

Top level container of a python virtual machine. In theory you could create more instances of this struct and have them operate fully isolated.

To construct this, please refer to the Interpreter

Fields§

§builtins: PyRef<PyModule>§sys_module: PyRef<PyModule>§ctx: PyRc<Context>§frames: RefCell<Vec<FrameRef>>§wasm_id: Option<String>§import_func: PyObjectRef§profile_func: RefCell<PyObjectRef>§trace_func: RefCell<PyObjectRef>§use_tracing: Cell<bool>§recursion_limit: Cell<usize>§repr_guards: RefCell<HashSet<usize>>§state: PyRc<PyGlobalState>§initialized: bool

Implementations§

Source§

impl VirtualMachine

Source

pub fn print_exception(&self, exc: PyBaseExceptionRef)

Print exception chain by calling sys.excepthook

Source

pub fn write_exception<W: Write>( &self, output: &mut W, exc: &PyBaseExceptionRef, ) -> Result<(), W::Error>

Source

pub fn write_exception_inner<W: Write>( &self, output: &mut W, exc: &PyBaseExceptionRef, ) -> Result<(), W::Error>

Print exception with traceback

Source

pub fn split_exception( &self, exc: PyBaseExceptionRef, ) -> (PyObjectRef, PyObjectRef, PyObjectRef)

Source

pub fn normalize_exception( &self, exc_type: PyObjectRef, exc_val: PyObjectRef, exc_tb: PyObjectRef, ) -> PyResult<PyBaseExceptionRef>

Similar to PyErr_NormalizeException in CPython

Source

pub fn invoke_exception( &self, cls: PyTypeRef, args: Vec<PyObjectRef>, ) -> PyResult<PyBaseExceptionRef>

Source§

impl VirtualMachine

Source

pub fn compile( &self, source: &str, mode: Mode, source_path: String, ) -> Result<PyRef<PyCode>, CompileError>

Source

pub fn compile_with_opts( &self, source: &str, mode: Mode, source_path: String, opts: CompileOpts, ) -> Result<PyRef<PyCode>, CompileError>

Source

pub fn run_script(&self, scope: Scope, path: &str) -> PyResult<()>

Source

pub fn run_code_string( &self, scope: Scope, source: &str, source_path: String, ) -> PyResult

Source

pub fn run_block_expr(&self, scope: Scope, source: &str) -> PyResult

Source§

impl VirtualMachine

Collection of object creation helpers

Source

pub fn new_pyobj(&self, value: impl ToPyObject) -> PyObjectRef

Create a new python object

Source

pub fn new_tuple(&self, value: impl IntoPyTuple) -> PyTupleRef

Source

pub fn new_module( &self, name: &str, dict: PyDictRef, doc: Option<PyStrRef>, ) -> PyRef<PyModule>

Source

pub fn new_scope_with_builtins(&self) -> Scope

Source

pub fn new_function<F, FKind>( &self, name: &'static str, f: F, ) -> PyRef<PyNativeFunction>
where F: IntoPyNativeFn<FKind>,

Source

pub fn new_method<F, FKind>( &self, name: &'static str, class: &'static Py<PyType>, f: F, ) -> PyRef<PyMethodDescriptor>
where F: IntoPyNativeFn<FKind>,

Source

pub fn new_exception( &self, exc_type: PyTypeRef, args: Vec<PyObjectRef>, ) -> PyBaseExceptionRef

Instantiate an exception with arguments. This function should only be used with builtin exception types; if a user-defined exception type is passed in, it may not be fully initialized; try using vm.invoke_exception() or exceptions::ExceptionCtor instead.

Source

pub fn new_exception_empty(&self, exc_type: PyTypeRef) -> PyBaseExceptionRef

Instantiate an exception with no arguments. This function should only be used with builtin exception types; if a user-defined exception type is passed in, it may not be fully initialized; try using vm.invoke_exception() or exceptions::ExceptionCtor instead.

Source

pub fn new_exception_msg( &self, exc_type: PyTypeRef, msg: String, ) -> PyBaseExceptionRef

Instantiate an exception with msg as the only argument. This function should only be used with builtin exception types; if a user-defined exception type is passed in, it may not be fully initialized; try using vm.invoke_exception() or exceptions::ExceptionCtor instead.

Source

pub fn new_exception_msg_dict( &self, exc_type: PyTypeRef, msg: String, dict: PyDictRef, ) -> PyBaseExceptionRef

Instantiate an exception with msg as the only argument and dict for object This function should only be used with builtin exception types; if a user-defined exception type is passed in, it may not be fully initialized; try using vm.invoke_exception() or exceptions::ExceptionCtor instead.

Source

pub fn new_lookup_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_attribute_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_type_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_name_error(&self, msg: String, name: PyStrRef) -> PyBaseExceptionRef

Source

pub fn new_unsupported_unary_error( &self, a: &PyObject, op: &str, ) -> PyBaseExceptionRef

Source

pub fn new_unsupported_binop_error( &self, a: &PyObject, b: &PyObject, op: &str, ) -> PyBaseExceptionRef

Source

pub fn new_unsupported_ternop_error( &self, a: &PyObject, b: &PyObject, c: &PyObject, op: &str, ) -> PyBaseExceptionRef

Source

pub fn new_os_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_errno_error(&self, errno: i32, msg: String) -> PyBaseExceptionRef

Source

pub fn new_system_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_unicode_decode_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_unicode_encode_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_value_error(&self, msg: String) -> PyBaseExceptionRef

Create a new python ValueError object. Useful for raising errors from python functions implemented in rust.

Source

pub fn new_buffer_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_key_error(&self, obj: PyObjectRef) -> PyBaseExceptionRef

Source

pub fn new_index_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_not_implemented_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_recursion_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_zero_division_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_overflow_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_syntax_error( &self, error: &CompileError, source: Option<&str>, ) -> PyBaseExceptionRef

Source

pub fn new_import_error( &self, msg: String, name: PyStrRef, ) -> PyBaseExceptionRef

Source

pub fn new_runtime_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_memory_error(&self, msg: String) -> PyBaseExceptionRef

Source

pub fn new_stop_iteration( &self, value: Option<PyObjectRef>, ) -> PyBaseExceptionRef

Source§

impl VirtualMachine

PyObject support

Source

pub fn unwrap_pyresult<T>(&self, result: PyResult<T>) -> T

Source

pub fn expect_pyresult<T>(&self, result: PyResult<T>, msg: &str) -> T

Source

pub fn is_none(&self, obj: &PyObject) -> bool

Test whether a python object is None.

Source

pub fn option_if_none(&self, obj: PyObjectRef) -> Option<PyObjectRef>

Source

pub fn unwrap_or_none(&self, obj: Option<PyObjectRef>) -> PyObjectRef

Source

pub fn call_get_descriptor_specific( &self, descr: &PyObject, obj: Option<PyObjectRef>, cls: Option<PyObjectRef>, ) -> Option<PyResult>

Source

pub fn call_get_descriptor( &self, descr: &PyObject, obj: PyObjectRef, ) -> Option<PyResult>

Source

pub fn call_if_get_descriptor( &self, attr: &PyObject, obj: PyObjectRef, ) -> PyResult

Source

pub fn call_method<T>( &self, obj: &PyObject, method_name: &str, args: T, ) -> PyResult
where T: IntoFuncArgs,

Source

pub fn dir(&self, obj: Option<PyObjectRef>) -> PyResult<PyList>

Source

pub fn print(&self, args: impl IntoFuncArgs) -> PyResult<()>

Same as builtins.print in Python. A convenience function to provide a simple way to print objects for debug purpose.

Source

pub fn invoke(&self, obj: &impl AsObject, args: impl IntoFuncArgs) -> PyResult

👎Deprecated: in favor of obj.call(args, vm)
Source§

impl VirtualMachine

Collection of operators

Source

pub fn bool_eq(&self, a: &PyObject, b: &PyObject) -> PyResult<bool>

Source

pub fn identical_or_equal(&self, a: &PyObject, b: &PyObject) -> PyResult<bool>

Source

pub fn bool_seq_lt(&self, a: &PyObject, b: &PyObject) -> PyResult<Option<bool>>

Source

pub fn bool_seq_gt(&self, a: &PyObject, b: &PyObject) -> PyResult<Option<bool>>

Source

pub fn length_hint_opt(&self, iter: PyObjectRef) -> PyResult<Option<usize>>

Source

pub fn check_repeat_or_overflow_error( &self, length: usize, n: isize, ) -> PyResult<usize>

Checks that the multiplication is able to be performed. On Ok returns the index as a usize for sequences to be able to use immediately.

Source

pub fn binary_op1( &self, a: &PyObject, b: &PyObject, op_slot: PyNumberBinaryOp, ) -> PyResult

Calling scheme used for binary operations:

Order operations are tried until either a valid result or error: b.rop(b,a)[*], a.op(a,b), b.rop(b,a)

[*] only when Py_TYPE(a) != Py_TYPE(b) && Py_TYPE(b) is a subclass of Py_TYPE(a)

Source

pub fn binary_op( &self, a: &PyObject, b: &PyObject, op_slot: PyNumberBinaryOp, op: &str, ) -> PyResult

Source

pub fn _sub(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _mod(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _divmod(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _lshift(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _rshift(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _and(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _xor(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _or(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _floordiv(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _truediv(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _matmul(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _isub(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _imod(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _ilshift(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _irshift(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _iand(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _ixor(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _ior(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _ifloordiv(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _itruediv(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _imatmul(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _pow(&self, a: &PyObject, b: &PyObject, c: &PyObject) -> PyResult

Source

pub fn _ipow(&self, a: &PyObject, b: &PyObject, c: &PyObject) -> PyResult

Source

pub fn _add(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _iadd(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _mul(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _imul(&self, a: &PyObject, b: &PyObject) -> PyResult

Source

pub fn _abs(&self, a: &PyObject) -> PyResult<PyObjectRef>

Source

pub fn _pos(&self, a: &PyObject) -> PyResult

Source

pub fn _neg(&self, a: &PyObject) -> PyResult

Source

pub fn _invert(&self, a: &PyObject) -> PyResult

Source

pub fn format( &self, obj: &PyObject, format_spec: PyStrRef, ) -> PyResult<PyStrRef>

Source

pub fn _contains( &self, haystack: &PyObject, needle: &PyObject, ) -> PyResult<bool>

Source§

impl VirtualMachine

Source

pub fn add_native_module<S>(&mut self, name: S, module: StdlibInitFunc)
where S: Into<Cow<'static, str>>,

Can only be used in the initialization closure passed to Interpreter::with_init

Source

pub fn add_native_modules<I>(&mut self, iter: I)
where I: IntoIterator<Item = (Cow<'static, str>, StdlibInitFunc)>,

Source

pub fn add_frozen<I>(&mut self, frozen: I)
where I: IntoIterator<Item = (&'static str, FrozenModule)>,

Can only be used in the initialization closure passed to Interpreter::with_init

Source

pub fn set_user_signal_channel(&mut self, signal_rx: UserSignalReceiver)

Set the custom signal channel for the interpreter

Source

pub fn run_code_obj(&self, code: PyRef<PyCode>, scope: Scope) -> PyResult

Source

pub fn run_unraisable( &self, e: PyBaseExceptionRef, msg: Option<String>, object: PyObjectRef, )

Source

pub fn run_frame(&self, frame: FrameRef) -> PyResult

Source

pub fn current_recursion_depth(&self) -> usize

Source

pub fn with_recursion<R, F: FnOnce() -> PyResult<R>>( &self, _where: &str, f: F, ) -> PyResult<R>

Used to run the body of a (possibly) recursive function. It will raise a RecursionError if recursive functions are nested far too many times, preventing a stack overflow.

Source

pub fn with_frame<R, F: FnOnce(FrameRef) -> PyResult<R>>( &self, frame: FrameRef, f: F, ) -> PyResult<R>

Source

pub fn compile_opts(&self) -> CompileOpts

Returns a basic CompileOpts instance with options accurate to the vm. Used as the CompileOpts for vm.compile().

Source

pub fn current_frame(&self) -> Option<Ref<'_, FrameRef>>

Source

pub fn current_locals(&self) -> PyResult<ArgMapping>

Source

pub fn current_globals(&self) -> Ref<'_, PyDictRef>

Source

pub fn try_class( &self, module: &'static str, class: &'static str, ) -> PyResult<PyTypeRef>

Source

pub fn class(&self, module: &'static str, class: &'static str) -> PyTypeRef

Source

pub fn import<'a>( &self, module_name: impl AsPyStr<'a>, level: usize, ) -> PyResult

Call Python import function without from_list. Roughly equivalent to import module_name or import top.submodule.

See also [import_from] for more advanced import. See also rustpython_vm::import::import_source and other primitive import functions.

Source

pub fn import_from<'a>( &self, module_name: impl AsPyStr<'a>, from_list: PyTupleTyped<PyStrRef>, level: usize, ) -> PyResult

Call Python import function caller with from_list. Roughly equivalent to from module_name import item1, item2 or from top.submodule import item1, item2

Source

pub fn extract_elements_with<T, F>( &self, value: &PyObject, func: F, ) -> PyResult<Vec<T>>
where F: Fn(PyObjectRef) -> PyResult<T>,

Source

pub fn map_iterable_object<F, R>( &self, obj: &PyObject, f: F, ) -> PyResult<PyResult<Vec<R>>>
where F: FnMut(PyObjectRef) -> PyResult<R>,

Source

pub fn get_attribute_opt<'a>( &self, obj: PyObjectRef, attr_name: impl AsPyStr<'a>, ) -> PyResult<Option<PyObjectRef>>

Source

pub fn set_attribute_error_context( &self, exc: &PyBaseExceptionRef, obj: PyObjectRef, name: PyStrRef, )

Source

pub fn get_method_or_type_error<F>( &self, obj: PyObjectRef, method_name: &'static PyStrInterned, err_msg: F, ) -> PyResult
where F: FnOnce() -> String,

Source

pub fn check_signals(&self) -> PyResult<()>

Checks for triggered signals and calls the appropriate handlers. A no-op on platforms where signals are not supported.

Source

pub fn handle_exit_exception(&self, exc: PyBaseExceptionRef) -> u8

Source

pub fn insert_sys_path(&self, obj: PyObjectRef) -> PyResult<()>

Source

pub fn run_module(&self, module: &str) -> PyResult<()>

Trait Implementations§

Source§

impl<'a> AsBag for &'a VirtualMachine

Source§

type Bag = PyObjBag<'a>

Source§

fn as_bag(self) -> PyObjBag<'a>

Source§

impl AsRef<Context> for VirtualMachine

Source§

fn as_ref(&self) -> &Context

Converts this type into a shared reference of the (usually inferred) input type.

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, U> ExactFrom<T> for U
where U: TryFrom<T>,

Source§

fn exact_from(value: T) -> U

Source§

impl<T, U> ExactInto<U> for T
where U: ExactFrom<T>,

Source§

fn exact_into(self) -> U

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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T, U> OverflowingInto<U> for T
where U: OverflowingFrom<T>,

Source§

impl<T, U> RoundingInto<U> for T
where U: RoundingFrom<T>,

Source§

impl<T, U> SaturatingInto<U> for T
where U: SaturatingFrom<T>,

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

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

Source§

fn vzip(self) -> V

Source§

impl<T, U> WrappingInto<U> for T
where U: WrappingFrom<T>,

Source§

fn wrapping_into(self) -> U

Source§

impl<T> PyThreadingConstraint for T

Morty Proxy This is a proxified and sanitized view of the page, visit original site.