mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-21 21:42:23 -05:00
Handle notify errors
This commit is contained in:
parent
b15e0a279b
commit
4110ae21af
1 changed files with 28 additions and 22 deletions
50
src/watch.rs
50
src/watch.rs
|
@ -1,6 +1,8 @@
|
||||||
use anyhow::{bail, Context, Result};
|
use anyhow::{bail, Context, Result};
|
||||||
use notify_debouncer_mini::{
|
use notify_debouncer_mini::{
|
||||||
new_debouncer, notify::RecursiveMode, DebounceEventResult, DebouncedEventKind,
|
new_debouncer,
|
||||||
|
notify::{self, RecursiveMode},
|
||||||
|
DebounceEventResult, DebouncedEventKind,
|
||||||
};
|
};
|
||||||
use std::{
|
use std::{
|
||||||
io::{self, BufRead, Write},
|
io::{self, BufRead, Write},
|
||||||
|
@ -26,6 +28,7 @@ enum InputEvent {
|
||||||
enum WatchEvent {
|
enum WatchEvent {
|
||||||
Input(InputEvent),
|
Input(InputEvent),
|
||||||
FileChange { exercise_ind: usize },
|
FileChange { exercise_ind: usize },
|
||||||
|
NotifyErr(notify::Error),
|
||||||
TerminalResize,
|
TerminalResize,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -36,30 +39,32 @@ struct DebouceEventHandler {
|
||||||
|
|
||||||
impl notify_debouncer_mini::DebounceEventHandler for DebouceEventHandler {
|
impl notify_debouncer_mini::DebounceEventHandler for DebouceEventHandler {
|
||||||
fn handle_event(&mut self, event: DebounceEventResult) {
|
fn handle_event(&mut self, event: DebounceEventResult) {
|
||||||
let Ok(event) = event else {
|
let event = match event {
|
||||||
// TODO
|
Ok(event) => {
|
||||||
return;
|
let Some(exercise_ind) = event
|
||||||
};
|
|
||||||
|
|
||||||
let Some(exercise_ind) = event
|
|
||||||
.iter()
|
|
||||||
.filter_map(|event| {
|
|
||||||
if event.kind != DebouncedEventKind::Any
|
|
||||||
|| !event.path.extension().is_some_and(|ext| ext == "rs")
|
|
||||||
{
|
|
||||||
return None;
|
|
||||||
}
|
|
||||||
|
|
||||||
self.exercises
|
|
||||||
.iter()
|
.iter()
|
||||||
.position(|exercise| event.path.ends_with(&exercise.path))
|
.filter_map(|event| {
|
||||||
})
|
if event.kind != DebouncedEventKind::Any
|
||||||
.min()
|
|| !event.path.extension().is_some_and(|ext| ext == "rs")
|
||||||
else {
|
{
|
||||||
return;
|
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),
|
||||||
};
|
};
|
||||||
|
|
||||||
self.tx.send(WatchEvent::FileChange { exercise_ind });
|
let _ = self.tx.send(event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -125,6 +130,7 @@ pub fn watch(state_file: &StateFile, exercises: &'static [Exercise]) -> Result<(
|
||||||
watch_state.run_exercise_with_ind(exercise_ind)?;
|
watch_state.run_exercise_with_ind(exercise_ind)?;
|
||||||
watch_state.render()?;
|
watch_state.render()?;
|
||||||
}
|
}
|
||||||
|
WatchEvent::NotifyErr(e) => return Err(e.into()),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue