rustlings/src/watch/state.rs

139 lines
3.7 KiB
Rust
Raw Normal View History

use anyhow::Result;
2024-04-07 20:29:16 +03:00
use crossterm::{
style::Stylize,
terminal::{size, Clear, ClearType},
2024-04-07 20:29:16 +03:00
ExecutableCommand,
};
use std::io::{self, StdoutLock, Write};
2024-04-07 20:29:16 +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>,
app_state: &'a mut AppState,
2024-04-07 20:29:16 +03:00
stdout: Option<Vec<u8>>,
stderr: Option<Vec<u8>>,
message: Option<String>,
hint_displayed: bool,
2024-04-07 20:29:16 +03:00
}
impl<'a> WatchState<'a> {
pub fn new(app_state: &'a mut AppState) -> Self {
2024-04-07 20:29:16 +03:00
let writer = io::stdout().lock();
Self {
writer,
app_state,
2024-04-07 20:29:16 +03:00
stdout: None,
stderr: None,
message: None,
hint_displayed: false,
2024-04-07 20:29:16 +03:00
}
}
#[inline]
pub fn into_writer(self) -> StdoutLock<'a> {
self.writer
}
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)
}
pub fn run_exercise_with_ind(&mut self, exercise_ind: usize) -> Result<bool> {
self.app_state.set_current_exercise_ind(exercise_ind)?;
self.run_current_exercise()
2024-04-07 20:29:16 +03:00
}
fn show_prompt(&mut self) -> io::Result<()> {
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()
}
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)?;
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)?;
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())?;
}
self.writer.write_all(b"\n")?;
if self.hint_displayed {
self.writer
.write_fmt(format_args!("\n{}\n", "Hint".bold().cyan().underlined()))?;
self.writer
.write_all(self.app_state.current_exercise().hint.as_bytes())?;
self.writer.write_all(b"\n\n")?;
}
let line_width = size()?.0;
let progress_bar = progress_bar(
self.app_state.n_done(),
self.app_state.exercises().len() as u16,
line_width,
)?;
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!(
"{}",
self.app_state
.current_exercise()
.path
.to_string_lossy()
.bold(),
2024-04-10 15:29:31 +03:00
))?;
self.show_prompt()?;
Ok(())
2024-04-07 20:29:16 +03:00
}
pub fn show_hint(&mut self) -> Result<()> {
self.hint_displayed = true;
self.render()
2024-04-07 20:29:16 +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()
}
}