wasmer_wasix/journal/effector/syscalls/
fd_seek.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
use super::*;

impl JournalEffector {
    pub fn save_fd_seek(
        ctx: &mut FunctionEnvMut<'_, WasiEnv>,
        fd: Fd,
        offset: i64,
        whence: Whence,
    ) -> anyhow::Result<()> {
        Self::save_event(
            ctx,
            JournalEntry::FileDescriptorSeekV1 { fd, offset, whence },
        )
    }

    pub fn apply_fd_seek(
        ctx: &mut FunctionEnvMut<'_, WasiEnv>,
        fd: Fd,
        offset: i64,
        whence: Whence,
    ) -> anyhow::Result<()> {
        crate::syscalls::fd_seek_internal(ctx, fd, offset, whence)?.map_err(|err| {
            anyhow::format_err!(
                "journal restore error: failed to seek (fd={}, offset={}, whence={:?}) - {}",
                fd,
                offset,
                whence,
                err
            )
        })?;
        Ok(())
    }
}