2024-04-09 16:04:10 -04:00
|
|
|
use anyhow::Result;
|
2024-04-09 15:07:53 -04:00
|
|
|
use notify_debouncer_mini::{
|
2024-04-09 15:46:55 -04:00
|
|
|
new_debouncer,
|
|
|
|
notify::{self, RecursiveMode},
|
|
|
|
DebounceEventResult, DebouncedEventKind,
|
2024-04-09 15:07:53 -04:00
|
|
|
};
|
2024-04-06 19:17:53 -04:00
|
|
|
use std::{
|
2024-04-07 13:29:16 -04:00
|
|
|
io::{self, BufRead, Write},
|
2024-04-06 19:17:53 -04:00
|
|
|
path::Path,
|
2024-04-09 15:07:53 -04:00
|
|
|
sync::mpsc::{channel, Sender},
|
2024-04-06 19:17:53 -04:00
|
|
|
thread,
|
|
|
|
time::Duration,
|
|
|
|
};
|
|
|
|
|
2024-04-07 13:29:16 -04:00
|
|
|
mod state;
|
|
|
|
|
|
|
|
use crate::{exercise::Exercise, state_file::StateFile};
|
|
|
|
|
|
|
|
use self::state::WatchState;
|
2024-04-06 19:17:53 -04:00
|
|
|
|
2024-04-09 15:07:53 -04:00
|
|
|
enum InputEvent {
|
2024-04-06 19:17:53 -04:00
|
|
|
Hint,
|
|
|
|
Clear,
|
|
|
|
Quit,
|
2024-04-09 15:07:53 -04:00
|
|
|
Unrecognized,
|
2024-04-06 19:17:53 -04:00
|
|
|
}
|
|
|
|
|
2024-04-09 15:07:53 -04:00
|
|
|
enum WatchEvent {
|
|
|
|
Input(InputEvent),
|
|
|
|
FileChange { exercise_ind: usize },
|
2024-04-09 15:46:55 -04:00
|
|
|
NotifyErr(notify::Error),
|
2024-04-09 16:04:10 -04:00
|
|
|
StdinErr(io::Error),
|
2024-04-09 15:07:53 -04:00
|
|
|
TerminalResize,
|
|
|
|
}
|
2024-04-06 19:17:53 -04:00
|
|
|
|
2024-04-09 15:07:53 -04:00
|
|
|
struct DebouceEventHandler {
|
|
|
|
tx: Sender<WatchEvent>,
|
|
|
|
exercises: &'static [Exercise],
|
|
|
|
}
|
2024-04-06 19:17:53 -04:00
|
|
|
|
2024-04-09 15:07:53 -04:00
|
|
|
impl notify_debouncer_mini::DebounceEventHandler for DebouceEventHandler {
|
|
|
|
fn handle_event(&mut self, event: DebounceEventResult) {
|
2024-04-09 15:46:55 -04:00
|
|
|
let event = match event {
|
|
|
|
Ok(event) => {
|
|
|
|
let Some(exercise_ind) = event
|
2024-04-09 15:07:53 -04:00
|
|
|
.iter()
|
2024-04-09 15:46:55 -04:00
|
|
|
.filter_map(|event| {
|
|
|
|
if event.kind != DebouncedEventKind::Any
|
|
|
|
|| !event.path.extension().is_some_and(|ext| ext == "rs")
|
|
|
|
{
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
self.exercises
|
|
|
|
.iter()
|
|
|
|
.position(|exercise| event.path.ends_with(&exercise.path))
|
|
|
|
})
|
|
|
|
.min()
|
|
|
|
else {
|
|
|
|
return;
|
|
|
|
};
|
|
|
|
|
|
|
|
WatchEvent::FileChange { exercise_ind }
|
|
|
|
}
|
|
|
|
Err(e) => WatchEvent::NotifyErr(e),
|
2024-04-09 15:07:53 -04:00
|
|
|
};
|
2024-04-06 19:17:53 -04:00
|
|
|
|
2024-04-09 16:04:10 -04:00
|
|
|
// An error occurs when the receiver is dropped.
|
|
|
|
// After dropping the receiver, the debouncer guard should also be dropped.
|
2024-04-09 15:46:55 -04:00
|
|
|
let _ = self.tx.send(event);
|
2024-04-09 15:07:53 -04:00
|
|
|
}
|
|
|
|
}
|
2024-04-06 19:17:53 -04:00
|
|
|
|
2024-04-09 16:04:10 -04:00
|
|
|
fn input_handler(tx: Sender<WatchEvent>) {
|
2024-04-09 15:07:53 -04:00
|
|
|
let mut stdin = io::stdin().lock();
|
|
|
|
let mut stdin_buf = String::with_capacity(8);
|
|
|
|
|
|
|
|
loop {
|
2024-04-09 16:04:10 -04:00
|
|
|
if let Err(e) = stdin.read_line(&mut stdin_buf) {
|
|
|
|
// If `send` returns an error, then the receiver is dropped and
|
|
|
|
// a shutdown has been already initialized.
|
|
|
|
let _ = tx.send(WatchEvent::StdinErr(e));
|
|
|
|
return;
|
|
|
|
}
|
2024-04-06 19:17:53 -04:00
|
|
|
|
2024-04-09 15:07:53 -04:00
|
|
|
let event = match stdin_buf.trim() {
|
|
|
|
"h" | "hint" => InputEvent::Hint,
|
|
|
|
"c" | "clear" => InputEvent::Clear,
|
|
|
|
"q" | "quit" => InputEvent::Quit,
|
|
|
|
_ => InputEvent::Unrecognized,
|
|
|
|
};
|
2024-04-06 19:17:53 -04:00
|
|
|
|
2024-04-09 15:07:53 -04:00
|
|
|
stdin_buf.clear();
|
|
|
|
|
|
|
|
if tx.send(WatchEvent::Input(event)).is_err() {
|
2024-04-09 16:04:10 -04:00
|
|
|
// The receiver was dropped.
|
|
|
|
return;
|
2024-04-06 19:17:53 -04:00
|
|
|
}
|
2024-04-09 15:07:53 -04:00
|
|
|
}
|
|
|
|
}
|
2024-04-06 19:17:53 -04:00
|
|
|
|
2024-04-09 15:07:53 -04:00
|
|
|
pub fn watch(state_file: &StateFile, exercises: &'static [Exercise]) -> Result<()> {
|
|
|
|
let (tx, rx) = channel();
|
|
|
|
let mut debouncer = new_debouncer(
|
|
|
|
Duration::from_secs(1),
|
|
|
|
DebouceEventHandler {
|
|
|
|
tx: tx.clone(),
|
|
|
|
exercises,
|
|
|
|
},
|
|
|
|
)?;
|
|
|
|
debouncer
|
|
|
|
.watcher()
|
|
|
|
.watch(Path::new("exercises"), RecursiveMode::Recursive)?;
|
2024-04-06 19:17:53 -04:00
|
|
|
|
2024-04-09 15:07:53 -04:00
|
|
|
let mut watch_state = WatchState::new(state_file, exercises);
|
|
|
|
|
|
|
|
// TODO: bool
|
|
|
|
watch_state.run_exercise()?;
|
|
|
|
watch_state.render()?;
|
|
|
|
|
2024-04-09 16:04:10 -04:00
|
|
|
thread::spawn(move || input_handler(tx));
|
2024-04-09 15:07:53 -04:00
|
|
|
|
|
|
|
while let Ok(event) = rx.recv() {
|
|
|
|
match event {
|
|
|
|
WatchEvent::Input(InputEvent::Hint) => {
|
|
|
|
watch_state.show_hint()?;
|
|
|
|
}
|
|
|
|
WatchEvent::Input(InputEvent::Clear) | WatchEvent::TerminalResize => {
|
|
|
|
watch_state.render()?;
|
|
|
|
}
|
|
|
|
WatchEvent::Input(InputEvent::Quit) => break,
|
|
|
|
WatchEvent::Input(InputEvent::Unrecognized) => {
|
|
|
|
watch_state.handle_invalid_cmd()?;
|
|
|
|
}
|
|
|
|
WatchEvent::FileChange { exercise_ind } => {
|
|
|
|
// TODO: bool
|
|
|
|
watch_state.run_exercise_with_ind(exercise_ind)?;
|
|
|
|
watch_state.render()?;
|
2024-04-06 19:17:53 -04:00
|
|
|
}
|
2024-04-09 15:46:55 -04:00
|
|
|
WatchEvent::NotifyErr(e) => return Err(e.into()),
|
2024-04-09 16:04:10 -04:00
|
|
|
WatchEvent::StdinErr(e) => return Err(e.into()),
|
2024-04-06 19:17:53 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-07 13:29:16 -04:00
|
|
|
watch_state.into_writer().write_all(b"
|
2024-04-06 19:17:53 -04:00
|
|
|
We hope you're enjoying learning Rust!
|
|
|
|
If you want to continue working on the exercises at a later point, you can simply run `rustlings` again.
|
|
|
|
")?;
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|