2019-04-11 15:41:24 -05:00
|
|
|
use crate::exercise::{Exercise, ExerciseList};
|
2019-01-09 13:33:58 -06:00
|
|
|
use crate::run::run;
|
|
|
|
use crate::verify::verify;
|
|
|
|
use clap::{crate_version, App, Arg, SubCommand};
|
2019-12-22 14:27:38 -06:00
|
|
|
use console::Emoji;
|
2019-01-09 13:33:58 -06:00
|
|
|
use notify::DebouncedEvent;
|
|
|
|
use notify::{RecommendedWatcher, RecursiveMode, Watcher};
|
2019-03-06 12:38:55 -06:00
|
|
|
use std::ffi::OsStr;
|
2019-04-11 15:41:24 -05:00
|
|
|
use std::fs;
|
2019-11-18 11:11:22 -06:00
|
|
|
use std::io;
|
2019-03-16 21:15:09 -05:00
|
|
|
use std::path::Path;
|
2019-11-11 10:15:14 -06:00
|
|
|
use std::process::{Command, Stdio};
|
2018-11-26 05:41:39 -06:00
|
|
|
use std::sync::mpsc::channel;
|
2019-11-18 11:11:22 -06:00
|
|
|
use std::sync::{Arc, Mutex};
|
|
|
|
use std::thread;
|
2018-11-26 05:41:39 -06:00
|
|
|
use std::time::Duration;
|
2019-01-09 13:33:43 -06:00
|
|
|
|
2020-02-20 13:11:53 -06:00
|
|
|
#[macro_use]
|
|
|
|
mod ui;
|
|
|
|
|
2019-04-11 15:41:24 -05:00
|
|
|
mod exercise;
|
2019-01-09 13:33:43 -06:00
|
|
|
mod run;
|
2019-01-09 13:33:58 -06:00
|
|
|
mod verify;
|
2018-05-14 11:41:58 -05:00
|
|
|
|
2018-11-09 13:31:14 -06:00
|
|
|
fn main() {
|
2018-11-26 04:10:38 -06:00
|
|
|
let matches = App::new("rustlings")
|
2018-11-14 13:12:20 -06:00
|
|
|
.version(crate_version!())
|
2019-01-23 14:43:32 -06:00
|
|
|
.author("Olivia Hugger, Carol Nichols")
|
|
|
|
.about("Rustlings is a collection of small exercises to get you used to writing and reading Rust code")
|
2020-06-03 16:19:28 -05:00
|
|
|
.arg(
|
2020-06-04 09:31:17 -05:00
|
|
|
Arg::with_name("nocapture")
|
|
|
|
.long("nocapture")
|
|
|
|
.help("Show outputs from the test exercises")
|
2020-06-03 16:19:28 -05:00
|
|
|
)
|
|
|
|
.subcommand(
|
|
|
|
SubCommand::with_name("verify")
|
|
|
|
.alias("v")
|
|
|
|
.about("Verifies all exercises according to the recommended order")
|
|
|
|
)
|
|
|
|
.subcommand(
|
|
|
|
SubCommand::with_name("watch")
|
|
|
|
.alias("w")
|
|
|
|
.about("Reruns `verify` when files were edited")
|
|
|
|
)
|
2018-11-23 08:18:43 -06:00
|
|
|
.subcommand(
|
|
|
|
SubCommand::with_name("run")
|
|
|
|
.alias("r")
|
2019-01-23 14:43:32 -06:00
|
|
|
.about("Runs/Tests a single exercise")
|
2019-11-11 08:46:32 -06:00
|
|
|
.arg(Arg::with_name("name").required(true).index(1)),
|
2019-01-09 13:33:58 -06:00
|
|
|
)
|
2019-11-11 09:51:38 -06:00
|
|
|
.subcommand(
|
|
|
|
SubCommand::with_name("hint")
|
|
|
|
.alias("h")
|
|
|
|
.about("Returns a hint for the current exercise")
|
|
|
|
.arg(Arg::with_name("name").required(true).index(1)),
|
|
|
|
)
|
2020-11-10 11:36:19 -06:00
|
|
|
.subcommand(
|
|
|
|
SubCommand::with_name("list")
|
|
|
|
.alias("l")
|
|
|
|
.about("Lists the exercises available in rustlings")
|
|
|
|
)
|
2019-01-09 13:33:58 -06:00
|
|
|
.get_matches();
|
2018-11-14 13:12:20 -06:00
|
|
|
|
2020-06-03 16:19:28 -05:00
|
|
|
if matches.subcommand_name().is_none() {
|
2019-03-11 09:09:20 -05:00
|
|
|
println!();
|
2019-01-09 13:44:55 -06:00
|
|
|
println!(r#" welcome to... "#);
|
|
|
|
println!(r#" _ _ _ "#);
|
|
|
|
println!(r#" _ __ _ _ ___| |_| (_)_ __ __ _ ___ "#);
|
|
|
|
println!(r#" | '__| | | / __| __| | | '_ \ / _` / __| "#);
|
|
|
|
println!(r#" | | | |_| \__ \ |_| | | | | | (_| \__ \ "#);
|
|
|
|
println!(r#" |_| \__,_|___/\__|_|_|_| |_|\__, |___/ "#);
|
|
|
|
println!(r#" |___/ "#);
|
2019-03-11 09:09:20 -05:00
|
|
|
println!();
|
2019-01-09 13:44:55 -06:00
|
|
|
}
|
2018-11-14 13:12:20 -06:00
|
|
|
|
2019-03-16 21:15:09 -05:00
|
|
|
if !Path::new("info.toml").exists() {
|
|
|
|
println!(
|
|
|
|
"{} must be run from the rustlings directory",
|
|
|
|
std::env::current_exe().unwrap().to_str().unwrap()
|
|
|
|
);
|
2019-04-22 05:43:39 -05:00
|
|
|
println!("Try `cd rustlings/`!");
|
2019-03-16 21:15:09 -05:00
|
|
|
std::process::exit(1);
|
|
|
|
}
|
|
|
|
|
2019-11-11 10:15:14 -06:00
|
|
|
if !rustc_exists() {
|
|
|
|
println!("We cannot find `rustc`.");
|
|
|
|
println!("Try running `rustc --version` to diagnose your problem.");
|
|
|
|
println!("For instructions on how to install Rust, check the README.");
|
|
|
|
std::process::exit(1);
|
|
|
|
}
|
|
|
|
|
2019-04-11 15:41:24 -05:00
|
|
|
let toml_str = &fs::read_to_string("info.toml").unwrap();
|
|
|
|
let exercises = toml::from_str::<ExerciseList>(toml_str).unwrap().exercises;
|
2020-06-04 09:31:17 -05:00
|
|
|
let verbose = matches.is_present("nocapture");
|
2019-04-11 15:41:24 -05:00
|
|
|
|
2020-11-10 11:36:19 -06:00
|
|
|
if matches.subcommand_matches("list").is_some() {
|
|
|
|
exercises.iter().for_each(|e| println!("{}", e.name));
|
|
|
|
}
|
2019-04-11 15:41:24 -05:00
|
|
|
if let Some(ref matches) = matches.subcommand_matches("run") {
|
2019-11-11 10:47:45 -06:00
|
|
|
let name = matches.value_of("name").unwrap();
|
2019-04-11 15:41:24 -05:00
|
|
|
|
2019-11-11 10:19:50 -06:00
|
|
|
let matching_exercise = |e: &&Exercise| name == e.name;
|
2019-04-12 16:24:13 -05:00
|
|
|
|
|
|
|
let exercise = exercises.iter().find(matching_exercise).unwrap_or_else(|| {
|
2019-11-11 08:46:32 -06:00
|
|
|
println!("No exercise found for your given name!");
|
2019-04-12 16:24:13 -05:00
|
|
|
std::process::exit(1)
|
|
|
|
});
|
2019-04-11 15:41:24 -05:00
|
|
|
|
2020-06-04 09:31:17 -05:00
|
|
|
run(&exercise, verbose).unwrap_or_else(|_| std::process::exit(1));
|
2018-11-23 08:18:43 -06:00
|
|
|
}
|
|
|
|
|
2019-11-11 09:51:38 -06:00
|
|
|
if let Some(ref matches) = matches.subcommand_matches("hint") {
|
2019-11-11 10:47:45 -06:00
|
|
|
let name = matches.value_of("name").unwrap();
|
2019-11-11 09:51:38 -06:00
|
|
|
|
2019-11-11 10:19:50 -06:00
|
|
|
let exercise = exercises
|
|
|
|
.iter()
|
|
|
|
.find(|e| name == e.name)
|
|
|
|
.unwrap_or_else(|| {
|
|
|
|
println!("No exercise found for your given name!");
|
|
|
|
std::process::exit(1)
|
|
|
|
});
|
2019-11-11 09:51:38 -06:00
|
|
|
|
|
|
|
println!("{}", exercise.hint);
|
|
|
|
}
|
|
|
|
|
2019-03-11 09:09:20 -05:00
|
|
|
if matches.subcommand_matches("verify").is_some() {
|
2020-06-04 09:31:17 -05:00
|
|
|
verify(&exercises, verbose).unwrap_or_else(|_| std::process::exit(1));
|
2018-11-26 05:41:39 -06:00
|
|
|
}
|
|
|
|
|
2020-11-05 18:29:16 -06:00
|
|
|
if matches.subcommand_matches("watch").is_some() {
|
|
|
|
if let Err(e) = watch(&exercises, verbose) {
|
|
|
|
println!("Error: Could not watch your progess. Error message was {:?}.", e);
|
|
|
|
println!("Most likely you've run out of disk space or your 'inotify limit' has been reached.");
|
|
|
|
std::process::exit(1);
|
|
|
|
}
|
2020-06-03 16:19:28 -05:00
|
|
|
println!(
|
|
|
|
"{emoji} All exercises completed! {emoji}",
|
|
|
|
emoji = Emoji("🎉", "★")
|
|
|
|
);
|
|
|
|
println!();
|
|
|
|
println!("We hope you enjoyed learning about the various aspects of Rust!");
|
2020-08-10 09:42:54 -05:00
|
|
|
println!("If you noticed any issues, please don't hesitate to report them to our repo.");
|
2020-06-03 16:19:28 -05:00
|
|
|
println!("You can also contribute your own exercises to help the greater community!");
|
|
|
|
println!();
|
|
|
|
println!("Before reporting an issue or contributing, please read our guidelines:");
|
2020-06-14 07:48:51 -05:00
|
|
|
println!("https://github.com/rust-lang/rustlings/blob/main/CONTRIBUTING.md");
|
2018-11-14 13:12:20 -06:00
|
|
|
}
|
2018-11-26 04:10:38 -06:00
|
|
|
|
2019-03-11 09:09:20 -05:00
|
|
|
if matches.subcommand_name().is_none() {
|
2019-06-05 05:18:50 -05:00
|
|
|
let text = fs::read_to_string("default_out.txt").unwrap();
|
|
|
|
println!("{}", text);
|
2018-11-26 04:10:38 -06:00
|
|
|
}
|
2018-05-06 11:59:50 -05:00
|
|
|
}
|
|
|
|
|
2019-11-18 11:11:22 -06:00
|
|
|
fn spawn_watch_shell(failed_exercise_hint: &Arc<Mutex<Option<String>>>) {
|
|
|
|
let failed_exercise_hint = Arc::clone(failed_exercise_hint);
|
2020-07-23 13:23:27 -05:00
|
|
|
println!("Type 'hint' to get help or 'clear' to clear the screen");
|
2019-11-18 11:11:22 -06:00
|
|
|
thread::spawn(move || loop {
|
|
|
|
let mut input = String::new();
|
|
|
|
match io::stdin().read_line(&mut input) {
|
|
|
|
Ok(_) => {
|
2020-07-23 13:23:27 -05:00
|
|
|
let input = input.trim();
|
|
|
|
if input.eq("hint") {
|
2019-11-18 11:11:22 -06:00
|
|
|
if let Some(hint) = &*failed_exercise_hint.lock().unwrap() {
|
|
|
|
println!("{}", hint);
|
|
|
|
}
|
2020-07-23 13:23:27 -05:00
|
|
|
} else if input.eq("clear") {
|
|
|
|
println!("\x1B[2J\x1B[1;1H");
|
2019-11-18 11:11:22 -06:00
|
|
|
} else {
|
|
|
|
println!("unknown command: {}", input);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(error) => println!("error reading command: {}", error),
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-06-04 09:31:17 -05:00
|
|
|
fn watch(exercises: &[Exercise], verbose: bool) -> notify::Result<()> {
|
2019-11-09 08:24:24 -06:00
|
|
|
/* Clears the terminal with an ANSI escape code.
|
|
|
|
Works in UNIX and newer Windows terminals. */
|
|
|
|
fn clear_screen() {
|
|
|
|
println!("\x1Bc");
|
|
|
|
}
|
|
|
|
|
2018-11-26 05:41:39 -06:00
|
|
|
let (tx, rx) = channel();
|
|
|
|
|
|
|
|
let mut watcher: RecommendedWatcher = Watcher::new(tx, Duration::from_secs(2))?;
|
2019-03-27 04:58:56 -05:00
|
|
|
watcher.watch(Path::new("./exercises"), RecursiveMode::Recursive)?;
|
2018-11-26 05:41:39 -06:00
|
|
|
|
2019-11-09 08:24:24 -06:00
|
|
|
clear_screen();
|
2018-11-26 05:41:39 -06:00
|
|
|
|
2019-11-18 11:11:22 -06:00
|
|
|
let to_owned_hint = |t: &Exercise| t.hint.to_owned();
|
2020-06-04 09:31:17 -05:00
|
|
|
let failed_exercise_hint = match verify(exercises.iter(), verbose) {
|
2019-12-22 14:27:38 -06:00
|
|
|
Ok(_) => return Ok(()),
|
|
|
|
Err(exercise) => Arc::new(Mutex::new(Some(to_owned_hint(exercise)))),
|
|
|
|
};
|
2019-11-18 11:11:22 -06:00
|
|
|
spawn_watch_shell(&failed_exercise_hint);
|
2018-11-26 05:41:39 -06:00
|
|
|
loop {
|
2019-03-15 18:01:45 -05:00
|
|
|
match rx.recv() {
|
2019-01-09 13:33:58 -06:00
|
|
|
Ok(event) => match event {
|
2019-03-06 12:38:55 -06:00
|
|
|
DebouncedEvent::Create(b) | DebouncedEvent::Chmod(b) | DebouncedEvent::Write(b) => {
|
2019-07-11 16:54:18 -05:00
|
|
|
if b.extension() == Some(OsStr::new("rs")) && b.exists() {
|
2019-04-11 15:41:24 -05:00
|
|
|
let filepath = b.as_path().canonicalize().unwrap();
|
2019-11-11 06:38:24 -06:00
|
|
|
let pending_exercises = exercises
|
2019-04-11 15:41:24 -05:00
|
|
|
.iter()
|
|
|
|
.skip_while(|e| !filepath.ends_with(&e.path));
|
2019-11-09 08:24:24 -06:00
|
|
|
clear_screen();
|
2020-06-04 09:31:17 -05:00
|
|
|
match verify(pending_exercises, verbose) {
|
2019-12-22 14:27:38 -06:00
|
|
|
Ok(_) => return Ok(()),
|
|
|
|
Err(exercise) => {
|
|
|
|
let mut failed_exercise_hint = failed_exercise_hint.lock().unwrap();
|
|
|
|
*failed_exercise_hint = Some(to_owned_hint(exercise));
|
|
|
|
}
|
|
|
|
}
|
2019-03-06 12:38:55 -06:00
|
|
|
}
|
2018-11-26 05:41:39 -06:00
|
|
|
}
|
2019-01-09 13:33:58 -06:00
|
|
|
_ => {}
|
2018-11-26 05:41:39 -06:00
|
|
|
},
|
|
|
|
Err(e) => println!("watch error: {:?}", e),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-11-11 10:15:14 -06:00
|
|
|
|
|
|
|
fn rustc_exists() -> bool {
|
|
|
|
Command::new("rustc")
|
|
|
|
.args(&["--version"])
|
|
|
|
.stdout(Stdio::null())
|
|
|
|
.spawn()
|
|
|
|
.and_then(|mut child| child.wait())
|
|
|
|
.map(|status| status.success())
|
|
|
|
.unwrap_or(false)
|
|
|
|
}
|