rustlings/src/watch/state.rs

240 lines
7 KiB
Rust
Raw Normal View History

use anyhow::{Context, Result};
2024-08-24 01:14:12 +03:00
use crossterm::{
2024-08-26 00:53:50 +03:00
style::{
Attribute, Attributes, Color, ResetColor, SetAttribute, SetAttributes, SetForegroundColor,
},
terminal, QueueableCommand,
2024-04-07 20:29:16 +03:00
};
2024-09-12 18:45:42 +03:00
use std::{
io::{self, StdoutLock, Write},
sync::mpsc::Sender,
thread,
};
2024-04-07 20:29:16 +03:00
2024-04-12 16:27:29 +03:00
use crate::{
app_state::{AppState, ExercisesProgress},
2024-04-30 02:41:08 +03:00
clear_terminal,
2024-08-26 00:53:50 +03:00
exercise::{solution_link_line, RunnableExercise, OUTPUT_CAPACITY},
2024-09-04 03:19:45 +03:00
term::progress_bar,
2024-04-12 16:27:29 +03:00
};
2024-04-07 20:29:16 +03:00
2024-09-12 18:45:42 +03:00
use super::{
terminal_event::{terminal_event_handler, InputPauseGuard},
WatchEvent,
};
2024-05-13 03:45:12 +03:00
#[derive(PartialEq, Eq)]
2024-04-24 03:52:30 +03:00
enum DoneStatus {
DoneWithSolution(String),
DoneWithoutSolution,
Pending,
}
2024-04-07 20:29:16 +03:00
pub struct WatchState<'a> {
app_state: &'a mut AppState,
2024-04-25 02:56:01 +03:00
output: Vec<u8>,
2024-04-12 03:45:54 +03:00
show_hint: bool,
2024-04-24 03:52:30 +03:00
done_status: DoneStatus,
2024-04-14 18:10:53 +03:00
manual_run: bool,
term_width: u16,
2024-04-07 20:29:16 +03:00
}
impl<'a> WatchState<'a> {
2024-09-12 18:45:42 +03:00
pub fn build(
app_state: &'a mut AppState,
watch_event_sender: Sender<WatchEvent>,
manual_run: bool,
) -> Result<Self> {
let term_width = terminal::size()
.context("Failed to get the terminal size")?
.0;
2024-09-12 18:45:42 +03:00
thread::Builder::new()
.spawn(move || terminal_event_handler(watch_event_sender, manual_run))
.context("Failed to spawn a thread to handle terminal events")?;
Ok(Self {
app_state,
2024-04-25 02:56:01 +03:00
output: Vec::with_capacity(OUTPUT_CAPACITY),
2024-04-12 03:45:54 +03:00
show_hint: false,
2024-04-24 03:52:30 +03:00
done_status: DoneStatus::Pending,
2024-04-14 18:10:53 +03:00
manual_run,
term_width,
})
2024-04-07 20:29:16 +03:00
}
2024-08-26 01:09:04 +03:00
pub fn run_current_exercise(&mut self, stdout: &mut StdoutLock) -> Result<()> {
2024-09-12 18:45:42 +03:00
// Ignore any input until running the exercise is done.
let _input_pause_guard = InputPauseGuard::scoped_pause();
2024-04-12 03:45:54 +03:00
self.show_hint = false;
writeln!(
2024-08-26 01:09:04 +03:00
stdout,
"\nChecking the exercise `{}`. Please wait…",
self.app_state.current_exercise().name,
)?;
let success = self
.app_state
.current_exercise()
2024-08-01 16:23:54 +03:00
.run_exercise(Some(&mut self.output), self.app_state.cmd_runner())?;
self.output.push(b'\n');
2024-04-25 02:56:01 +03:00
if success {
2024-04-24 03:52:30 +03:00
self.done_status =
if let Some(solution_path) = self.app_state.current_solution_path()? {
DoneStatus::DoneWithSolution(solution_path)
} else {
DoneStatus::DoneWithoutSolution
};
2024-04-12 03:45:54 +03:00
} else {
self.app_state
.set_pending(self.app_state.current_exercise_ind())?;
2024-04-24 03:52:30 +03:00
self.done_status = DoneStatus::Pending;
2024-04-07 20:29:16 +03:00
}
2024-08-26 01:09:04 +03:00
self.render(stdout)?;
2024-08-24 01:14:12 +03:00
Ok(())
2024-04-07 20:29:16 +03:00
}
2024-08-26 01:09:04 +03:00
pub fn handle_file_change(
&mut self,
exercise_ind: usize,
stdout: &mut StdoutLock,
) -> Result<()> {
2024-05-13 18:06:11 +03:00
// Don't skip exercises on file changes to avoid confusion from missing exercises.
// Skipping exercises must be explicit in the interactive list.
// But going back to an earlier exercise on file change is fine.
if self.app_state.current_exercise_ind() < exercise_ind {
return Ok(());
}
self.app_state.set_current_exercise_ind(exercise_ind)?;
2024-08-26 01:09:04 +03:00
self.run_current_exercise(stdout)
2024-04-07 20:29:16 +03:00
}
2024-05-14 02:49:22 +03:00
/// Move on to the next exercise if the current one is done.
2024-08-26 01:09:04 +03:00
pub fn next_exercise(&mut self, stdout: &mut StdoutLock) -> Result<ExercisesProgress> {
2024-05-13 03:45:12 +03:00
if self.done_status == DoneStatus::Pending {
2024-05-13 03:32:25 +03:00
return Ok(ExercisesProgress::CurrentPending);
2024-04-12 16:27:29 +03:00
}
2024-08-26 01:09:04 +03:00
self.app_state.done_current_exercise(stdout)
2024-04-12 16:27:29 +03:00
}
2024-08-26 01:09:04 +03:00
fn show_prompt(&self, stdout: &mut StdoutLock) -> io::Result<()> {
2024-04-14 18:10:53 +03:00
if self.manual_run {
2024-08-26 01:09:04 +03:00
stdout.queue(SetAttribute(Attribute::Bold))?;
stdout.write_all(b"r")?;
stdout.queue(ResetColor)?;
stdout.write_all(b":run / ")?;
2024-04-14 18:10:53 +03:00
}
2024-05-13 03:45:12 +03:00
if self.done_status != DoneStatus::Pending {
2024-08-26 01:09:04 +03:00
stdout.queue(SetAttribute(Attribute::Bold))?;
stdout.write_all(b"n")?;
stdout.queue(ResetColor)?;
stdout.write_all(b":")?;
stdout.queue(SetAttribute(Attribute::Underlined))?;
stdout.write_all(b"next")?;
stdout.queue(ResetColor)?;
stdout.write_all(b" / ")?;
2024-04-12 16:27:29 +03:00
}
2024-04-12 03:45:54 +03:00
if !self.show_hint {
2024-08-26 01:09:04 +03:00
stdout.queue(SetAttribute(Attribute::Bold))?;
stdout.write_all(b"h")?;
stdout.queue(ResetColor)?;
stdout.write_all(b":hint / ")?;
}
2024-08-26 01:09:04 +03:00
stdout.queue(SetAttribute(Attribute::Bold))?;
stdout.write_all(b"l")?;
stdout.queue(ResetColor)?;
stdout.write_all(b":list / ")?;
2024-08-26 00:53:50 +03:00
2024-08-26 01:09:04 +03:00
stdout.queue(SetAttribute(Attribute::Bold))?;
stdout.write_all(b"q")?;
stdout.queue(ResetColor)?;
stdout.write_all(b":quit ? ")?;
2024-08-26 01:09:04 +03:00
stdout.flush()
2024-04-07 20:29:16 +03:00
}
2024-08-26 01:09:04 +03:00
pub fn render(&self, stdout: &mut StdoutLock) -> io::Result<()> {
2024-05-14 02:49:22 +03:00
// Prevent having the first line shifted if clearing wasn't successful.
2024-08-26 01:09:04 +03:00
stdout.write_all(b"\n")?;
clear_terminal(stdout)?;
2024-04-07 20:29:16 +03:00
2024-08-26 01:09:04 +03:00
stdout.write_all(&self.output)?;
2024-04-12 03:45:54 +03:00
if self.show_hint {
2024-08-26 01:09:04 +03:00
stdout
2024-08-26 00:53:50 +03:00
.queue(SetAttributes(
Attributes::from(Attribute::Bold).with(Attribute::Underlined),
))?
.queue(SetForegroundColor(Color::Cyan))?;
2024-08-26 01:24:39 +03:00
stdout.write_all(b"Hint")?;
2024-08-26 01:09:04 +03:00
stdout.queue(ResetColor)?;
2024-08-26 01:24:39 +03:00
stdout.write_all(b"\n")?;
2024-08-26 00:53:50 +03:00
2024-08-26 01:09:04 +03:00
stdout.write_all(self.app_state.current_exercise().hint.as_bytes())?;
stdout.write_all(b"\n\n")?;
}
2024-05-13 03:45:12 +03:00
if self.done_status != DoneStatus::Pending {
2024-08-26 01:09:04 +03:00
stdout
2024-08-26 00:53:50 +03:00
.queue(SetAttribute(Attribute::Bold))?
.queue(SetForegroundColor(Color::Green))?;
2024-08-26 01:24:39 +03:00
stdout.write_all("Exercise done ✓".as_bytes())?;
2024-08-26 01:09:04 +03:00
stdout.queue(ResetColor)?;
2024-08-26 01:24:39 +03:00
stdout.write_all(b"\n")?;
2024-08-20 17:04:29 +03:00
if let DoneStatus::DoneWithSolution(solution_path) = &self.done_status {
2024-08-26 01:09:04 +03:00
solution_link_line(stdout, solution_path)?;
2024-08-20 17:04:29 +03:00
}
2024-04-12 03:45:54 +03:00
2024-08-26 01:24:39 +03:00
stdout.write_all(
"When done experimenting, enter `n` to move on to the next exercise 🦀\n\n"
.as_bytes(),
2024-04-25 03:03:26 +03:00
)?;
2024-04-24 03:52:30 +03:00
}
2024-08-24 01:14:12 +03:00
progress_bar(
2024-08-26 01:09:04 +03:00
stdout,
self.app_state.n_done(),
self.app_state.exercises().len() as u16,
self.term_width,
)?;
2024-08-26 00:53:50 +03:00
2024-08-26 01:09:04 +03:00
stdout.write_all(b"\nCurrent exercise: ")?;
2024-09-04 03:19:45 +03:00
self.app_state
.current_exercise()
.terminal_file_link(stdout)?;
2024-08-26 01:09:04 +03:00
stdout.write_all(b"\n\n")?;
2024-04-10 15:29:31 +03:00
2024-08-26 01:09:04 +03:00
self.show_prompt(stdout)?;
Ok(())
2024-04-07 20:29:16 +03:00
}
2024-08-26 01:09:04 +03:00
pub fn show_hint(&mut self, stdout: &mut StdoutLock) -> io::Result<()> {
2024-09-05 18:32:59 +03:00
if !self.show_hint {
self.show_hint = true;
self.render(stdout)?;
}
Ok(())
2024-04-07 20:29:16 +03:00
}
pub fn update_term_width(&mut self, width: u16, stdout: &mut StdoutLock) -> io::Result<()> {
if self.term_width != width {
self.term_width = width;
self.render(stdout)?;
}
Ok(())
}
2024-04-07 20:29:16 +03:00
}