summaryrefslogtreecommitdiff
path: root/mkfs.aya
diff options
context:
space:
mode:
Diffstat (limited to 'mkfs.aya')
-rw-r--r--mkfs.aya/Cargo.toml8
-rw-r--r--mkfs.aya/src/block_device.rs5
-rw-r--r--mkfs.aya/src/main.rs21
3 files changed, 34 insertions, 0 deletions
diff --git a/mkfs.aya/Cargo.toml b/mkfs.aya/Cargo.toml
new file mode 100644
index 0000000..c75e3cb
--- /dev/null
+++ b/mkfs.aya/Cargo.toml
@@ -0,0 +1,8 @@
+[package]
+name = "mkayafs"
+version = "0.1.0"
+edition = "2021"
+
+[dependencies]
+users = "0.11.0"
+clap = { version = "4.4.10", features = ["derive"] } \ No newline at end of file
diff --git a/mkfs.aya/src/block_device.rs b/mkfs.aya/src/block_device.rs
new file mode 100644
index 0000000..295b357
--- /dev/null
+++ b/mkfs.aya/src/block_device.rs
@@ -0,0 +1,5 @@
+pub(crate) const BLOCK_SIZE: usize = 4096;
+pub(crate) trait BlockDevice {
+ fn read(&self, block_id: usize, buffer: &mut [u8]);
+ fn write(&self, block_id: usize, buffer: &[u8]);
+} \ No newline at end of file
diff --git a/mkfs.aya/src/main.rs b/mkfs.aya/src/main.rs
new file mode 100644
index 0000000..57ca3fc
--- /dev/null
+++ b/mkfs.aya/src/main.rs
@@ -0,0 +1,21 @@
+mod block_device;
+
+use std::fs::File;
+use std::path::PathBuf;
+use clap::Parser;
+use users::{get_current_gid, get_current_uid};
+
+#[derive(Parser, Debug)]
+#[command(author, version, about)]
+struct Args {
+ block_device: Option<PathBuf>,
+ start_point: Option<usize>,
+ length: Option<usize>,
+}
+
+fn main() {
+ let args = Args::parse();
+ let device_path = args.block_device.unwrap();
+ println!("{:?}", device_path.as_path());
+ let mut device = File::open(device_path.as_path()).unwrap();
+} \ No newline at end of file