2024-04-11 03:51:02 +03:00
|
|
|
use anyhow::Result;
|
2024-04-07 20:29:16 +03:00
|
|
|
use crossterm::{
|
2024-04-11 03:51:02 +03:00
|
|
|
style::Stylize,
|
2024-04-09 22:07:53 +03:00
|
|
|
terminal::{size, Clear, ClearType},
|
2024-04-07 20:29:16 +03:00
|
|
|
ExecutableCommand,
|
|
|
|
};
|
2024-04-11 03:51:02 +03:00
|
|
|
use std::io::{self, StdoutLock, Write};
|
2024-04-07 20:29:16 +03:00
|
|
|
|
2024-04-11 03:51:02 +03:00
|
|
|
use crate::{app_state::AppState, progress_bar::progress_bar};
|
2024-04-07 20:29:16 +03:00
|
|
|
|
|
|
|
pub struct WatchState<'a> {
|
|
|
|
writer: StdoutLock<'a>,
|
2024-04-11 03:51:02 +03:00
|
|
|
app_state: &'a mut AppState,
|
2024-04-07 20:29:16 +03:00
|
|
|
stdout: Option<Vec<u8>>,
|
|
|
|
stderr: Option<Vec<u8>>,
|
|
|
|
message: Option<String>,
|
2024-04-10 16:56:38 +03:00
|
|
|
hint_displayed: bool,
|
2024-04-07 20:29:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> WatchState<'a> {
|
2024-04-11 03:51:02 +03:00
|
|
|
pub fn new(app_state: &'a mut AppState) -> Self {
|
2024-04-07 20:29:16 +03:00
|
|
|
let writer = io::stdout().lock();
|
|
|
|
|
|
|
|
Self {
|
|
|
|
writer,
|
2024-04-11 03:51:02 +03:00
|
|
|
app_state,
|
2024-04-07 20:29:16 +03:00
|
|
|
stdout: None,
|
|
|
|
stderr: None,
|
|
|
|
message: None,
|
2024-04-10 16:56:38 +03:00
|
|
|
hint_displayed: false,
|
2024-04-07 20:29:16 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn into_writer(self) -> StdoutLock<'a> {
|
|
|
|
self.writer
|
|
|
|
}
|
|
|
|
|
2024-04-11 03:51:02 +03:00
|
|
|
pub fn run_current_exercise(&mut self) -> Result<bool> {
|
|
|
|
let output = self.app_state.current_exercise().run()?;
|
2024-04-09 23:20:12 +03:00
|
|
|
self.stdout = Some(output.stdout);
|
2024-04-07 20:29:16 +03:00
|
|
|
|
|
|
|
if !output.status.success() {
|
|
|
|
self.stderr = Some(output.stderr);
|
|
|
|
return Ok(false);
|
|
|
|
}
|
|
|
|
|
2024-04-09 23:20:12 +03:00
|
|
|
self.stderr = None;
|
|
|
|
|
2024-04-07 20:29:16 +03:00
|
|
|
Ok(true)
|
|
|
|
}
|
|
|
|
|
2024-04-09 22:07:53 +03:00
|
|
|
pub fn run_exercise_with_ind(&mut self, exercise_ind: usize) -> Result<bool> {
|
2024-04-11 03:51:02 +03:00
|
|
|
self.app_state.set_current_exercise_ind(exercise_ind)?;
|
|
|
|
self.run_current_exercise()
|
2024-04-07 20:29:16 +03:00
|
|
|
}
|
|
|
|
|
2024-04-11 03:51:02 +03:00
|
|
|
fn show_prompt(&mut self) -> io::Result<()> {
|
2024-04-10 16:56:38 +03:00
|
|
|
self.writer.write_all(b"\n\n")?;
|
|
|
|
|
|
|
|
if !self.hint_displayed {
|
|
|
|
self.writer.write_fmt(format_args!("{}int/", 'h'.bold()))?;
|
|
|
|
}
|
|
|
|
|
|
|
|
self.writer
|
|
|
|
.write_fmt(format_args!("{}ist/{}uit? ", 'l'.bold(), 'q'.bold()))?;
|
|
|
|
|
2024-04-07 20:29:16 +03:00
|
|
|
self.writer.flush()
|
|
|
|
}
|
|
|
|
|
2024-04-09 22:07:53 +03:00
|
|
|
pub fn render(&mut self) -> Result<()> {
|
2024-04-10 04:56:41 +03:00
|
|
|
// Prevent having the first line shifted after clearing because of the prompt.
|
|
|
|
self.writer.write_all(b"\n")?;
|
|
|
|
|
2024-04-07 20:29:16 +03:00
|
|
|
self.writer.execute(Clear(ClearType::All))?;
|
|
|
|
|
|
|
|
if let Some(stdout) = &self.stdout {
|
|
|
|
self.writer.write_all(stdout)?;
|
2024-04-10 16:56:38 +03:00
|
|
|
self.writer.write_all(b"\n")?;
|
2024-04-07 20:29:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(stderr) = &self.stderr {
|
|
|
|
self.writer.write_all(stderr)?;
|
2024-04-10 16:56:38 +03:00
|
|
|
self.writer.write_all(b"\n")?;
|
2024-04-07 20:29:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(message) = &self.message {
|
|
|
|
self.writer.write_all(message.as_bytes())?;
|
|
|
|
}
|
|
|
|
|
2024-04-09 23:06:55 +03:00
|
|
|
self.writer.write_all(b"\n")?;
|
2024-04-10 16:56:38 +03:00
|
|
|
|
|
|
|
if self.hint_displayed {
|
|
|
|
self.writer
|
|
|
|
.write_fmt(format_args!("\n{}\n", "Hint".bold().cyan().underlined()))?;
|
2024-04-11 03:51:02 +03:00
|
|
|
self.writer
|
|
|
|
.write_all(self.app_state.current_exercise().hint.as_bytes())?;
|
2024-04-10 16:56:38 +03:00
|
|
|
self.writer.write_all(b"\n\n")?;
|
|
|
|
}
|
|
|
|
|
2024-04-09 22:07:53 +03:00
|
|
|
let line_width = size()?.0;
|
2024-04-11 03:51:02 +03:00
|
|
|
let progress_bar = progress_bar(
|
|
|
|
self.app_state.n_done(),
|
|
|
|
self.app_state.exercises().len() as u16,
|
|
|
|
line_width,
|
|
|
|
)?;
|
2024-04-09 22:07:53 +03:00
|
|
|
self.writer.write_all(progress_bar.as_bytes())?;
|
|
|
|
|
2024-04-10 15:29:31 +03:00
|
|
|
self.writer.write_all(b"Current exercise: ")?;
|
|
|
|
self.writer.write_fmt(format_args!(
|
|
|
|
"{}",
|
2024-04-11 03:51:02 +03:00
|
|
|
self.app_state
|
|
|
|
.current_exercise()
|
|
|
|
.path
|
|
|
|
.to_string_lossy()
|
|
|
|
.bold(),
|
2024-04-10 15:29:31 +03:00
|
|
|
))?;
|
|
|
|
|
2024-04-09 22:07:53 +03:00
|
|
|
self.show_prompt()?;
|
|
|
|
|
|
|
|
Ok(())
|
2024-04-07 20:29:16 +03:00
|
|
|
}
|
|
|
|
|
2024-04-10 16:56:38 +03:00
|
|
|
pub fn show_hint(&mut self) -> Result<()> {
|
|
|
|
self.hint_displayed = true;
|
|
|
|
self.render()
|
2024-04-07 20:29:16 +03:00
|
|
|
}
|
|
|
|
|
2024-04-10 05:08:40 +03:00
|
|
|
pub fn handle_invalid_cmd(&mut self, cmd: &str) -> io::Result<()> {
|
|
|
|
self.writer.write_all(b"Invalid command: ")?;
|
|
|
|
self.writer.write_all(cmd.as_bytes())?;
|
|
|
|
if cmd.len() > 1 {
|
|
|
|
self.writer
|
|
|
|
.write_all(b" (confusing input can occur after resizing the terminal)")?;
|
|
|
|
}
|
2024-04-07 20:29:16 +03:00
|
|
|
self.show_prompt()
|
|
|
|
}
|
|
|
|
}
|