use super::{
ExecutableTransaction,
InitialBalances,
Interpreter,
RuntimeBalances,
};
use crate::{
checked_transaction::{
Checked,
IntoChecked,
},
consts::*,
context::Context,
error::{
Bug,
BugId,
InterpreterError,
},
storage::InterpreterStorage,
};
use fuel_asm::RegId;
use fuel_types::Word;
use crate::{
error::BugVariant::GlobalGasUnderflow,
interpreter::CheckedMetadata,
};
use std::io;
impl<S, Tx> Interpreter<S, Tx>
where
Tx: ExecutableTransaction,
{
fn init_inner(
&mut self,
tx: Tx,
initial_balances: InitialBalances,
gas_limit: Word,
) -> Result<(), InterpreterError> {
self.tx = tx;
self.initial_balances = initial_balances.clone();
self.frames.clear();
self.receipts.clear();
self.registers.iter_mut().for_each(|r| *r = 0);
self.registers[RegId::ONE] = 1;
self.registers[RegId::SSP] = 0;
self.registers[RegId::HP] = VM_MAX_RAM;
self.push_stack(self.transaction().id(&self.params.chain_id).as_ref())
.map_err(|e| io::Error::new(io::ErrorKind::Other, e))?;
RuntimeBalances::try_from(initial_balances)?.to_vm(self);
let tx_size = self.transaction().serialized_size() as Word;
self.set_gas(gas_limit);
self.push_stack(&tx_size.to_be_bytes())
.map_err(|e| io::Error::new(io::ErrorKind::Other, e))?;
let tx_bytes = self.tx.to_bytes();
self.push_stack(tx_bytes.as_slice())
.map_err(|e| io::Error::new(io::ErrorKind::Other, e))?;
self.registers[RegId::SP] = self.registers[RegId::SSP];
Ok(())
}
}
impl<S, Tx> Interpreter<S, Tx>
where
Tx: ExecutableTransaction,
{
pub fn init_predicate(
&mut self,
context: Context,
mut tx: Tx,
balances: InitialBalances,
gas_limit: Word,
) -> Result<(), InterpreterError> {
self.context = context;
tx.prepare_init_predicate();
self.init_inner(tx, balances, gas_limit)
}
}
impl<S, Tx> Interpreter<S, Tx>
where
S: InterpreterStorage,
Tx: ExecutableTransaction,
<Tx as IntoChecked>::Metadata: CheckedMetadata,
{
pub fn init_script(&mut self, checked: Checked<Tx>) -> Result<(), InterpreterError> {
let block_height = self
.storage
.block_height()
.map_err(InterpreterError::from_io)?;
self.context = Context::Script { block_height };
let gas_used_by_predicates = checked.metadata().gas_used_by_predicates();
let (mut tx, metadata): (Tx, Tx::Metadata) = checked.into();
tx.prepare_init_script();
let gas_limit = tx
.limit()
.checked_sub(gas_used_by_predicates)
.ok_or_else(|| Bug::new(BugId::ID003, GlobalGasUnderflow))?;
self.init_inner(tx, metadata.balances(), gas_limit)
}
}