Files
fleen/src/fleen_app.rs
T

91 lines
2.9 KiB
Rust
Raw Normal View History

2025-08-23 19:32:03 -05:00
use std::cell::RefCell;
2025-08-22 00:10:17 -05:00
use std::path::PathBuf;
use std::process::Command;
use thiserror::Error;
use crate::fleen_app::FleenError::{RootDirNonexistenceError, RootDirPopulatedError};
use crate::fleen_app::TreeEntry::{CloseDir, Dir};
#[derive(Error, Debug, Clone)]
pub enum FleenError {
#[error("Can't reach root dir {0}")]
RootDirNonexistenceError(PathBuf),
#[error("Root dir is nonempty, you probably don't want to create an app here: {0}")]
2025-08-23 19:32:03 -05:00
RootDirPopulatedError(PathBuf),
#[error("Failed to open {0}: {1}")]
FileOpenError(String, String)
2025-08-22 00:10:17 -05:00
}
#[derive(Clone, Debug)]
pub enum TreeEntry {
File(PathBuf),
Dir(PathBuf),
CloseDir
}
pub struct FleenApp {
root: PathBuf,
2025-08-23 19:32:03 -05:00
files_cache: RefCell<Option<Vec<TreeEntry>>>
2025-08-22 00:10:17 -05:00
}
impl FleenApp {
pub fn open(root: PathBuf) -> Result<Self, FleenError> {
match root.try_exists() {
2025-08-23 19:32:03 -05:00
Ok(true) => Ok(Self { root, files_cache: RefCell::new(None) }),
2025-08-22 00:10:17 -05:00
_ => Err(RootDirNonexistenceError(root))
}
}
pub fn create(root: PathBuf) -> Result<Self, FleenError> {
match root.read_dir() {
Ok(mut iter) => {
if iter.next().is_some() {
Err(RootDirPopulatedError(root))
} else {
2025-08-23 19:32:03 -05:00
Ok(Self { root, files_cache: RefCell::new(None) })
2025-08-22 00:10:17 -05:00
}
}
Err(_) => {
Err(RootDirNonexistenceError(root))
}
}
}
2025-08-23 19:32:03 -05:00
// TODO: This is panicky as hell, make it return a Result
fn refresh_file_cache(&self, force: bool) {
if self.files_cache.borrow().is_none() || force {
2025-08-22 00:10:17 -05:00
let mut entries = vec![];
fn visit_dir(dir: &PathBuf, entries: &mut Vec<TreeEntry>) {
for entry in dir.read_dir().unwrap() {
let path = entry.unwrap().path();
2025-08-23 19:32:03 -05:00
if path.is_file() && !path.file_name().unwrap().to_str().unwrap().starts_with('.') {
2025-08-22 00:10:17 -05:00
entries.push(TreeEntry::File(path))
} else if path.is_dir() {
entries.push(Dir(path.clone()));
visit_dir(&path, entries);
entries.push(CloseDir)
}
}
}
2025-08-23 19:32:03 -05:00
entries.push(Dir(self.root.clone()));
2025-08-22 00:10:17 -05:00
visit_dir(&self.root, &mut entries);
2025-08-23 19:32:03 -05:00
entries.push(CloseDir);
self.files_cache.replace(Some(entries));
2025-08-22 00:10:17 -05:00
}
}
2025-08-23 19:32:03 -05:00
pub fn file_tree_entries(&self) -> impl IntoIterator<Item=TreeEntry> {
self.refresh_file_cache(false);
self.files_cache.borrow().clone().expect("Can't happen because we just refreshed the cache")
}
pub fn open_filename(&self, filename: &String) -> Result<(), FleenError> {
Command::new("open").arg(filename.clone()).spawn().map_err(|err| {
FleenError::FileOpenError(filename.clone(), err.to_string())
})?;
Ok(())
2025-08-22 00:10:17 -05:00
}
}