iso9660_simple 0.2.6

ISO9660 reading library
Documentation
use alloc::{vec::Vec};
use alloc::string::ToString;

use crate::iter::DirectoryIter;
use crate::{ISODirectoryEntry, ISO9660};

/// This helper function searches for an entry by path.
pub fn get_directory_entry_by_path(iso: &mut ISO9660, path: &str) -> Option<ISODirectoryEntry> {
    let mut stems: Vec<&str> = path.split("/").filter(|v| !v.is_empty()).collect();
    if stems.is_empty() {
        return Some(ISODirectoryEntry {
            record: iso.root_directory.clone(),
            name: "/".to_string()
        });
    }

    let mut entry: DirectoryIter<'_> = iso.read_root();

    loop {
        let mut found = false;

        for i in &entry {
            if i.name == stems[0] {
                if stems.len() == 1 {
                    return Some(i.clone());
                }

                if i.is_file() {
                    return None;
                }

                entry = iso.read_directory(i.record.lba.get() as usize);

                found = true;

                stems.remove(0);

                break;
            }
        }

        if !found {
            break;
        }
    }

    None
}