add prefix tree map to search for mount points
All checks were successful
continuous-integration/drone/push Build is passing

Signed-off-by: Julien CLEMENT <julien.clement@epita.fr>
This commit is contained in:
Julien CLEMENT 2022-12-27 21:38:45 +01:00
parent ec98428697
commit 5303ea4581
7 changed files with 55 additions and 22 deletions

@ -58,7 +58,8 @@ static ATAPI_SIG: [u8; 4] = [
]; ];
lazy_static! { lazy_static! {
pub static ref DRIVE: AsyncMutex<Option<ATABus>> = AsyncMutex::new(ATABus::discover_atapi_drive()); pub static ref DRIVE: AsyncMutex<Option<ATABus>> =
AsyncMutex::new(ATABus::discover_atapi_drive());
} }
pub async fn init() { pub async fn init() {

@ -37,10 +37,7 @@ impl FDTable {
pub fn unregister_fd(&mut self, fd: &dyn FileDescriptor) { pub fn unregister_fd(&mut self, fd: &dyn FileDescriptor) {
self.table.remove(&fd.get_fd()); self.table.remove(&fd.get_fd());
println!( println!("Unregistered fd: {:?}", fd.get_fd());
"Unregistered fd: {:?}",
fd.get_fd()
);
} }
pub fn register_fd(&mut self, fd: FDt) { pub fn register_fd(&mut self, fd: FDt) {

@ -11,7 +11,7 @@ pub struct IsoFD {
pub fd: FDId, pub fd: FDId,
offset: u32, offset: u32,
lba: u32, lba: u32,
size: u32 size: u32,
} }
impl IsoFD { impl IsoFD {

@ -2,7 +2,7 @@ mod fd;
pub mod iso9660; pub mod iso9660;
use crate::drivers::atapi::read_block; use crate::drivers::atapi::read_block;
use crate::fd::{FDt}; use crate::fd::FDt;
use crate::utils::unserialize; use crate::utils::unserialize;
use super::FileSystem; use super::FileSystem;
@ -31,20 +31,18 @@ impl FileSystem for IsoFS {
} }
let root: &IsoDir = &voldesc.root_dir; let root: &IsoDir = &voldesc.root_dir;
let mut curr_entry_block: [u8; iso9660::ISO_BLOCK_SIZE as usize] = read_block(root.data_blk.le).await; let mut curr_entry_block: [u8; iso9660::ISO_BLOCK_SIZE as usize] =
read_block(root.data_blk.le).await;
let mut curr_entry: &IsoDir = unserialize(curr_entry_block.as_ptr()); let mut curr_entry: &IsoDir = unserialize(curr_entry_block.as_ptr());
let path_s: String = String::from(path); let path_s: String = String::from(path);
let path_split: Vec<&str> = path_s.split("/").collect(); let path_split: Vec<&str> = path_s.split("/").collect();
let path_it = path_s let path_it = path_s.split("/").filter(|p| p != &"");
.split("/")
.filter(|p| p != &"");
for path_component in path_it { for path_component in path_it {
let mut found = false; let mut found = false;
while curr_entry.idf_len != 0 { while curr_entry.idf_len != 0 {
// Found entry // Found entry
if curr_entry.matches(path_component) { if curr_entry.matches(path_component) {
found = true; found = true;
@ -76,7 +74,6 @@ impl FileSystem for IsoFS {
} }
} }
pub async fn get_prim_vol_desc() -> IsoPrimVolDesc { pub async fn get_prim_vol_desc() -> IsoPrimVolDesc {
let desc_block = read_block(iso9660::ISO_PRIM_VOLDESC_BLOCK).await; let desc_block = read_block(iso9660::ISO_PRIM_VOLDESC_BLOCK).await;
*unserialize::<IsoPrimVolDesc>(desc_block.as_ptr()) *unserialize::<IsoPrimVolDesc>(desc_block.as_ptr())

@ -3,10 +3,11 @@ pub mod iso;
use crate::fd::FDt; use crate::fd::FDt;
use crate::utils::mutex::AsyncMutex; use crate::utils::mutex::AsyncMutex;
use alloc::{boxed::Box, sync::Arc}; use alloc::{boxed::Box, string::String, sync::Arc, vec::Vec};
use async_trait::async_trait; use async_trait::async_trait;
use core::cell::RefCell; use core::cell::RefCell;
use lazy_static::lazy_static; use lazy_static::lazy_static;
use prefix_tree_map::{PrefixTreeMap, PrefixTreeMapBuilder};
pub type FSt = Arc<RefCell<dyn FileSystem>>; pub type FSt = Arc<RefCell<dyn FileSystem>>;
@ -20,20 +21,57 @@ pub trait FileSystem {
} }
pub struct VirtualFS { pub struct VirtualFS {
fs: FSt, map_builder: PrefixTreeMapBuilder<String, String, FSt>,
map: Option<PrefixTreeMap<String, String, FSt>>,
} }
impl VirtualFS { impl VirtualFS {
fn new() -> Self { fn new() -> Self {
VirtualFS { let mut res = VirtualFS {
fs: Arc::new(RefCell::new(iso::IsoFS {})), map_builder: PrefixTreeMapBuilder::new(),
map: None,
};
let fs = Arc::new(RefCell::new(iso::IsoFS {}));
let fs2 = Arc::new(RefCell::new(iso::IsoFS {}));
res.mount("/", fs);
res.mount("/mnt/iso", fs2);
res
} }
fn mount(&mut self, path: &str, fs: FSt) {
let path_s: String = String::from(path);
self.map_builder.insert_exact(
path_s
.split("/")
.filter(|p| p != &"")
.map(|s| String::from(s)),
fs,
);
self.map = Some(self.map_builder.clone().build());
} }
} }
#[async_trait(?Send)] #[async_trait(?Send)]
impl FileSystem for VirtualFS { impl FileSystem for VirtualFS {
async fn open(&mut self, path: &str, flags: u32) -> Option<FDt> { async fn open(&mut self, path: &str, flags: u32) -> Option<FDt> {
self.fs.borrow_mut().open(path, flags).await if let Some(map) = &self.map {
let path_s: String = String::from(path);
let mut path_split: Vec<String> = path_s
.split("/")
.filter(|p| p != &"")
.map(|s| String::from(s))
.collect();
loop {
if let Some(fs) = map.find_exact(&path_split) {
// TODO, remove path prefix of the mount point
return fs.borrow_mut().open(path, flags).await;
}
else {
path_split.truncate(path_split.len() - 1);
}
}
} else {
None
}
} }
} }