mirror of
https://github.com/notohh/rustlings.git
synced 2024-12-18 06:58:10 -05:00
Fix error about too many open files during the final check
This commit is contained in:
parent
cba4a6f9c8
commit
afc320bed4
1 changed files with 65 additions and 38 deletions
101
src/app_state.rs
101
src/app_state.rs
|
@ -1,8 +1,8 @@
|
||||||
use anyhow::{bail, Context, Error, Result};
|
use anyhow::{bail, Context, Result};
|
||||||
use std::{
|
use std::{
|
||||||
env,
|
env,
|
||||||
fs::{self, File},
|
fs::{self, File},
|
||||||
io::{Read, StdoutLock, Write},
|
io::{self, Read, StdoutLock, Write},
|
||||||
path::Path,
|
path::Path,
|
||||||
process::{Command, Stdio},
|
process::{Command, Stdio},
|
||||||
thread,
|
thread,
|
||||||
|
@ -35,6 +35,12 @@ pub enum StateFileStatus {
|
||||||
NotRead,
|
NotRead,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
enum AllExercisesCheck {
|
||||||
|
Pending(usize),
|
||||||
|
AllDone,
|
||||||
|
CheckedUntil(usize),
|
||||||
|
}
|
||||||
|
|
||||||
pub struct AppState {
|
pub struct AppState {
|
||||||
current_exercise_ind: usize,
|
current_exercise_ind: usize,
|
||||||
exercises: Vec<Exercise>,
|
exercises: Vec<Exercise>,
|
||||||
|
@ -340,6 +346,58 @@ impl AppState {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Return the exercise index of the first pending exercise found.
|
||||||
|
fn check_all_exercises(&self, stdout: &mut StdoutLock) -> Result<Option<usize>> {
|
||||||
|
stdout.write_all(RERUNNING_ALL_EXERCISES_MSG)?;
|
||||||
|
let n_exercises = self.exercises.len();
|
||||||
|
|
||||||
|
let status = thread::scope(|s| {
|
||||||
|
let handles = self
|
||||||
|
.exercises
|
||||||
|
.iter()
|
||||||
|
.map(|exercise| s.spawn(|| exercise.run_exercise(None, &self.cmd_runner)))
|
||||||
|
.collect::<Vec<_>>();
|
||||||
|
|
||||||
|
for (exercise_ind, handle) in handles.into_iter().enumerate() {
|
||||||
|
write!(stdout, "\rProgress: {exercise_ind}/{n_exercises}")?;
|
||||||
|
stdout.flush()?;
|
||||||
|
|
||||||
|
let Ok(success) = handle.join().unwrap() else {
|
||||||
|
return Ok(AllExercisesCheck::CheckedUntil(exercise_ind));
|
||||||
|
};
|
||||||
|
|
||||||
|
if !success {
|
||||||
|
return Ok(AllExercisesCheck::Pending(exercise_ind));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok::<_, io::Error>(AllExercisesCheck::AllDone)
|
||||||
|
})?;
|
||||||
|
|
||||||
|
let mut exercise_ind = match status {
|
||||||
|
AllExercisesCheck::Pending(exercise_ind) => return Ok(Some(exercise_ind)),
|
||||||
|
AllExercisesCheck::AllDone => return Ok(None),
|
||||||
|
AllExercisesCheck::CheckedUntil(ind) => ind,
|
||||||
|
};
|
||||||
|
|
||||||
|
// We got an error while checking all exercises in parallel.
|
||||||
|
// This could be because we exceeded the limit of open file descriptors.
|
||||||
|
// Therefore, try to continue the check sequentially.
|
||||||
|
for exercise in &self.exercises[exercise_ind..] {
|
||||||
|
write!(stdout, "\rProgress: {exercise_ind}/{n_exercises}")?;
|
||||||
|
stdout.flush()?;
|
||||||
|
|
||||||
|
let success = exercise.run_exercise(None, &self.cmd_runner)?;
|
||||||
|
if !success {
|
||||||
|
return Ok(Some(exercise_ind));
|
||||||
|
}
|
||||||
|
|
||||||
|
exercise_ind += 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ok(None)
|
||||||
|
}
|
||||||
|
|
||||||
/// Mark the current exercise as done and move on to the next pending exercise if one exists.
|
/// Mark the current exercise as done and move on to the next pending exercise if one exists.
|
||||||
/// If all exercises are marked as done, run all of them to make sure that they are actually
|
/// If all exercises are marked as done, run all of them to make sure that they are actually
|
||||||
/// done. If an exercise which is marked as done fails, mark it as pending and continue on it.
|
/// done. If an exercise which is marked as done fails, mark it as pending and continue on it.
|
||||||
|
@ -355,44 +413,13 @@ impl AppState {
|
||||||
return Ok(ExercisesProgress::NewPending);
|
return Ok(ExercisesProgress::NewPending);
|
||||||
}
|
}
|
||||||
|
|
||||||
stdout.write_all(RERUNNING_ALL_EXERCISES_MSG)?;
|
if let Some(pending_exercise_ind) = self.check_all_exercises(stdout)? {
|
||||||
|
|
||||||
let n_exercises = self.exercises.len();
|
|
||||||
|
|
||||||
let pending_exercise_ind = thread::scope(|s| {
|
|
||||||
let handles = self
|
|
||||||
.exercises
|
|
||||||
.iter_mut()
|
|
||||||
.map(|exercise| {
|
|
||||||
s.spawn(|| {
|
|
||||||
let success = exercise.run_exercise(None, &self.cmd_runner)?;
|
|
||||||
exercise.done = success;
|
|
||||||
Ok::<_, Error>(success)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
.collect::<Vec<_>>();
|
|
||||||
|
|
||||||
for (exercise_ind, handle) in handles.into_iter().enumerate() {
|
|
||||||
write!(stdout, "\rProgress: {exercise_ind}/{n_exercises}")?;
|
|
||||||
stdout.flush()?;
|
|
||||||
|
|
||||||
let success = handle.join().unwrap()?;
|
|
||||||
if !success {
|
|
||||||
stdout.write_all(b"\n\n")?;
|
stdout.write_all(b"\n\n")?;
|
||||||
return Ok(Some(exercise_ind));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Ok::<_, Error>(None)
|
|
||||||
})?;
|
|
||||||
|
|
||||||
if let Some(pending_exercise_ind) = pending_exercise_ind {
|
|
||||||
self.current_exercise_ind = pending_exercise_ind;
|
self.current_exercise_ind = pending_exercise_ind;
|
||||||
self.n_done = self
|
self.exercises[pending_exercise_ind].done = false;
|
||||||
.exercises
|
// All exercises were marked as done.
|
||||||
.iter()
|
self.n_done -= 1;
|
||||||
.filter(|exercise| exercise.done)
|
|
||||||
.count() as u16;
|
|
||||||
self.write()?;
|
self.write()?;
|
||||||
return Ok(ExercisesProgress::NewPending);
|
return Ok(ExercisesProgress::NewPending);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue