2019-11-11 06:38:24 -06:00
|
|
|
use regex::Regex;
|
2019-04-12 16:48:57 -05:00
|
|
|
use serde::Deserialize;
|
2019-04-11 15:41:24 -05:00
|
|
|
use std::fmt::{self, Display, Formatter};
|
2019-11-11 06:38:24 -06:00
|
|
|
use std::fs::{remove_file, File};
|
|
|
|
use std::io::Read;
|
2019-05-22 06:50:23 -05:00
|
|
|
use std::path::PathBuf;
|
2020-02-20 13:11:53 -06:00
|
|
|
use std::process::{self, Command};
|
2019-04-11 15:41:24 -05:00
|
|
|
|
|
|
|
const RUSTC_COLOR_ARGS: &[&str] = &["--color", "always"];
|
2019-11-11 06:38:24 -06:00
|
|
|
const I_AM_DONE_REGEX: &str = r"(?m)^\s*///?\s*I\s+AM\s+NOT\s+DONE";
|
|
|
|
const CONTEXT: usize = 2;
|
2019-04-11 15:41:24 -05:00
|
|
|
|
|
|
|
fn temp_file() -> String {
|
|
|
|
format!("./temp_{}", process::id())
|
|
|
|
}
|
|
|
|
|
2019-11-11 06:38:24 -06:00
|
|
|
#[derive(Deserialize, Copy, Clone)]
|
2019-04-11 15:41:24 -05:00
|
|
|
#[serde(rename_all = "lowercase")]
|
|
|
|
pub enum Mode {
|
|
|
|
Compile,
|
|
|
|
Test,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct ExerciseList {
|
|
|
|
pub exercises: Vec<Exercise>,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct Exercise {
|
2019-11-11 08:46:32 -06:00
|
|
|
pub name: String,
|
2019-04-11 15:41:24 -05:00
|
|
|
pub path: PathBuf,
|
|
|
|
pub mode: Mode,
|
2019-11-11 09:51:38 -06:00
|
|
|
pub hint: String,
|
2019-04-11 15:41:24 -05:00
|
|
|
}
|
|
|
|
|
2019-11-11 06:38:24 -06:00
|
|
|
#[derive(PartialEq, Debug)]
|
|
|
|
pub enum State {
|
|
|
|
Done,
|
|
|
|
Pending(Vec<ContextLine>),
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq, Debug)]
|
|
|
|
pub struct ContextLine {
|
|
|
|
pub line: String,
|
|
|
|
pub number: usize,
|
|
|
|
pub important: bool,
|
|
|
|
}
|
|
|
|
|
2020-02-20 13:11:53 -06:00
|
|
|
pub struct CompiledExercise<'a> {
|
|
|
|
exercise: &'a Exercise,
|
|
|
|
_handle: FileHandle,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'a> CompiledExercise<'a> {
|
|
|
|
pub fn run(&self) -> Result<ExerciseOutput, ExerciseOutput> {
|
|
|
|
self.exercise.run()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct ExerciseOutput {
|
|
|
|
pub stdout: String,
|
|
|
|
pub stderr: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
struct FileHandle;
|
|
|
|
|
|
|
|
impl Drop for FileHandle {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
clean();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-11 15:41:24 -05:00
|
|
|
impl Exercise {
|
2020-02-20 13:11:53 -06:00
|
|
|
pub fn compile(&self) -> Result<CompiledExercise, ExerciseOutput> {
|
|
|
|
let cmd = match self.mode {
|
2019-04-11 15:41:24 -05:00
|
|
|
Mode::Compile => Command::new("rustc")
|
|
|
|
.args(&[self.path.to_str().unwrap(), "-o", &temp_file()])
|
|
|
|
.args(RUSTC_COLOR_ARGS)
|
|
|
|
.output(),
|
|
|
|
Mode::Test => Command::new("rustc")
|
|
|
|
.args(&["--test", self.path.to_str().unwrap(), "-o", &temp_file()])
|
|
|
|
.args(RUSTC_COLOR_ARGS)
|
|
|
|
.output(),
|
|
|
|
}
|
2020-02-20 13:11:53 -06:00
|
|
|
.expect("Failed to run 'compile' command.");
|
|
|
|
|
|
|
|
if cmd.status.success() {
|
|
|
|
Ok(CompiledExercise {
|
|
|
|
exercise: &self,
|
|
|
|
_handle: FileHandle,
|
|
|
|
})
|
|
|
|
} else {
|
|
|
|
clean();
|
|
|
|
Err(ExerciseOutput {
|
|
|
|
stdout: String::from_utf8_lossy(&cmd.stdout).to_string(),
|
|
|
|
stderr: String::from_utf8_lossy(&cmd.stderr).to_string(),
|
|
|
|
})
|
|
|
|
}
|
2019-04-11 15:41:24 -05:00
|
|
|
}
|
|
|
|
|
2020-02-20 13:11:53 -06:00
|
|
|
fn run(&self) -> Result<ExerciseOutput, ExerciseOutput> {
|
|
|
|
let cmd = Command::new(&temp_file())
|
2019-04-11 15:41:24 -05:00
|
|
|
.output()
|
2020-02-20 13:11:53 -06:00
|
|
|
.expect("Failed to run 'run' command");
|
|
|
|
|
|
|
|
let output = ExerciseOutput {
|
|
|
|
stdout: String::from_utf8_lossy(&cmd.stdout).to_string(),
|
|
|
|
stderr: String::from_utf8_lossy(&cmd.stderr).to_string(),
|
|
|
|
};
|
2019-04-11 15:41:24 -05:00
|
|
|
|
2020-02-20 13:11:53 -06:00
|
|
|
if cmd.status.success() {
|
|
|
|
Ok(output)
|
|
|
|
} else {
|
|
|
|
Err(output)
|
|
|
|
}
|
2019-04-11 15:41:24 -05:00
|
|
|
}
|
2019-11-11 06:38:24 -06:00
|
|
|
|
|
|
|
pub fn state(&self) -> State {
|
|
|
|
let mut source_file =
|
|
|
|
File::open(&self.path).expect("We were unable to open the exercise file!");
|
|
|
|
|
|
|
|
let source = {
|
|
|
|
let mut s = String::new();
|
|
|
|
source_file
|
|
|
|
.read_to_string(&mut s)
|
|
|
|
.expect("We were unable to read the exercise file!");
|
|
|
|
s
|
|
|
|
};
|
|
|
|
|
|
|
|
let re = Regex::new(I_AM_DONE_REGEX).unwrap();
|
|
|
|
|
|
|
|
if !re.is_match(&source) {
|
|
|
|
return State::Done;
|
|
|
|
}
|
|
|
|
|
|
|
|
let matched_line_index = source
|
|
|
|
.lines()
|
|
|
|
.enumerate()
|
|
|
|
.filter_map(|(i, line)| if re.is_match(line) { Some(i) } else { None })
|
|
|
|
.next()
|
|
|
|
.expect("This should not happen at all");
|
|
|
|
|
|
|
|
let min_line = ((matched_line_index as i32) - (CONTEXT as i32)).max(0) as usize;
|
|
|
|
let max_line = matched_line_index + CONTEXT;
|
|
|
|
|
|
|
|
let context = source
|
|
|
|
.lines()
|
|
|
|
.enumerate()
|
|
|
|
.filter(|&(i, _)| i >= min_line && i <= max_line)
|
|
|
|
.map(|(i, line)| ContextLine {
|
|
|
|
line: line.to_string(),
|
|
|
|
number: i + 1,
|
|
|
|
important: i == matched_line_index,
|
|
|
|
})
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
State::Pending(context)
|
|
|
|
}
|
2019-04-11 15:41:24 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Display for Exercise {
|
|
|
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
|
|
|
write!(f, "{}", self.path.to_str().unwrap())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-20 13:11:53 -06:00
|
|
|
fn clean() {
|
|
|
|
let _ignored = remove_file(&temp_file());
|
|
|
|
}
|
|
|
|
|
2019-04-12 16:48:57 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::*;
|
2019-05-22 06:50:23 -05:00
|
|
|
use std::path::Path;
|
2019-04-12 16:48:57 -05:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_clean() {
|
|
|
|
File::create(&temp_file()).unwrap();
|
|
|
|
let exercise = Exercise {
|
2019-11-11 08:46:32 -06:00
|
|
|
name: String::from("example"),
|
2020-02-20 13:11:53 -06:00
|
|
|
path: PathBuf::from("tests/fixture/state/pending_exercise.rs"),
|
|
|
|
mode: Mode::Compile,
|
2019-11-11 09:51:38 -06:00
|
|
|
hint: String::from(""),
|
2019-04-12 16:48:57 -05:00
|
|
|
};
|
2020-02-20 13:11:53 -06:00
|
|
|
let compiled = exercise.compile().unwrap();
|
|
|
|
drop(compiled);
|
2019-04-12 16:48:57 -05:00
|
|
|
assert!(!Path::new(&temp_file()).exists());
|
|
|
|
}
|
2019-11-11 06:38:24 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_pending_state() {
|
|
|
|
let exercise = Exercise {
|
2019-11-11 10:28:19 -06:00
|
|
|
name: "pending_exercise".into(),
|
2019-11-11 06:38:24 -06:00
|
|
|
path: PathBuf::from("tests/fixture/state/pending_exercise.rs"),
|
|
|
|
mode: Mode::Compile,
|
2019-11-11 10:28:19 -06:00
|
|
|
hint: String::new(),
|
2019-11-11 06:38:24 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
let state = exercise.state();
|
|
|
|
let expected = vec![
|
|
|
|
ContextLine {
|
|
|
|
line: "// fake_exercise".to_string(),
|
|
|
|
number: 1,
|
|
|
|
important: false,
|
|
|
|
},
|
|
|
|
ContextLine {
|
|
|
|
line: "".to_string(),
|
|
|
|
number: 2,
|
|
|
|
important: false,
|
|
|
|
},
|
|
|
|
ContextLine {
|
|
|
|
line: "// I AM NOT DONE".to_string(),
|
|
|
|
number: 3,
|
|
|
|
important: true,
|
|
|
|
},
|
|
|
|
ContextLine {
|
|
|
|
line: "".to_string(),
|
|
|
|
number: 4,
|
|
|
|
important: false,
|
|
|
|
},
|
|
|
|
ContextLine {
|
|
|
|
line: "fn main() {".to_string(),
|
|
|
|
number: 5,
|
|
|
|
important: false,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
assert_eq!(state, State::Pending(expected));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_finished_exercise() {
|
|
|
|
let exercise = Exercise {
|
2019-11-11 10:28:19 -06:00
|
|
|
name: "finished_exercise".into(),
|
2019-11-11 06:38:24 -06:00
|
|
|
path: PathBuf::from("tests/fixture/state/finished_exercise.rs"),
|
|
|
|
mode: Mode::Compile,
|
2019-11-11 10:28:19 -06:00
|
|
|
hint: String::new(),
|
2019-11-11 06:38:24 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
assert_eq!(exercise.state(), State::Done);
|
|
|
|
}
|
2019-04-11 15:41:24 -05:00
|
|
|
}
|