ableos/kernel/src/device_tree/mod.rs

77 lines
2.1 KiB
Rust
Raw Normal View History

2023-06-13 06:00:11 -05:00
//! A tree of hardware devices
2023-05-06 06:50:24 -05:00
2023-06-13 06:00:11 -05:00
use {
crate::alloc::string::ToString,
alloc::{string::String, vec::Vec},
core::fmt,
hashbrown::HashMap,
};
2024-09-13 18:11:23 -05:00
2023-06-13 06:00:11 -05:00
/// A device object.
/// TODO define device
2023-05-06 06:50:24 -05:00
pub type Device = xml::XMLElement;
2023-06-13 06:00:11 -05:00
/// A tree of devices
2023-07-15 07:47:46 -05:00
// TODO: alphabetize this list
2023-05-06 06:50:24 -05:00
#[derive(Debug)]
pub struct DeviceTree {
2023-06-13 06:00:11 -05:00
/// The device tree
2023-05-06 06:50:24 -05:00
pub devices: HashMap<String, Vec<Device>>,
}
impl DeviceTree {
2023-06-13 06:00:11 -05:00
/// Build the device tree. Does not populate the device tree
2023-05-06 06:50:24 -05:00
pub fn new() -> Self {
let mut dt = Self {
devices: HashMap::new(),
};
2024-09-13 18:11:23 -05:00
device_tree!(
dt,
[
"Mice",
"Keyboards",
"Controllers",
"Generic HIDs",
"Disk Drives",
"CD Drives",
"Batteries",
"Monitors",
"GPUs",
"CPUs",
"USB",
"Serial Ports",
"Cameras",
"Biometric Devices",
]
);
2023-05-06 06:50:24 -05:00
dt
}
}
2024-09-13 18:11:23 -05:00
use crate::{device_tree, tab, utils::TAB};
2023-05-06 06:50:24 -05:00
impl fmt::Display for DeviceTree {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
2023-05-23 05:16:14 -05:00
writeln!(f)?;
2023-05-06 06:50:24 -05:00
for (device_type, devices) in &self.devices {
writeln!(f, "\r{}{}/\r", tab!(1), device_type)?;
2023-05-06 06:50:24 -05:00
for device in devices {
writeln!(f, "{}{}/\r", tab!(2), device.name)?;
2023-05-06 06:50:24 -05:00
for attr in &device.attributes {
writeln!(f, "{}{}\r", tab!(3), attr)?;
2023-05-06 06:50:24 -05:00
}
for child in &device.children {
writeln!(f, "{}{}\r", tab!(3), child.name)?;
2023-05-06 06:50:24 -05:00
for attr in &child.attributes {
writeln!(f, "{}{}\r", tab!(4), attr)?;
2023-05-06 06:50:24 -05:00
}
for child in &child.children {
writeln!(f, "{}{}\r", tab!(4), child.name)?;
2023-05-06 06:50:24 -05:00
for attr in &child.attributes {
writeln!(f, "{}{}\r", tab!(5), attr)?;
2023-05-06 06:50:24 -05:00
}
}
}
}
}
Ok(())
}
}