fdev 0.3.211

Freenet development tool
use freenet_stdlib::client_api::ClientRequest;

use crate::CommandReceiver;

use super::{ExecutorConfig, state::AppState};

pub(super) async fn wasm_runtime(
    _config: ExecutorConfig,
    mut command_receiver: CommandReceiver,
    mut app: AppState,
) -> anyhow::Result<()> {
    loop {
        let req = command_receiver.recv().await;
        let dc = execute_command(
            req.ok_or_else(|| anyhow::anyhow!("channel closed"))?,
            &mut app,
        )
        .await?;
        if dc {
            break;
        }
    }
    Ok(())
}

async fn execute_command(req: ClientRequest<'static>, app: &mut AppState) -> anyhow::Result<bool> {
    let node = &mut *app.local_node.lock().await;
    match req {
        ClientRequest::ContractOp(_) => {
            node.send(req).await?;
            Ok(false)
        }
        _ => {
            tracing::error!("op not supported");
            anyhow::bail!("op not support");
        }
    }
}