use crate::filesystem::{Descriptor, WasiFilesystemCtxView};
use crate::p2::bindings::clocks::wall_clock;
use crate::p2::bindings::filesystem::preopens;
use crate::p2::bindings::filesystem::types::{
self, ErrorCode, HostDescriptor, HostDirectoryEntryStream,
};
use crate::p2::filesystem::{FileInputStream, FileOutputStream, ReaddirIterator};
use crate::p2::{FsError, FsResult};
use crate::{DirPerms, FilePerms};
use wasmtime::component::Resource;
use wasmtime_wasi_io::streams::{DynInputStream, DynOutputStream};
mod sync;
impl preopens::Host for WasiFilesystemCtxView<'_> {
fn get_directories(&mut self) -> wasmtime::Result<Vec<(Resource<Descriptor>, String)>> {
self.get_directories()
}
}
impl types::Host for WasiFilesystemCtxView<'_> {
fn convert_error_code(&mut self, err: FsError) -> wasmtime::Result<ErrorCode> {
err.downcast()
}
fn filesystem_error_code(
&mut self,
err: Resource<wasmtime::Error>,
) -> wasmtime::Result<Option<ErrorCode>> {
let err = self.table.get(&err)?;
if let Some(err) = err.downcast_ref::<std::io::Error>() {
return Ok(Some(ErrorCode::from(err)));
}
Ok(None)
}
}
impl HostDescriptor for WasiFilesystemCtxView<'_> {
async fn advise(
&mut self,
fd: Resource<types::Descriptor>,
offset: types::Filesize,
len: types::Filesize,
advice: types::Advice,
) -> FsResult<()> {
let f = self.table.get(&fd)?.file()?;
f.advise(offset, len, advice.into()).await?;
Ok(())
}
async fn sync_data(&mut self, fd: Resource<types::Descriptor>) -> FsResult<()> {
let descriptor = self.table.get(&fd)?;
descriptor.sync_data().await?;
Ok(())
}
async fn get_flags(
&mut self,
fd: Resource<types::Descriptor>,
) -> FsResult<types::DescriptorFlags> {
let descriptor = self.table.get(&fd)?;
let flags = descriptor.get_flags().await?;
Ok(flags.into())
}
async fn get_type(
&mut self,
fd: Resource<types::Descriptor>,
) -> FsResult<types::DescriptorType> {
let descriptor = self.table.get(&fd)?;
let ty = descriptor.get_type().await?;
Ok(ty.into())
}
async fn set_size(
&mut self,
fd: Resource<types::Descriptor>,
size: types::Filesize,
) -> FsResult<()> {
let f = self.table.get(&fd)?.file()?;
f.set_size(size).await?;
Ok(())
}
async fn set_times(
&mut self,
fd: Resource<types::Descriptor>,
atim: types::NewTimestamp,
mtim: types::NewTimestamp,
) -> FsResult<()> {
let descriptor = self.table.get(&fd)?;
let atim = systemtimespec_from(atim)?;
let mtim = systemtimespec_from(mtim)?;
descriptor.set_times(atim, mtim).await?;
Ok(())
}
async fn read(
&mut self,
fd: Resource<types::Descriptor>,
len: types::Filesize,
offset: types::Filesize,
) -> FsResult<(Vec<u8>, bool)> {
use std::io::IoSliceMut;
use system_interface::fs::FileIoExt;
let f = self.table.get(&fd)?.file()?;
if !f.perms.contains(FilePerms::READ) {
return Err(ErrorCode::NotPermitted.into());
}
let (mut buffer, r) = f
.run_blocking(move |f| {
let mut buffer = vec![
0;
len.try_into()
.unwrap_or(usize::MAX)
.min(crate::MAX_READ_SIZE_ALLOC)
];
let r = f.read_vectored_at(&mut [IoSliceMut::new(&mut buffer)], offset);
(buffer, r)
})
.await;
let (bytes_read, state) = match r? {
0 => (0, true),
n => (n, false),
};
buffer.truncate(bytes_read);
Ok((buffer, state))
}
async fn write(
&mut self,
fd: Resource<types::Descriptor>,
buf: Vec<u8>,
offset: types::Filesize,
) -> FsResult<types::Filesize> {
use std::io::IoSlice;
use system_interface::fs::FileIoExt;
let f = self.table.get(&fd)?.file()?;
if !f.perms.contains(FilePerms::WRITE) {
return Err(ErrorCode::NotPermitted.into());
}
let bytes_written = f
.run_blocking(move |f| f.write_vectored_at(&[IoSlice::new(&buf)], offset))
.await?;
Ok(types::Filesize::try_from(bytes_written).expect("usize fits in Filesize"))
}
async fn read_directory(
&mut self,
fd: Resource<types::Descriptor>,
) -> FsResult<Resource<types::DirectoryEntryStream>> {
let d = self.table.get(&fd)?.dir()?;
if !d.perms.contains(DirPerms::READ) {
return Err(ErrorCode::NotPermitted.into());
}
enum ReaddirError {
Io(std::io::Error),
IllegalSequence,
}
impl From<std::io::Error> for ReaddirError {
fn from(e: std::io::Error) -> ReaddirError {
ReaddirError::Io(e)
}
}
let entries = d
.run_blocking(|d| {
Ok::<_, std::io::Error>(
d.entries()?
.map(|entry| {
let entry = entry?;
let meta = entry.metadata()?;
let type_ = descriptortype_from(meta.file_type());
let name = entry
.file_name()
.into_string()
.map_err(|_| ReaddirError::IllegalSequence)?;
Ok(types::DirectoryEntry { type_, name })
})
.collect::<Vec<Result<types::DirectoryEntry, ReaddirError>>>(),
)
})
.await?
.into_iter();
#[cfg(windows)]
let entries = entries.filter(|entry| {
use windows_sys::Win32::Foundation::{ERROR_ACCESS_DENIED, ERROR_SHARING_VIOLATION};
if let Err(ReaddirError::Io(err)) = entry {
if err.raw_os_error() == Some(ERROR_SHARING_VIOLATION as i32)
|| err.raw_os_error() == Some(ERROR_ACCESS_DENIED as i32)
{
return false;
}
}
true
});
let entries = entries.map(|r| match r {
Ok(r) => Ok(r),
Err(ReaddirError::Io(e)) => Err(e.into()),
Err(ReaddirError::IllegalSequence) => Err(ErrorCode::IllegalByteSequence.into()),
});
Ok(self.table.push(ReaddirIterator::new(entries))?)
}
async fn sync(&mut self, fd: Resource<types::Descriptor>) -> FsResult<()> {
let descriptor = self.table.get(&fd)?;
descriptor.sync().await?;
Ok(())
}
async fn create_directory_at(
&mut self,
fd: Resource<types::Descriptor>,
path: String,
) -> FsResult<()> {
let d = self.table.get(&fd)?.dir()?;
d.create_directory_at(path).await?;
Ok(())
}
async fn stat(&mut self, fd: Resource<types::Descriptor>) -> FsResult<types::DescriptorStat> {
let descriptor = self.table.get(&fd)?;
let stat = descriptor.stat().await?;
Ok(stat.try_into()?)
}
async fn stat_at(
&mut self,
fd: Resource<types::Descriptor>,
path_flags: types::PathFlags,
path: String,
) -> FsResult<types::DescriptorStat> {
let d = self.table.get(&fd)?.dir()?;
let stat = d.stat_at(path_flags.into(), path).await?;
Ok(stat.try_into()?)
}
async fn set_times_at(
&mut self,
fd: Resource<types::Descriptor>,
path_flags: types::PathFlags,
path: String,
atim: types::NewTimestamp,
mtim: types::NewTimestamp,
) -> FsResult<()> {
let d = self.table.get(&fd)?.dir()?;
let atim = systemtimespec_from(atim)?;
let mtim = systemtimespec_from(mtim)?;
d.set_times_at(path_flags.into(), path, atim, mtim).await?;
Ok(())
}
async fn link_at(
&mut self,
fd: Resource<types::Descriptor>,
old_path_flags: types::PathFlags,
old_path: String,
new_descriptor: Resource<types::Descriptor>,
new_path: String,
) -> FsResult<()> {
let old_dir = self.table.get(&fd)?.dir()?;
let new_dir = self.table.get(&new_descriptor)?.dir()?;
old_dir
.link_at(old_path_flags.into(), old_path, new_dir, new_path)
.await?;
Ok(())
}
async fn open_at(
&mut self,
fd: Resource<types::Descriptor>,
path_flags: types::PathFlags,
path: String,
oflags: types::OpenFlags,
flags: types::DescriptorFlags,
) -> FsResult<Resource<types::Descriptor>> {
let d = self.table.get(&fd)?.dir()?;
let fd = d
.open_at(
path_flags.into(),
path,
oflags.into(),
flags.into(),
self.ctx.allow_blocking_current_thread,
)
.await?;
let fd = self.table.push(fd)?;
Ok(fd)
}
fn drop(&mut self, fd: Resource<types::Descriptor>) -> wasmtime::Result<()> {
self.table.delete(fd)?;
Ok(())
}
async fn readlink_at(
&mut self,
fd: Resource<types::Descriptor>,
path: String,
) -> FsResult<String> {
let d = self.table.get(&fd)?.dir()?;
let path = d.readlink_at(path).await?;
Ok(path)
}
async fn remove_directory_at(
&mut self,
fd: Resource<types::Descriptor>,
path: String,
) -> FsResult<()> {
let d = self.table.get(&fd)?.dir()?;
d.remove_directory_at(path).await?;
Ok(())
}
async fn rename_at(
&mut self,
fd: Resource<types::Descriptor>,
old_path: String,
new_fd: Resource<types::Descriptor>,
new_path: String,
) -> FsResult<()> {
let old_dir = self.table.get(&fd)?.dir()?;
let new_dir = self.table.get(&new_fd)?.dir()?;
old_dir.rename_at(old_path, new_dir, new_path).await?;
Ok(())
}
async fn symlink_at(
&mut self,
fd: Resource<types::Descriptor>,
src_path: String,
dest_path: String,
) -> FsResult<()> {
let d = self.table.get(&fd)?.dir()?;
d.symlink_at(src_path, dest_path).await?;
Ok(())
}
async fn unlink_file_at(
&mut self,
fd: Resource<types::Descriptor>,
path: String,
) -> FsResult<()> {
let d = self.table.get(&fd)?.dir()?;
d.unlink_file_at(path).await?;
Ok(())
}
fn read_via_stream(
&mut self,
fd: Resource<types::Descriptor>,
offset: types::Filesize,
) -> FsResult<Resource<DynInputStream>> {
let f = self.table.get(&fd)?.file()?;
if !f.perms.contains(FilePerms::READ) {
Err(types::ErrorCode::BadDescriptor)?;
}
let reader: DynInputStream = Box::new(FileInputStream::new(f, offset));
let index = self.table.push(reader)?;
Ok(index)
}
fn write_via_stream(
&mut self,
fd: Resource<types::Descriptor>,
offset: types::Filesize,
) -> FsResult<Resource<DynOutputStream>> {
let f = self.table.get(&fd)?.file()?;
if !f.perms.contains(FilePerms::WRITE) {
Err(types::ErrorCode::BadDescriptor)?;
}
let writer = FileOutputStream::write_at(f, offset);
let writer: DynOutputStream = Box::new(writer);
let index = self.table.push(writer)?;
Ok(index)
}
fn append_via_stream(
&mut self,
fd: Resource<types::Descriptor>,
) -> FsResult<Resource<DynOutputStream>> {
let f = self.table.get(&fd)?.file()?;
if !f.perms.contains(FilePerms::WRITE) {
Err(types::ErrorCode::BadDescriptor)?;
}
let appender = FileOutputStream::append(f);
let appender: DynOutputStream = Box::new(appender);
let index = self.table.push(appender)?;
Ok(index)
}
async fn is_same_object(
&mut self,
a: Resource<types::Descriptor>,
b: Resource<types::Descriptor>,
) -> wasmtime::Result<bool> {
let descriptor_a = self.table.get(&a)?;
let descriptor_b = self.table.get(&b)?;
descriptor_a.is_same_object(descriptor_b).await
}
async fn metadata_hash(
&mut self,
fd: Resource<types::Descriptor>,
) -> FsResult<types::MetadataHashValue> {
let fd = self.table.get(&fd)?;
let meta = fd.metadata_hash().await?;
Ok(meta.into())
}
async fn metadata_hash_at(
&mut self,
fd: Resource<types::Descriptor>,
path_flags: types::PathFlags,
path: String,
) -> FsResult<types::MetadataHashValue> {
let d = self.table.get(&fd)?.dir()?;
let meta = d.metadata_hash_at(path_flags.into(), path).await?;
Ok(meta.into())
}
}
impl HostDirectoryEntryStream for WasiFilesystemCtxView<'_> {
async fn read_directory_entry(
&mut self,
stream: Resource<types::DirectoryEntryStream>,
) -> FsResult<Option<types::DirectoryEntry>> {
let readdir = self.table.get(&stream)?;
readdir.next()
}
fn drop(&mut self, stream: Resource<types::DirectoryEntryStream>) -> wasmtime::Result<()> {
self.table.delete(stream)?;
Ok(())
}
}
impl From<types::Advice> for system_interface::fs::Advice {
fn from(advice: types::Advice) -> Self {
match advice {
types::Advice::Normal => Self::Normal,
types::Advice::Sequential => Self::Sequential,
types::Advice::Random => Self::Random,
types::Advice::WillNeed => Self::WillNeed,
types::Advice::DontNeed => Self::DontNeed,
types::Advice::NoReuse => Self::NoReuse,
}
}
}
impl From<types::OpenFlags> for crate::filesystem::OpenFlags {
fn from(flags: types::OpenFlags) -> Self {
let mut out = Self::empty();
if flags.contains(types::OpenFlags::CREATE) {
out |= Self::CREATE;
}
if flags.contains(types::OpenFlags::DIRECTORY) {
out |= Self::DIRECTORY;
}
if flags.contains(types::OpenFlags::EXCLUSIVE) {
out |= Self::EXCLUSIVE;
}
if flags.contains(types::OpenFlags::TRUNCATE) {
out |= Self::TRUNCATE;
}
out
}
}
impl From<types::PathFlags> for crate::filesystem::PathFlags {
fn from(flags: types::PathFlags) -> Self {
let mut out = Self::empty();
if flags.contains(types::PathFlags::SYMLINK_FOLLOW) {
out |= Self::SYMLINK_FOLLOW;
}
out
}
}
impl From<crate::filesystem::DescriptorFlags> for types::DescriptorFlags {
fn from(flags: crate::filesystem::DescriptorFlags) -> Self {
let mut out = Self::empty();
if flags.contains(crate::filesystem::DescriptorFlags::READ) {
out |= Self::READ;
}
if flags.contains(crate::filesystem::DescriptorFlags::WRITE) {
out |= Self::WRITE;
}
if flags.contains(crate::filesystem::DescriptorFlags::FILE_INTEGRITY_SYNC) {
out |= Self::FILE_INTEGRITY_SYNC;
}
if flags.contains(crate::filesystem::DescriptorFlags::DATA_INTEGRITY_SYNC) {
out |= Self::DATA_INTEGRITY_SYNC;
}
if flags.contains(crate::filesystem::DescriptorFlags::REQUESTED_WRITE_SYNC) {
out |= Self::REQUESTED_WRITE_SYNC;
}
if flags.contains(crate::filesystem::DescriptorFlags::MUTATE_DIRECTORY) {
out |= Self::MUTATE_DIRECTORY;
}
out
}
}
impl From<types::DescriptorFlags> for crate::filesystem::DescriptorFlags {
fn from(flags: types::DescriptorFlags) -> Self {
let mut out = Self::empty();
if flags.contains(types::DescriptorFlags::READ) {
out |= Self::READ;
}
if flags.contains(types::DescriptorFlags::WRITE) {
out |= Self::WRITE;
}
if flags.contains(types::DescriptorFlags::FILE_INTEGRITY_SYNC) {
out |= Self::FILE_INTEGRITY_SYNC;
}
if flags.contains(types::DescriptorFlags::DATA_INTEGRITY_SYNC) {
out |= Self::DATA_INTEGRITY_SYNC;
}
if flags.contains(types::DescriptorFlags::REQUESTED_WRITE_SYNC) {
out |= Self::REQUESTED_WRITE_SYNC;
}
if flags.contains(types::DescriptorFlags::MUTATE_DIRECTORY) {
out |= Self::MUTATE_DIRECTORY;
}
out
}
}
impl From<crate::filesystem::MetadataHashValue> for types::MetadataHashValue {
fn from(
crate::filesystem::MetadataHashValue { lower, upper }: crate::filesystem::MetadataHashValue,
) -> Self {
Self { lower, upper }
}
}
impl TryFrom<crate::filesystem::DescriptorStat> for types::DescriptorStat {
type Error = ErrorCode;
fn try_from(
crate::filesystem::DescriptorStat {
type_,
link_count,
size,
data_access_timestamp,
data_modification_timestamp,
status_change_timestamp,
}: crate::filesystem::DescriptorStat,
) -> Result<Self, ErrorCode> {
Ok(Self {
type_: type_.into(),
link_count,
size,
data_access_timestamp: data_access_timestamp.map(|t| t.try_into()).transpose()?,
data_modification_timestamp: data_modification_timestamp
.map(|t| t.try_into())
.transpose()?,
status_change_timestamp: status_change_timestamp.map(|t| t.try_into()).transpose()?,
})
}
}
impl From<crate::filesystem::DescriptorType> for types::DescriptorType {
fn from(ty: crate::filesystem::DescriptorType) -> Self {
match ty {
crate::filesystem::DescriptorType::Unknown => Self::Unknown,
crate::filesystem::DescriptorType::BlockDevice => Self::BlockDevice,
crate::filesystem::DescriptorType::CharacterDevice => Self::CharacterDevice,
crate::filesystem::DescriptorType::Directory => Self::Directory,
crate::filesystem::DescriptorType::SymbolicLink => Self::SymbolicLink,
crate::filesystem::DescriptorType::RegularFile => Self::RegularFile,
}
}
}
#[cfg(unix)]
fn from_raw_os_error(err: Option<i32>) -> Option<ErrorCode> {
use rustix::io::Errno as RustixErrno;
if err.is_none() {
return None;
}
Some(match RustixErrno::from_raw_os_error(err.unwrap()) {
RustixErrno::PIPE => ErrorCode::Pipe,
RustixErrno::PERM => ErrorCode::NotPermitted,
RustixErrno::NOENT => ErrorCode::NoEntry,
RustixErrno::NOMEM => ErrorCode::InsufficientMemory,
RustixErrno::IO => ErrorCode::Io,
RustixErrno::BADF => ErrorCode::BadDescriptor,
RustixErrno::BUSY => ErrorCode::Busy,
RustixErrno::ACCESS => ErrorCode::Access,
RustixErrno::NOTDIR => ErrorCode::NotDirectory,
RustixErrno::ISDIR => ErrorCode::IsDirectory,
RustixErrno::INVAL => ErrorCode::Invalid,
RustixErrno::EXIST => ErrorCode::Exist,
RustixErrno::FBIG => ErrorCode::FileTooLarge,
RustixErrno::NOSPC => ErrorCode::InsufficientSpace,
RustixErrno::SPIPE => ErrorCode::InvalidSeek,
RustixErrno::MLINK => ErrorCode::TooManyLinks,
RustixErrno::NAMETOOLONG => ErrorCode::NameTooLong,
RustixErrno::NOTEMPTY => ErrorCode::NotEmpty,
RustixErrno::LOOP => ErrorCode::Loop,
RustixErrno::OVERFLOW => ErrorCode::Overflow,
RustixErrno::ILSEQ => ErrorCode::IllegalByteSequence,
RustixErrno::NOTSUP => ErrorCode::Unsupported,
RustixErrno::ALREADY => ErrorCode::Already,
RustixErrno::INPROGRESS => ErrorCode::InProgress,
RustixErrno::INTR => ErrorCode::Interrupted,
#[allow(
unreachable_patterns,
reason = "on some platforms, these have the same value as other errno values"
)]
RustixErrno::OPNOTSUPP => ErrorCode::Unsupported,
_ => return None,
})
}
#[cfg(windows)]
fn from_raw_os_error(raw_os_error: Option<i32>) -> Option<ErrorCode> {
use windows_sys::Win32::Foundation;
Some(match raw_os_error.map(|code| code as u32) {
Some(Foundation::ERROR_FILE_NOT_FOUND) => ErrorCode::NoEntry,
Some(Foundation::ERROR_PATH_NOT_FOUND) => ErrorCode::NoEntry,
Some(Foundation::ERROR_ACCESS_DENIED) => ErrorCode::Access,
Some(Foundation::ERROR_SHARING_VIOLATION) => ErrorCode::Access,
Some(Foundation::ERROR_PRIVILEGE_NOT_HELD) => ErrorCode::NotPermitted,
Some(Foundation::ERROR_INVALID_HANDLE) => ErrorCode::BadDescriptor,
Some(Foundation::ERROR_INVALID_NAME) => ErrorCode::NoEntry,
Some(Foundation::ERROR_NOT_ENOUGH_MEMORY) => ErrorCode::InsufficientMemory,
Some(Foundation::ERROR_OUTOFMEMORY) => ErrorCode::InsufficientMemory,
Some(Foundation::ERROR_DIR_NOT_EMPTY) => ErrorCode::NotEmpty,
Some(Foundation::ERROR_NOT_READY) => ErrorCode::Busy,
Some(Foundation::ERROR_BUSY) => ErrorCode::Busy,
Some(Foundation::ERROR_NOT_SUPPORTED) => ErrorCode::Unsupported,
Some(Foundation::ERROR_FILE_EXISTS) => ErrorCode::Exist,
Some(Foundation::ERROR_BROKEN_PIPE) => ErrorCode::Pipe,
Some(Foundation::ERROR_BUFFER_OVERFLOW) => ErrorCode::NameTooLong,
Some(Foundation::ERROR_NOT_A_REPARSE_POINT) => ErrorCode::Invalid,
Some(Foundation::ERROR_NEGATIVE_SEEK) => ErrorCode::Invalid,
Some(Foundation::ERROR_DIRECTORY) => ErrorCode::NotDirectory,
Some(Foundation::ERROR_ALREADY_EXISTS) => ErrorCode::Exist,
Some(Foundation::ERROR_STOPPED_ON_SYMLINK) => ErrorCode::Loop,
Some(Foundation::ERROR_DIRECTORY_NOT_SUPPORTED) => ErrorCode::IsDirectory,
_ => return None,
})
}
impl From<std::io::Error> for ErrorCode {
fn from(err: std::io::Error) -> ErrorCode {
ErrorCode::from(&err)
}
}
impl<'a> From<&'a std::io::Error> for ErrorCode {
fn from(err: &'a std::io::Error) -> ErrorCode {
match from_raw_os_error(err.raw_os_error()) {
Some(errno) => errno,
None => {
tracing::debug!("unknown raw os error: {err}");
match err.kind() {
std::io::ErrorKind::NotFound => ErrorCode::NoEntry,
std::io::ErrorKind::PermissionDenied => ErrorCode::NotPermitted,
std::io::ErrorKind::AlreadyExists => ErrorCode::Exist,
std::io::ErrorKind::InvalidInput => ErrorCode::Invalid,
_ => ErrorCode::Io,
}
}
}
}
}
impl From<cap_rand::Error> for ErrorCode {
fn from(err: cap_rand::Error) -> ErrorCode {
from_raw_os_error(err.raw_os_error()).unwrap_or(ErrorCode::Io)
}
}
impl From<std::num::TryFromIntError> for ErrorCode {
fn from(_err: std::num::TryFromIntError) -> ErrorCode {
ErrorCode::Overflow
}
}
fn descriptortype_from(ft: cap_std::fs::FileType) -> types::DescriptorType {
use cap_fs_ext::FileTypeExt;
use types::DescriptorType;
if ft.is_dir() {
DescriptorType::Directory
} else if ft.is_symlink() {
DescriptorType::SymbolicLink
} else if ft.is_block_device() {
DescriptorType::BlockDevice
} else if ft.is_char_device() {
DescriptorType::CharacterDevice
} else if ft.is_file() {
DescriptorType::RegularFile
} else {
DescriptorType::Unknown
}
}
fn systemtime_from(t: wall_clock::Datetime) -> Result<std::time::SystemTime, ErrorCode> {
std::time::SystemTime::UNIX_EPOCH
.checked_add(core::time::Duration::new(t.seconds, t.nanoseconds))
.ok_or(ErrorCode::Overflow)
}
fn systemtimespec_from(
t: types::NewTimestamp,
) -> Result<Option<fs_set_times::SystemTimeSpec>, ErrorCode> {
use fs_set_times::SystemTimeSpec;
match t {
types::NewTimestamp::NoChange => Ok(None),
types::NewTimestamp::Now => Ok(Some(SystemTimeSpec::SymbolicNow)),
types::NewTimestamp::Timestamp(st) => {
let st = systemtime_from(st)?;
Ok(Some(SystemTimeSpec::Absolute(st)))
}
}
}
impl From<crate::clocks::DatetimeError> for ErrorCode {
fn from(_: crate::clocks::DatetimeError) -> ErrorCode {
ErrorCode::Overflow
}
}
#[cfg(test)]
mod test {
use super::*;
use wasmtime::component::ResourceTable;
#[test]
fn table_readdir_works() {
let mut table = ResourceTable::new();
let ix = table
.push(ReaddirIterator::new(std::iter::empty()))
.unwrap();
let _ = table.get(&ix).unwrap();
table.delete(ix).unwrap();
}
}