rust/crates/ra_vfs/src/io.rs

116 lines
2.8 KiB
Rust
Raw Normal View History

2018-12-18 10:29:14 +01:00
use std::{
2018-12-19 13:04:15 +01:00
fmt,
2018-12-18 10:29:14 +01:00
fs,
path::{Path, PathBuf},
};
2018-12-18 11:35:05 +01:00
use walkdir::{DirEntry, WalkDir};
use thread_worker::{WorkerHandle};
2018-12-18 14:38:05 +01:00
use relative_path::RelativePathBuf;
2018-12-18 11:35:05 +01:00
2018-12-29 23:45:01 +01:00
use crate::{VfsRoot, has_rs_extension};
2018-12-18 11:35:05 +01:00
pub(crate) enum Task {
AddRoot {
root: VfsRoot,
path: PathBuf,
filter: Box<Fn(&DirEntry) -> bool + Send>,
},
WatcherChange(crate::watcher::WatcherChange),
2018-12-18 11:18:55 +01:00
}
2018-12-18 10:29:14 +01:00
#[derive(Debug)]
pub struct AddRootResult {
2018-12-18 14:38:05 +01:00
pub(crate) root: VfsRoot,
pub(crate) files: Vec<(RelativePathBuf, String)>,
2018-12-18 11:18:55 +01:00
}
2018-12-18 10:29:14 +01:00
#[derive(Debug)]
pub enum WatcherChangeResult {
Create {
path: PathBuf,
text: String,
},
Write {
path: PathBuf,
text: String,
},
Remove {
path: PathBuf,
},
// can this be replaced and use Remove and Create instead?
Rename {
src: PathBuf,
dst: PathBuf,
text: String,
},
}
pub enum TaskResult {
AddRoot(AddRootResult),
WatcherChange(WatcherChangeResult),
}
2018-12-19 13:04:15 +01:00
impl fmt::Debug for TaskResult {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("TaskResult { ... }")
}
}
2018-12-18 14:38:05 +01:00
pub(crate) type Worker = thread_worker::Worker<Task, TaskResult>;
2018-12-18 11:35:05 +01:00
pub(crate) fn start() -> (Worker, WorkerHandle) {
thread_worker::spawn("vfs", 128, |input_receiver, output_sender| {
input_receiver
2018-12-30 21:23:31 +01:00
.into_iter()
2018-12-18 11:35:05 +01:00
.map(handle_task)
2018-12-30 21:23:31 +01:00
.try_for_each(|it| output_sender.send(it))
.unwrap()
2018-12-18 11:35:05 +01:00
})
}
2018-12-18 11:23:23 +01:00
2018-12-18 14:38:05 +01:00
fn handle_task(task: Task) -> TaskResult {
match task {
Task::AddRoot { root, path, filter } => {
log::debug!("loading {} ...", path.as_path().display());
let files = load_root(path.as_path(), &*filter);
log::debug!("... loaded {}", path.as_path().display());
TaskResult::AddRoot(AddRootResult { root, files })
}
Task::WatcherChange(change) => {
// TODO
unimplemented!()
}
}
2018-12-18 11:18:55 +01:00
}
2018-12-18 10:29:14 +01:00
2018-12-18 14:38:05 +01:00
fn load_root(root: &Path, filter: &dyn Fn(&DirEntry) -> bool) -> Vec<(RelativePathBuf, String)> {
2018-12-18 11:18:55 +01:00
let mut res = Vec::new();
2018-12-18 14:38:05 +01:00
for entry in WalkDir::new(root).into_iter().filter_entry(filter) {
2018-12-18 11:18:55 +01:00
let entry = match entry {
Ok(entry) => entry,
Err(e) => {
log::warn!("watcher error: {}", e);
continue;
}
};
if !entry.file_type().is_file() {
continue;
}
let path = entry.path();
2018-12-29 23:45:01 +01:00
if !has_rs_extension(path) {
2018-12-18 11:18:55 +01:00
continue;
}
let text = match fs::read_to_string(path) {
Ok(text) => text,
Err(e) => {
log::warn!("watcher error: {}", e);
continue;
}
};
2018-12-18 14:38:05 +01:00
let path = RelativePathBuf::from_path(path.strip_prefix(root).unwrap()).unwrap();
res.push((path.to_owned(), text))
2018-12-18 11:18:55 +01:00
}
res
}