use crate::fs::{Dir, File, FileType, Metadata, OpenOptions};
use async_std::io;
#[cfg(unix)]
use async_std::os::unix::fs::DirEntryExt;
#[cfg(target_os = "wasi")]
use async_std::os::wasi::fs::DirEntryExt;
use std::ffi::OsString;
use std::fmt;
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()?.into();
Ok(File::from_std(file))
}
#[inline]
pub fn open_with(&self, options: &OpenOptions) -> io::Result<File> {
let file = self.inner.open_with(options)?.into();
Ok(File::from_std(file))
}
#[inline]
pub fn open_dir(&self) -> io::Result<Dir> {
let file = self.inner.open_dir()?.into();
Ok(Dir::from_std_file(file))
}
#[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 async fn file_type(&self) -> io::Result<FileType> {
self.inner.file_type()
}
#[inline]
pub fn file_name(&self) -> OsString {
self.inner.file_name()
}
}
#[cfg(not(windows))]
impl DirEntryExt for DirEntry {
#[inline]
fn ino(&self) -> u64 {
self.inner.ino()
}
}
#[cfg(windows)]
#[doc(hidden)]
impl cap_primitives::fs::_WindowsDirEntryExt for DirEntry {
#[inline]
fn full_metadata(&self) -> io::Result<Metadata> {
self.inner.full_metadata()
}
}
impl fmt::Debug for DirEntry {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.inner.fmt(f)
}
}