rune/runtime/
runtime_context.rs
1use core::fmt;
2
3use ::rust_alloc::sync::Arc;
4
5use crate as rune;
6use crate::alloc::prelude::*;
7use crate::hash;
8use crate::runtime::{ConstConstruct, ConstValue, InstAddress, Memory, Output, VmResult};
9use crate::Hash;
10
11pub(crate) type FunctionHandler =
13 dyn Fn(&mut dyn Memory, InstAddress, usize, Output) -> VmResult<()> + Send + Sync;
14
15#[derive(Default, TryClone)]
22pub struct RuntimeContext {
23 functions: hash::Map<Arc<FunctionHandler>>,
25 constants: hash::Map<ConstValue>,
27 construct: hash::Map<Arc<dyn ConstConstruct>>,
29}
30
31assert_impl!(RuntimeContext: Send + Sync);
32
33impl RuntimeContext {
34 pub(crate) fn new(
35 functions: hash::Map<Arc<FunctionHandler>>,
36 constants: hash::Map<ConstValue>,
37 construct: hash::Map<Arc<dyn ConstConstruct>>,
38 ) -> Self {
39 Self {
40 functions,
41 constants,
42 construct,
43 }
44 }
45
46 #[inline]
48 pub fn function(&self, hash: &Hash) -> Option<&Arc<FunctionHandler>> {
49 self.functions.get(hash)
50 }
51
52 #[inline]
54 pub fn constant(&self, hash: &Hash) -> Option<&ConstValue> {
55 self.constants.get(hash)
56 }
57
58 #[inline]
60 pub(crate) fn construct(&self, hash: &Hash) -> Option<&dyn ConstConstruct> {
61 Some(&**self.construct.get(hash)?)
62 }
63}
64
65impl fmt::Debug for RuntimeContext {
66 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
67 write!(f, "RuntimeContext")
68 }
69}
70
71#[cfg(test)]
72static_assertions::assert_impl_all!(RuntimeContext: Send, Sync);