wasmer-wasix 0.702.0

WASI and WASIX implementation library for Wasmer WebAssembly runtime
use wasmer_wasix_types::wasi::{Addressfamily, SockProto, Socktype};

use super::*;

impl JournalEffector {
    pub fn save_sock_open(
        ctx: &mut FunctionEnvMut<'_, WasiEnv>,
        af: Addressfamily,
        ty: Socktype,
        pt: SockProto,
        fd: Fd,
    ) -> anyhow::Result<()> {
        Self::save_event(ctx, JournalEntry::SocketOpenV1 { af, ty, pt, fd })
    }

    pub fn apply_sock_open(
        ctx: &mut FunctionEnvMut<'_, WasiEnv>,
        af: Addressfamily,
        ty: Socktype,
        pt: SockProto,
        fd: Fd,
    ) -> anyhow::Result<()> {
        crate::syscalls::sock_open_internal(ctx, af, ty, pt, Some(fd))
            .map_err(|err| {
                anyhow::format_err!(
                    "journal restore error: failed to open socket (af={af:?}, ty={ty:?}, pt={pt:?}) - {err}")
            })?
            .map_err(|err| {
                anyhow::format_err!(
                    "journal restore error: failed to open socket (af={af:?}, ty={ty:?}, pt={pt:?}) - {err}")
            })?;
        Ok(())
    }
}