aurora-evm 2.2.1

Aurora Ethereum Virtual Machine implementation written in pure Rust
Documentation
//! Allows to listen to runtime events.

use crate::{Capture, ExitReason, Memory, Opcode, Stack, Trap};
use primitive_types::{H160, H256};

environmental::environmental!(listener: dyn EventListener + 'static);

pub trait EventListener {
    fn event(&mut self, event: Event<'_>);
}

#[derive(Debug, Copy, Clone)]
pub enum Event<'a> {
    Step {
        address: H160,
        opcode: Opcode,
        position: &'a Result<usize, ExitReason>,
        stack: &'a Stack,
        memory: &'a Memory,
    },
    StepResult {
        result: &'a Result<(), Capture<ExitReason, Trap>>,
        return_value: &'a [u8],
    },
    SLoad {
        address: H160,
        index: H256,
        value: H256,
    },
    SStore {
        address: H160,
        index: H256,
        value: H256,
    },
}

// Expose `listener::with` to allow flexible tracing.
pub fn with<F: FnOnce(&mut (dyn EventListener + 'static))>(f: F) {
    listener::with(f);
}

/// Run closure with provided listener.
pub fn using<R, F: FnOnce() -> R>(new: &mut (dyn EventListener + 'static), f: F) -> R {
    listener::using(new, f)
}