pub struct TransactionScriptsVerifier<DL>{ /* private fields */ }
Expand description
This struct leverages CKB VM to verify transaction inputs.
FlatBufferBuilder owned Vec<u8>
that grows as needed, in the
future, we might refactor this to share buffer to achieve zero-copy
Implementations§
Source§impl<DL> TransactionScriptsVerifier<DL>
impl<DL> TransactionScriptsVerifier<DL>
Sourcepub fn new(
rtx: Arc<ResolvedTransaction>,
data_loader: DL,
consensus: Arc<Consensus>,
tx_env: Arc<TxVerifyEnv>,
) -> TransactionScriptsVerifier<DL>
pub fn new( rtx: Arc<ResolvedTransaction>, data_loader: DL, consensus: Arc<Consensus>, tx_env: Arc<TxVerifyEnv>, ) -> TransactionScriptsVerifier<DL>
Creates a script verifier for the transaction.
§Params
rtx
- transaction which cell out points have been resolved.data_loader
- used to load cell data.
Sourcepub fn set_debug_printer<F: Fn(&Byte32, &str) + Sync + Send + 'static>(
&mut self,
func: F,
)
pub fn set_debug_printer<F: Fn(&Byte32, &str) + Sync + Send + 'static>( &mut self, func: F, )
Sets a callback to handle the debug syscall.
Script can print a message using the debug syscall.
The callback receives two parameters:
hash: &Byte32
: this is the script hash of currently running script group.message: &str
: message passed to the debug syscall.
Sourcepub fn extract_script(&self, script: &Script) -> Result<Bytes, ScriptError>
pub fn extract_script(&self, script: &Script) -> Result<Bytes, ScriptError>
Extracts actual script binary either in dep cells.
Sourcepub fn select_version(
&self,
script: &Script,
) -> Result<ScriptVersion, ScriptError>
pub fn select_version( &self, script: &Script, ) -> Result<ScriptVersion, ScriptError>
Returns the version of the machine based on the script and the consensus rules.
Sourcepub fn resumable_verify(
&self,
limit_cycles: Cycle,
) -> Result<VerifyResult, Error>
pub fn resumable_verify( &self, limit_cycles: Cycle, ) -> Result<VerifyResult, Error>
Performing a resumable verification on the transaction scripts.
§Params
limit_cycles
- Maximum allowed cycles to run the scripts. The verification quits early when the consumed cycles exceed the limit.
§Returns
It returns the total consumed cycles if verification completed, If verify is suspended, a state will returned.
Sourcepub async fn resumable_verify_with_signal(
&self,
limit_cycles: Cycle,
command_rx: &mut Receiver<ChunkCommand>,
) -> Result<Cycle, Error>
pub async fn resumable_verify_with_signal( &self, limit_cycles: Cycle, command_rx: &mut Receiver<ChunkCommand>, ) -> Result<Cycle, Error>
Performing a resumable verification on the transaction scripts with signal channel,
if Suspend
comes from command_rx
, the process will be hang up until Resume
comes,
otherwise, it will return until the verification is completed.
Sourcepub fn resume_from_snap(
&self,
snap: &TransactionSnapshot,
limit_cycles: Cycle,
) -> Result<VerifyResult, Error>
pub fn resume_from_snap( &self, snap: &TransactionSnapshot, limit_cycles: Cycle, ) -> Result<VerifyResult, Error>
Resuming an suspended verify from snapshot
§Params
-
snap
- Captured transaction verification snapshot. -
limit_cycles
- Maximum allowed cycles to run the scripts. The verification quits early when the consumed cycles exceed the limit.
§Returns
It returns the total consumed cycles if verification completed, If verify is suspended, a borrowed state will returned.
Sourcepub fn resume_from_state(
&self,
state: TransactionState,
limit_cycles: Cycle,
) -> Result<VerifyResult, Error>
pub fn resume_from_state( &self, state: TransactionState, limit_cycles: Cycle, ) -> Result<VerifyResult, Error>
Resuming an suspended verify from vm state
§Params
-
state
- vm state. -
limit_cycles
- Maximum allowed cycles to run the scripts. The verification quits early when the consumed cycles exceed the limit.
§Returns
It returns the total consumed cycles if verification completed, If verify is suspended, a borrowed state will returned.
Sourcepub fn complete(
&self,
snap: &TransactionSnapshot,
max_cycles: Cycle,
) -> Result<Cycle, Error>
pub fn complete( &self, snap: &TransactionSnapshot, max_cycles: Cycle, ) -> Result<Cycle, Error>
Complete an suspended verify
§Params
-
snap
- Captured transaction verification snapshot. -
max_cycles
- Maximum allowed cycles to run the scripts. The verification quits early when the consumed cycles exceed the limit.
§Returns
It returns the total consumed cycles on completed, Otherwise it returns the verification error.
Sourcepub fn verify_single(
&self,
script_group_type: ScriptGroupType,
script_hash: &Byte32,
max_cycles: Cycle,
) -> Result<Cycle, ScriptError>
pub fn verify_single( &self, script_group_type: ScriptGroupType, script_hash: &Byte32, max_cycles: Cycle, ) -> Result<Cycle, ScriptError>
Runs a single script in current transaction, while this is not useful for CKB itself, it can be very helpful when building a CKB debugger.
Sourcepub fn groups(&self) -> impl Iterator<Item = (&Byte32, &ScriptGroup)>
pub fn groups(&self) -> impl Iterator<Item = (&Byte32, &ScriptGroup)>
Returns all script groups.
Sourcepub fn groups_with_type(
&self,
) -> impl Iterator<Item = (ScriptGroupType, &Byte32, &ScriptGroup)>
pub fn groups_with_type( &self, ) -> impl Iterator<Item = (ScriptGroupType, &Byte32, &ScriptGroup)>
Returns all script groups with type.
Sourcepub fn find_script_group(
&self,
script_group_type: ScriptGroupType,
script_hash: &Byte32,
) -> Option<&ScriptGroup>
pub fn find_script_group( &self, script_group_type: ScriptGroupType, script_hash: &Byte32, ) -> Option<&ScriptGroup>
Finds the script group from cell deps.
Sourcepub fn generate_syscalls(
&self,
script_version: ScriptVersion,
script_group: &ScriptGroup,
snapshot2_context: Arc<Mutex<Snapshot2Context<DataPieceId, TxData<DL>>>>,
) -> Vec<Box<dyn Syscalls<CoreMachine>>>
pub fn generate_syscalls( &self, script_version: ScriptVersion, script_group: &ScriptGroup, snapshot2_context: Arc<Mutex<Snapshot2Context<DataPieceId, TxData<DL>>>>, ) -> Vec<Box<dyn Syscalls<CoreMachine>>>
Prepares syscalls.
Sourcepub fn create_scheduler(
&self,
script_group: &ScriptGroup,
) -> Result<Scheduler<DL>, ScriptError>
pub fn create_scheduler( &self, script_group: &ScriptGroup, ) -> Result<Scheduler<DL>, ScriptError>
Create a scheduler to manage virtual machine instances.
Sourcepub fn detailed_run(
&self,
script_group: &ScriptGroup,
max_cycles: Cycle,
) -> Result<(i8, Cycle), ScriptError>
pub fn detailed_run( &self, script_group: &ScriptGroup, max_cycles: Cycle, ) -> Result<(i8, Cycle), ScriptError>
Runs a single program, then returns the exit code together with the entire machine to the caller for more inspections.
Auto Trait Implementations§
impl<DL> Freeze for TransactionScriptsVerifier<DL>where
DL: Freeze,
impl<DL> !RefUnwindSafe for TransactionScriptsVerifier<DL>
impl<DL> Send for TransactionScriptsVerifier<DL>
impl<DL> Sync for TransactionScriptsVerifier<DL>
impl<DL> Unpin for TransactionScriptsVerifier<DL>where
DL: Unpin,
impl<DL> !UnwindSafe for TransactionScriptsVerifier<DL>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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