use crate::fs::{Dir, File, FileType, Metadata, OpenOptions};
#[cfg(unix)]
use std::os::unix::fs::DirEntryExt;
#[cfg(target_os = "wasi")]
use std::os::wasi::fs::DirEntryExt;
use std::{ffi::OsString, fmt, io};
pub struct DirEntry {
pub(crate) inner: cap_primitives::fs::DirEntry,
}
impl DirEntry {
#[inline]
pub fn open(&self) -> io::Result<File> {
let file = self.inner.open()?;
Ok(unsafe { File::from_std(file) })
}
#[inline]
pub fn open_with(&self, options: &OpenOptions) -> io::Result<File> {
let file = self.inner.open_with(options)?;
Ok(unsafe { File::from_std(file) })
}
#[inline]
pub fn open_dir(&self) -> io::Result<Dir> {
let dir = self.inner.open_dir()?;
Ok(unsafe { Dir::from_std_file(dir) })
}
#[inline]
pub fn remove_file(&self) -> io::Result<()> {
self.inner.remove_file()
}
#[inline]
pub fn remove_dir(&self) -> io::Result<()> {
self.inner.remove_dir()
}
#[inline]
pub fn metadata(&self) -> io::Result<Metadata> {
self.inner.metadata()
}
#[inline]
pub fn file_type(&self) -> io::Result<FileType> {
self.inner.file_type()
}
#[inline]
pub fn file_name(&self) -> OsString {
self.inner.file_name()
}
}
#[cfg(any(unix, target_os = "wasi"))]
impl DirEntryExt for DirEntry {
#[inline]
fn ino(&self) -> u64 {
self.inner.ino()
}
}
impl fmt::Debug for DirEntry {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.inner.fmt(f)
}
}