parent
b4b3cd20b2
commit
384f6dd1c3
@ -0,0 +1,70 @@
|
|||||||
|
// /dev/null
|
||||||
|
|
||||||
|
use alloc::{string::String, sync::Arc, vec::Vec};
|
||||||
|
use core::any::Any;
|
||||||
|
|
||||||
|
use rcore_fs::vfs::*;
|
||||||
|
|
||||||
|
pub struct DevNull {}
|
||||||
|
|
||||||
|
impl DevNull {
|
||||||
|
pub fn new() -> Self {
|
||||||
|
DevNull {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
macro_rules! impl_inode {
|
||||||
|
() => {
|
||||||
|
fn set_metadata(&self, _metadata: &Metadata) -> Result<()> { Ok(()) }
|
||||||
|
fn sync_all(&self) -> Result<()> { Ok(()) }
|
||||||
|
fn sync_data(&self) -> Result<()> { Ok(()) }
|
||||||
|
fn resize(&self, _len: usize) -> Result<()> { Err(FsError::NotSupported) }
|
||||||
|
fn create(&self, _name: &str, _type_: FileType, _mode: u32) -> Result<Arc<dyn INode>> { Err(FsError::NotDir) }
|
||||||
|
fn unlink(&self, _name: &str) -> Result<()> { Err(FsError::NotDir) }
|
||||||
|
fn link(&self, _name: &str, _other: &Arc<dyn INode>) -> Result<()> { Err(FsError::NotDir) }
|
||||||
|
fn move_(&self, _old_name: &str, _target: &Arc<dyn INode>, _new_name: &str) -> Result<()> { Err(FsError::NotDir) }
|
||||||
|
fn find(&self, _name: &str) -> Result<Arc<dyn INode>> { Err(FsError::NotDir) }
|
||||||
|
fn get_entry(&self, _id: usize) -> Result<(usize, String)> { Err(FsError::NotDir) }
|
||||||
|
fn io_control(&self, _cmd: u32, _data: usize) -> Result<()> { Err(FsError::NotSupported) }
|
||||||
|
fn fs(&self) -> Arc<dyn FileSystem> { unimplemented!() }
|
||||||
|
fn as_any_ref(&self) -> &dyn Any { self }
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
impl INode for DevNull {
|
||||||
|
fn read_at(&self, offset: usize, buf: &mut [u8]) -> Result<usize> {
|
||||||
|
for i in buf.iter_mut() {
|
||||||
|
*i = 0
|
||||||
|
}
|
||||||
|
Ok(buf.len())
|
||||||
|
}
|
||||||
|
fn write_at(&self, _offset: usize, buf: &[u8]) -> Result<usize> {
|
||||||
|
Ok(buf.len())
|
||||||
|
}
|
||||||
|
fn poll(&self) -> Result<PollStatus> {
|
||||||
|
Ok(PollStatus {
|
||||||
|
read: true,
|
||||||
|
write: true,
|
||||||
|
error: false,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
fn metadata(&self) -> Result<Metadata> {
|
||||||
|
Ok(Metadata {
|
||||||
|
dev: 0,
|
||||||
|
inode: 0,
|
||||||
|
size: 0,
|
||||||
|
blk_size: 0,
|
||||||
|
blocks: 0,
|
||||||
|
atime: Timespec { sec: 0, nsec: 0 },
|
||||||
|
mtime: Timespec { sec: 0, nsec: 0 },
|
||||||
|
ctime: Timespec { sec: 0, nsec: 0 },
|
||||||
|
type_: FileType::CharDevice,
|
||||||
|
mode: 0,
|
||||||
|
nlinks: 0,
|
||||||
|
uid: 0,
|
||||||
|
gid: 0,
|
||||||
|
rdev: 0,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
impl_inode!();
|
||||||
|
}
|
@ -1 +1 @@
|
|||||||
Subproject commit bbcee244e80eecd9b69839462d3ed89ef78f8d88
|
Subproject commit b055c8df6258bc887e121d40979816fa578cc00a
|
Loading…
Reference in new issue