2023-02-06 18:57:28 -05:00
|
|
|
use shitbox::Cmd;
|
|
|
|
|
|
|
|
mod blkid;
|
|
|
|
mod clear;
|
|
|
|
mod mount;
|
|
|
|
mod mountpoint;
|
2023-02-07 10:34:09 -05:00
|
|
|
mod swaplabel;
|
|
|
|
mod swapoff;
|
|
|
|
mod swapon;
|
2023-02-06 18:57:28 -05:00
|
|
|
mod umount;
|
|
|
|
mod utilbox;
|
2023-02-07 10:34:09 -05:00
|
|
|
|
2023-02-06 18:57:28 -05:00
|
|
|
/// Parses a string into a command to run
|
|
|
|
#[must_use]
|
|
|
|
#[allow(clippy::box_default)]
|
|
|
|
pub fn get(name: &str) -> Option<Box<dyn Cmd>> {
|
|
|
|
match name {
|
|
|
|
"clear" => Some(Box::new(clear::Clear::default())),
|
|
|
|
"mountpoint" => Some(Box::new(mountpoint::Mountpoint::default())),
|
2023-02-07 10:34:09 -05:00
|
|
|
"swaplabel" => Some(Box::new(swaplabel::Swaplabel::default())),
|
2023-02-06 18:57:28 -05:00
|
|
|
"umount" => Some(Box::new(umount::Umount::default())),
|
|
|
|
"utilbox" => Some(Box::new(utilbox::Utilbox::default())),
|
|
|
|
_ => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-02-07 10:34:09 -05:00
|
|
|
pub static COMMANDS: [&str; 5] = ["clear", "mountpoint", "swaplabel", "umount", "utilbox"];
|