rustlings/src/main.rs

181 lines
5.6 KiB
Rust
Raw Normal View History

2024-04-16 02:22:54 +03:00
use anyhow::{bail, Context, Result};
use app_state::StateFileStatus;
2023-08-26 00:18:01 +03:00
use clap::{Parser, Subcommand};
2024-04-14 17:03:49 +03:00
use std::{
2024-08-08 03:45:18 +03:00
io::{self, IsTerminal, Write},
2024-04-27 18:31:51 +03:00
path::Path,
process::exit,
2024-04-14 17:03:49 +03:00
};
2024-08-08 03:45:18 +03:00
use term::{clear_terminal, press_enter_prompt};
2019-01-09 22:33:43 +03:00
use self::{app_state::AppState, dev::DevCommands, info_file::InfoFile};
2024-04-18 12:31:08 +03:00
mod app_state;
mod cargo_toml;
mod cmd;
2024-08-09 00:46:21 +03:00
mod collections;
2024-04-16 00:54:57 +03:00
mod dev;
2024-03-28 23:06:36 +03:00
mod embedded;
mod exercise;
2024-04-14 02:15:43 +03:00
mod info_file;
mod init;
2024-04-07 04:03:37 +03:00
mod list;
2019-01-09 22:33:43 +03:00
mod run;
2024-08-08 03:45:18 +03:00
mod term;
mod watch;
2018-05-14 19:41:58 +03:00
2024-04-16 02:22:54 +03:00
const CURRENT_FORMAT_VERSION: u8 = 1;
2024-04-29 18:01:47 +03:00
/// Rustlings is a collection of small exercises to get you used to writing and reading Rust code
2023-08-26 00:18:01 +03:00
#[derive(Parser)]
#[command(version)]
struct Args {
2023-08-26 00:18:01 +03:00
#[command(subcommand)]
command: Option<Subcommands>,
2024-05-13 03:37:32 +03:00
/// Manually run the current exercise using `r` in the watch mode.
2024-04-14 18:10:53 +03:00
/// Only use this if Rustlings fails to detect exercise file changes.
#[arg(long)]
manual_run: bool,
}
2023-08-26 00:18:01 +03:00
#[derive(Subcommand)]
enum Subcommands {
2024-04-29 18:01:47 +03:00
/// Initialize the official Rustlings exercises
Init,
2024-04-22 01:45:16 +03:00
/// Run a single exercise. Runs the next pending exercise if the exercise name is not specified
2023-08-26 00:18:01 +03:00
Run {
/// The name of the exercise
name: Option<String>,
2023-08-26 00:18:01 +03:00
},
2024-03-29 00:11:16 +03:00
/// Reset a single exercise
2023-08-26 00:18:01 +03:00
Reset {
/// The name of the exercise
name: String,
},
2024-04-22 01:45:16 +03:00
/// Show a hint. Shows the hint of the next pending exercise if the exercise name is not specified
2023-08-26 00:18:01 +03:00
Hint {
/// The name of the exercise
name: Option<String>,
2023-08-26 00:18:01 +03:00
},
2024-04-22 01:45:16 +03:00
/// Commands for developing (third-party) Rustlings exercises
2024-04-16 00:54:57 +03:00
#[command(subcommand)]
Dev(DevCommands),
}
2024-03-25 05:46:56 +03:00
fn main() -> Result<()> {
2023-08-26 00:18:01 +03:00
let args = Args::parse();
2024-08-01 16:23:54 +03:00
if cfg!(not(debug_assertions)) && Path::new("dev/rustlings-repo.txt").exists() {
2024-04-21 20:34:55 +03:00
bail!("{OLD_METHOD_ERR}");
}
2024-04-16 04:15:14 +03:00
match args.command {
2024-08-26 23:03:09 +03:00
Some(Subcommands::Init) => return init::init().context("Initialization failed"),
2024-04-17 16:55:50 +03:00
Some(Subcommands::Dev(dev_command)) => return dev_command.run(),
2024-04-16 04:15:14 +03:00
_ => (),
}
if !Path::new("exercises").is_dir() {
2024-04-12 02:24:01 +03:00
println!("{PRE_INIT_MSG}");
exit(1);
}
2024-04-17 16:55:50 +03:00
let info_file = InfoFile::parse()?;
if info_file.format_version > CURRENT_FORMAT_VERSION {
bail!(FORMAT_VERSION_HIGHER_ERR);
}
2024-04-14 17:03:49 +03:00
let (mut app_state, state_file_status) = AppState::new(
info_file.exercises,
info_file.final_message.unwrap_or_default(),
2024-04-27 18:31:51 +03:00
)?;
2024-04-14 17:03:49 +03:00
2024-04-29 18:01:47 +03:00
// Show the welcome message if the state file doesn't exist yet.
2024-04-14 17:03:49 +03:00
if let Some(welcome_message) = info_file.welcome_message {
match state_file_status {
StateFileStatus::NotRead => {
let mut stdout = io::stdout().lock();
2024-04-30 02:41:08 +03:00
clear_terminal(&mut stdout)?;
2024-04-14 17:03:49 +03:00
2024-08-02 17:28:05 +03:00
let welcome_message = welcome_message.trim_ascii();
2024-04-14 17:03:49 +03:00
write!(stdout, "{welcome_message}\n\nPress ENTER to continue ")?;
2024-08-08 03:45:18 +03:00
press_enter_prompt(&mut stdout)?;
2024-04-30 02:41:08 +03:00
clear_terminal(&mut stdout)?;
2024-08-09 02:08:52 +03:00
// Flush to be able to show errors occurring before printing a newline to stdout.
stdout.flush()?;
2024-04-14 17:03:49 +03:00
}
StateFileStatus::Read => (),
}
}
2024-04-05 04:04:53 +03:00
match args.command {
2024-04-14 02:15:43 +03:00
None => {
2024-07-08 13:53:44 +03:00
if !io::stdout().is_terminal() {
bail!("Unsupported or missing terminal/TTY");
}
2024-04-25 15:44:12 +03:00
let notify_exercise_names = if args.manual_run {
2024-04-14 18:10:53 +03:00
None
} else {
2024-06-14 14:32:37 +03:00
// For the notify event handler thread.
2024-04-14 18:10:53 +03:00
// Leaking is not a problem because the slice lives until the end of the program.
Some(
2024-04-25 15:44:12 +03:00
&*app_state
2024-04-14 18:10:53 +03:00
.exercises()
.iter()
2024-04-25 15:44:12 +03:00
.map(|exercise| exercise.name.as_bytes())
2024-04-14 18:10:53 +03:00
.collect::<Vec<_>>()
.leak(),
)
};
2024-04-14 02:15:43 +03:00
watch::watch(&mut app_state, notify_exercise_names)?;
2024-04-14 02:15:43 +03:00
}
2024-04-05 04:04:53 +03:00
Some(Subcommands::Run { name }) => {
if let Some(name) = name {
app_state.set_current_exercise_by_name(&name)?;
}
2024-04-16 00:54:57 +03:00
run::run(&mut app_state)?;
}
2024-04-05 04:04:53 +03:00
Some(Subcommands::Reset { name }) => {
app_state.set_current_exercise_by_name(&name)?;
2024-04-18 13:41:17 +03:00
let exercise_path = app_state.reset_current_exercise()?;
println!("The exercise {exercise_path} has been reset");
}
2024-04-05 04:04:53 +03:00
Some(Subcommands::Hint { name }) => {
if let Some(name) = name {
app_state.set_current_exercise_by_name(&name)?;
}
println!("{}", app_state.current_exercise().hint);
}
2024-04-16 04:15:14 +03:00
// Handled in an earlier match.
Some(Subcommands::Init | Subcommands::Dev(_)) => (),
}
2024-03-25 05:46:56 +03:00
Ok(())
2018-05-06 19:59:50 +03:00
}
2024-04-12 02:24:01 +03:00
2024-07-07 16:53:48 +03:00
const OLD_METHOD_ERR: &str =
"You are trying to run Rustlings using the old method before version 6.
2024-04-21 20:34:55 +03:00
The new method doesn't include cloning the Rustlings' repository.
2024-07-07 16:53:48 +03:00
Please follow the instructions in `README.md`:
2024-04-21 20:34:55 +03:00
https://github.com/rust-lang/rustlings#getting-started";
2024-04-16 02:22:54 +03:00
const FORMAT_VERSION_HIGHER_ERR: &str =
"The format version specified in the `info.toml` file is higher than the last one supported.
It is possible that you have an outdated version of Rustlings.
Try to install the latest Rustlings version first.";
2024-04-12 02:24:01 +03:00
const PRE_INIT_MSG: &str = r"
Welcome to...
2024-04-12 02:24:01 +03:00
_ _ _
_ __ _ _ ___| |_| (_)_ __ __ _ ___
| '__| | | / __| __| | | '_ \ / _` / __|
| | | |_| \__ \ |_| | | | | | (_| \__ \
|_| \__,_|___/\__|_|_|_| |_|\__, |___/
|___/
2024-07-07 16:53:48 +03:00
The `exercises/` directory couldn't be found in the current directory.
2024-04-12 02:24:01 +03:00
If you are just starting with Rustlings, run the command `rustlings init` to initialize it.";