linutil/core/src/inner.rs

212 lines
6.0 KiB
Rust
Raw Normal View History

use crate::{Command, ListNode, Tab};
2024-08-13 22:55:59 +01:00
use ego_tree::{NodeMut, Tree};
use include_dir::{include_dir, Dir};
use serde::Deserialize;
2024-08-13 22:55:59 +01:00
use std::path::{Path, PathBuf};
use tempdir::TempDir;
const TAB_DATA: Dir = include_dir!("$CARGO_MANIFEST_DIR/tabs");
pub fn get_tabs(validate: bool) -> Vec<Tab> {
let tab_files = TabList::get_tabs();
let tabs = tab_files.into_iter().map(|path| {
let directory = path.parent().unwrap().to_owned();
let data = std::fs::read_to_string(path).expect("Failed to read tab data");
let mut tab_data: TabEntry = toml::from_str(&data).expect("Failed to parse tab data");
if validate {
filter_entries(&mut tab_data.data);
}
(tab_data, directory)
});
let tabs: Vec<Tab> = tabs
.map(
|(
TabEntry {
name,
data,
multi_selectable,
},
directory,
)| {
let mut tree = Tree::new(ListNode {
name: "root".to_string(),
description: String::new(),
command: Command::None,
});
let mut root = tree.root_mut();
create_directory(data, &mut root, &directory);
Tab {
name,
tree,
multi_selectable,
}
},
)
.collect();
if tabs.is_empty() {
panic!("No tabs found");
}
tabs
}
2024-08-09 10:22:19 +01:00
#[derive(Deserialize)]
2024-08-15 07:09:31 +01:00
struct TabList {
directories: Vec<PathBuf>,
2024-08-13 22:55:59 +01:00
}
#[derive(Deserialize)]
2024-08-15 07:09:31 +01:00
struct TabEntry {
name: String,
data: Vec<Entry>,
#[serde(default = "default_multi_selectable")]
multi_selectable: bool,
}
fn default_multi_selectable() -> bool {
true
2024-08-13 22:55:59 +01:00
}
#[derive(Deserialize)]
2024-08-15 07:09:31 +01:00
struct Entry {
2024-08-13 22:55:59 +01:00
name: String,
#[allow(dead_code)]
#[serde(default)]
description: String,
#[serde(default)]
preconditions: Option<Vec<Precondition>>,
2024-08-15 07:09:31 +01:00
#[serde(default)]
entries: Option<Vec<Entry>>,
#[serde(default)]
command: Option<String>,
#[serde(default)]
script: Option<PathBuf>,
}
2024-08-09 10:22:19 +01:00
2024-08-15 07:09:31 +01:00
impl Entry {
fn is_supported(&self) -> bool {
self.preconditions.as_deref().map_or(true, |preconditions| {
preconditions.iter().all(
|Precondition {
matches,
data,
values,
}| {
match data {
SystemDataType::Environment(var_name) => std::env::var(var_name)
.map_or(false, |var| values.contains(&var) == *matches),
SystemDataType::File(path) => {
std::fs::read_to_string(path).map_or(false, |data| {
values
.iter()
.any(|matching_value| data.contains(matching_value))
== *matches
})
}
SystemDataType::CommandExists => values
.iter()
.all(|command| which::which(command).is_ok() == *matches),
}
},
)
})
}
}
#[derive(Deserialize)]
struct Precondition {
// If true, the data must be contained within the list of values.
// Otherwise, the data must not be contained within the list of values
matches: bool,
data: SystemDataType,
values: Vec<String>,
}
2024-08-09 10:22:19 +01:00
#[derive(Deserialize)]
enum SystemDataType {
#[serde(rename = "environment")]
Environment(String),
#[serde(rename = "file")]
File(PathBuf),
#[serde(rename = "command_exists")]
CommandExists,
}
2024-08-13 22:55:59 +01:00
fn filter_entries(entries: &mut Vec<Entry>) {
2024-08-15 07:09:31 +01:00
entries.retain_mut(|entry| {
if !entry.is_supported() {
return false;
}
if let Some(entries) = &mut entry.entries {
filter_entries(entries);
!entries.is_empty()
} else {
true
2024-08-13 22:55:59 +01:00
}
});
}
2024-08-13 22:55:59 +01:00
fn create_directory(data: Vec<Entry>, node: &mut NodeMut<ListNode>, command_dir: &Path) {
for entry in data {
2024-08-15 07:09:31 +01:00
if [
entry.entries.is_some(),
entry.command.is_some(),
entry.script.is_some(),
]
.iter()
.filter(|&&x| x)
.count()
> 1
{
panic!("Entry must have only one data type");
}
if let Some(entries) = entry.entries {
let mut node = node.append(ListNode {
name: entry.name,
description: entry.description,
2024-08-15 07:09:31 +01:00
command: Command::None,
});
create_directory(entries, &mut node, command_dir);
} else if let Some(command) = entry.command {
node.append(ListNode {
name: entry.name,
description: entry.description,
2024-08-15 07:09:31 +01:00
command: Command::Raw(command),
});
} else if let Some(script) = entry.script {
let dir = command_dir.join(script);
if !dir.exists() {
panic!("Script {} does not exist", dir.display());
2024-08-13 22:55:59 +01:00
}
2024-08-15 07:09:31 +01:00
node.append(ListNode {
name: entry.name,
description: entry.description,
2024-08-15 07:09:31 +01:00
command: Command::LocalFile(dir),
});
} else {
panic!("Entry must have data");
2024-08-13 22:55:59 +01:00
}
}
}
2024-08-15 07:09:31 +01:00
impl TabList {
fn get_tabs() -> Vec<PathBuf> {
let temp_dir = TempDir::new("linutil_scripts").unwrap().into_path();
TAB_DATA
.extract(&temp_dir)
.expect("Failed to extract the saved directory");
let tab_files =
std::fs::read_to_string(temp_dir.join("tabs.toml")).expect("Failed to read tabs.toml");
2024-08-15 07:09:31 +01:00
let data: Self = toml::from_str(&tab_files).expect("Failed to parse tabs.toml");
data.directories
.iter()
.map(|path| temp_dir.join(path).join("tab_data.toml"))
2024-08-15 07:09:31 +01:00
.collect()
}
}