mirror of
https://github.com/notohh/rustlings.git
synced 2024-11-22 05:52:23 -05:00
Start with the state
This commit is contained in:
parent
b0f19fd862
commit
3f2d41de9e
2 changed files with 33 additions and 0 deletions
|
@ -16,6 +16,7 @@ mod embedded;
|
||||||
mod exercise;
|
mod exercise;
|
||||||
mod init;
|
mod init;
|
||||||
mod run;
|
mod run;
|
||||||
|
mod state;
|
||||||
mod tui;
|
mod tui;
|
||||||
mod verify;
|
mod verify;
|
||||||
|
|
||||||
|
|
32
src/state.rs
Normal file
32
src/state.rs
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
use anyhow::{Context, Result};
|
||||||
|
use serde::{Deserialize, Serialize};
|
||||||
|
use std::{fs, io, path::PathBuf};
|
||||||
|
|
||||||
|
#[derive(Serialize, Deserialize)]
|
||||||
|
pub struct ExerciseState {
|
||||||
|
pub path: PathBuf,
|
||||||
|
pub done: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Serialize, Deserialize)]
|
||||||
|
pub struct State {
|
||||||
|
pub progress: Vec<ExerciseState>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl State {
|
||||||
|
pub fn read() -> Result<Self> {
|
||||||
|
let file_content =
|
||||||
|
fs::read(".rustlings.json").context("Failed to read the file `.rustlings.json`")?;
|
||||||
|
|
||||||
|
serde_json::de::from_slice(&file_content)
|
||||||
|
.context("Failed to deserialize the file `.rustlings.json`")
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn write(&self) -> io::Result<()> {
|
||||||
|
// TODO: Capacity
|
||||||
|
let mut buf = Vec::with_capacity(1 << 12);
|
||||||
|
serde_json::ser::to_writer(&mut buf, self).context("Failed to serialize the state");
|
||||||
|
dbg!(buf.len());
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue