multiversx_sc_scenario/api/impl_vh/
static_api.rsuse multiversx_chain_vm::{
executor::VMHooks,
vm_hooks::{StaticApiVMHooksHandler, VMHooksDispatcher, VMHooksHandler},
};
use multiversx_sc::{api::RawHandle, types::Address};
use std::sync::Mutex;
use crate::debug_executor::StaticVarData;
use super::{VMHooksApi, VMHooksApiBackend};
fn new_static_api_vh() -> VMHooksDispatcher {
let vh_handler: Box<dyn VMHooksHandler> = Box::<StaticApiVMHooksHandler>::default();
VMHooksDispatcher::new(vh_handler)
}
thread_local! {
static STATIC_API_VH_CELL: Mutex<VMHooksDispatcher> = Mutex::new(new_static_api_vh());
static STATIC_API_STATIC_CELL: Mutex<StaticVarData> = Mutex::new(StaticVarData::default());
}
#[derive(Clone)]
pub struct StaticApiBackend;
impl VMHooksApiBackend for StaticApiBackend {
type HandleType = RawHandle;
fn with_vm_hooks<R, F>(f: F) -> R
where
F: FnOnce(&dyn VMHooks) -> R,
{
STATIC_API_VH_CELL.with(|vh_mutex| {
let vh = vh_mutex.lock().unwrap();
f(&*vh)
})
}
fn with_static_data<R, F>(f: F) -> R
where
F: FnOnce(&StaticVarData) -> R,
{
STATIC_API_STATIC_CELL.with(|data_mutex| {
let data = data_mutex.lock().unwrap();
f(&data)
})
}
}
pub type StaticApi = VMHooksApi<StaticApiBackend>;
impl StaticApi {
pub fn is_current_address_placeholder(address: &Address) -> bool {
address == &StaticApiVMHooksHandler::CURRENT_ADDRESS_PLACEHOLDER
}
pub fn reset() {
STATIC_API_VH_CELL.with(|vh_mutex| {
let mut vh = vh_mutex.lock().unwrap();
*vh = new_static_api_vh()
});
STATIC_API_STATIC_CELL.with(|data_mutex| {
let mut data = data_mutex.lock().unwrap();
*data = StaticVarData::default()
})
}
}
impl std::fmt::Debug for StaticApi {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
f.debug_struct("StaticApi").finish()
}
}