multiversx_chain_vm/vm_hooks/vh_impl/
vh_static_api.rsuse std::sync::{Mutex, MutexGuard};
use multiversx_chain_core::types::ReturnCode;
use crate::{
tx_mock::{BackTransfers, TxFunctionName, TxInput, TxLog, TxManagedTypes, TxResult},
types::{VMAddress, VMCodeMetadata},
vm_hooks::{
VMHooksBigFloat, VMHooksBigInt, VMHooksBlockchain, VMHooksCallValue, VMHooksCrypto,
VMHooksEndpointArgument, VMHooksEndpointFinish, VMHooksError, VMHooksErrorManaged,
VMHooksHandler, VMHooksHandlerSource, VMHooksLog, VMHooksManagedBuffer, VMHooksManagedMap,
VMHooksManagedTypes, VMHooksSend, VMHooksStorageRead, VMHooksStorageWrite,
},
world_mock::{AccountData, BlockInfo},
};
#[derive(Debug, Default)]
pub struct StaticApiVMHooksHandler(Mutex<TxManagedTypes>);
impl StaticApiVMHooksHandler {
pub const CURRENT_ADDRESS_PLACEHOLDER: VMAddress =
VMAddress::new(*b"STATIC_API_CURRENT_ADDRESS______");
}
impl VMHooksHandlerSource for StaticApiVMHooksHandler {
fn m_types_lock(&self) -> MutexGuard<TxManagedTypes> {
self.0.lock().unwrap()
}
fn halt_with_error(&self, status: ReturnCode, message: &str) -> ! {
panic!("VM error occured, status: {status}, message: {message}")
}
fn input_ref(&self) -> &TxInput {
panic!("cannot access tx inputs in the StaticApi")
}
fn current_address(&self) -> &VMAddress {
&Self::CURRENT_ADDRESS_PLACEHOLDER
}
fn random_next_bytes(&self, _length: usize) -> Vec<u8> {
panic!("cannot access the random bytes generator in the StaticApi")
}
fn result_lock(&self) -> MutexGuard<TxResult> {
panic!("cannot access tx results in the StaticApi")
}
fn push_tx_log(&self, _tx_log: TxLog) {
panic!("cannot log events in the StaticApi")
}
fn storage_read_any_address(&self, _address: &VMAddress, _key: &[u8]) -> Vec<u8> {
panic!("cannot access the storage in the StaticApi")
}
fn storage_write(&self, _key: &[u8], _value: &[u8]) {
panic!("cannot access the storage in the StaticApi")
}
fn get_previous_block_info(&self) -> &BlockInfo {
panic!("cannot access the block info in the StaticApi")
}
fn get_current_block_info(&self) -> &BlockInfo {
panic!("cannot access the block info in the StaticApi")
}
fn back_transfers_lock(&self) -> MutexGuard<BackTransfers> {
panic!("cannot access the back transfers in the StaticApi")
}
fn account_data(&self, _address: &VMAddress) -> Option<AccountData> {
panic!("cannot access account data in the StaticApi")
}
fn account_code(&self, _address: &VMAddress) -> Vec<u8> {
panic!("cannot access account data in the StaticApi")
}
fn perform_async_call(
&self,
_to: VMAddress,
_egld_value: num_bigint::BigUint,
_func_name: TxFunctionName,
_args: Vec<Vec<u8>>,
) -> ! {
panic!("cannot launch contract calls in the StaticApi")
}
fn perform_execute_on_dest_context(
&self,
_to: VMAddress,
_egld_value: num_bigint::BigUint,
_func_name: TxFunctionName,
_args: Vec<Vec<u8>>,
) -> Vec<Vec<u8>> {
panic!("cannot launch contract calls in the StaticApi")
}
fn perform_deploy(
&self,
_egld_value: num_bigint::BigUint,
_contract_code: Vec<u8>,
_code_metadata: VMCodeMetadata,
_args: Vec<Vec<u8>>,
) -> (VMAddress, Vec<Vec<u8>>) {
panic!("cannot launch contract calls in the StaticApi")
}
fn perform_transfer_execute(
&self,
_to: VMAddress,
_egld_value: num_bigint::BigUint,
_func_name: TxFunctionName,
_arguments: Vec<Vec<u8>>,
) {
panic!("cannot launch contract calls in the StaticApi")
}
}
impl VMHooksBigInt for StaticApiVMHooksHandler {}
impl VMHooksManagedBuffer for StaticApiVMHooksHandler {}
impl VMHooksManagedMap for StaticApiVMHooksHandler {}
impl VMHooksBigFloat for StaticApiVMHooksHandler {}
impl VMHooksManagedTypes for StaticApiVMHooksHandler {}
impl VMHooksCallValue for StaticApiVMHooksHandler {}
impl VMHooksEndpointArgument for StaticApiVMHooksHandler {}
impl VMHooksEndpointFinish for StaticApiVMHooksHandler {}
impl VMHooksError for StaticApiVMHooksHandler {}
impl VMHooksErrorManaged for StaticApiVMHooksHandler {}
impl VMHooksStorageRead for StaticApiVMHooksHandler {}
impl VMHooksStorageWrite for StaticApiVMHooksHandler {}
impl VMHooksCrypto for StaticApiVMHooksHandler {}
impl VMHooksBlockchain for StaticApiVMHooksHandler {}
impl VMHooksLog for StaticApiVMHooksHandler {}
impl VMHooksSend for StaticApiVMHooksHandler {}
impl VMHooksHandler for StaticApiVMHooksHandler {}