mirror of
https://github.com/rust-lang/rustlings.git
synced 2024-11-08 09:09:17 +01:00
103 lines
2.9 KiB
Rust
103 lines
2.9 KiB
Rust
use anyhow::{Error, Result};
|
|
use notify_debouncer_mini::{
|
|
new_debouncer,
|
|
notify::{self, RecursiveMode},
|
|
};
|
|
use std::{
|
|
io::{self, Write},
|
|
path::Path,
|
|
sync::mpsc::channel,
|
|
thread,
|
|
time::Duration,
|
|
};
|
|
|
|
mod debounce_event;
|
|
mod state;
|
|
mod terminal_event;
|
|
|
|
use crate::app_state::{AppState, ExercisesProgress};
|
|
|
|
use self::{
|
|
debounce_event::DebounceEventHandler,
|
|
state::WatchState,
|
|
terminal_event::{terminal_event_handler, InputEvent},
|
|
};
|
|
|
|
enum WatchEvent {
|
|
Input(InputEvent),
|
|
FileChange { exercise_ind: usize },
|
|
TerminalResize,
|
|
NotifyErr(notify::Error),
|
|
TerminalEventErr(io::Error),
|
|
}
|
|
|
|
/// Returned by the watch mode to indicate what to do afterwards.
|
|
#[must_use]
|
|
pub enum WatchExit {
|
|
/// Exit the program.
|
|
Shutdown,
|
|
/// Enter the list mode and restart the watch mode afterwards.
|
|
List,
|
|
}
|
|
|
|
pub fn watch(app_state: &mut AppState) -> Result<WatchExit> {
|
|
let (tx, rx) = channel();
|
|
let mut debouncer = new_debouncer(
|
|
Duration::from_secs(1),
|
|
DebounceEventHandler {
|
|
tx: tx.clone(),
|
|
exercises: app_state.exercises(),
|
|
},
|
|
)?;
|
|
debouncer
|
|
.watcher()
|
|
.watch(Path::new("exercises"), RecursiveMode::Recursive)?;
|
|
|
|
let mut watch_state = WatchState::new(app_state);
|
|
|
|
watch_state.run_current_exercise()?;
|
|
|
|
thread::spawn(move || terminal_event_handler(tx));
|
|
|
|
while let Ok(event) = rx.recv() {
|
|
match event {
|
|
WatchEvent::Input(InputEvent::Next) => match watch_state.next_exercise()? {
|
|
ExercisesProgress::AllDone => break,
|
|
ExercisesProgress::Pending => watch_state.run_current_exercise()?,
|
|
},
|
|
WatchEvent::Input(InputEvent::Hint) => {
|
|
watch_state.show_hint()?;
|
|
}
|
|
WatchEvent::Input(InputEvent::List) => {
|
|
return Ok(WatchExit::List);
|
|
}
|
|
WatchEvent::Input(InputEvent::Quit) => {
|
|
watch_state.into_writer().write_all(QUIT_MSG)?;
|
|
break;
|
|
}
|
|
WatchEvent::Input(InputEvent::Unrecognized(cmd)) => {
|
|
watch_state.handle_invalid_cmd(&cmd)?;
|
|
}
|
|
WatchEvent::FileChange { exercise_ind } => {
|
|
watch_state.run_exercise_with_ind(exercise_ind)?;
|
|
}
|
|
WatchEvent::TerminalResize => {
|
|
watch_state.render()?;
|
|
}
|
|
WatchEvent::NotifyErr(e) => {
|
|
return Err(Error::from(e).context("Exercise file watcher failed"))
|
|
}
|
|
WatchEvent::TerminalEventErr(e) => {
|
|
return Err(Error::from(e).context("Terminal event listener failed"))
|
|
}
|
|
}
|
|
}
|
|
|
|
Ok(WatchExit::Shutdown)
|
|
}
|
|
|
|
const QUIT_MSG: &[u8] = b"
|
|
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.
|
|
";
|