wasmer-wasix 0.702.0

WASI and WASIX implementation library for Wasmer WebAssembly runtime
use super::*;

impl<'a> JournalSyscallPlayer<'a, '_> {
    #[allow(clippy::result_large_err)]
    pub(crate) unsafe fn action_fd_open(
        &mut self,
        fd: u32,
        dirfd: u32,
        dirflags: u32,
        path: Cow<'a, str>,
        o_flags: Oflags,
        fs_rights_base: Rights,
        fs_rights_inheriting: Rights,
        fs_flags: Fdflags,
        fd_flags: Fdflagsext,
    ) -> Result<(), WasiRuntimeError> {
        tracing::trace!(%fd, %dirfd, %dirflags,  "Replay journal - FdOpen {}", path);
        JournalEffector::apply_path_open(
            &mut self.ctx,
            fd,
            dirfd,
            dirflags,
            &path,
            o_flags,
            fs_rights_base,
            fs_rights_inheriting,
            fs_flags,
            fd_flags,
        )
        .map_err(anyhow_err_to_runtime_err)?;
        Ok(())
    }
}