2024-03-28 20:29:41 -04:00
|
|
|
use anyhow::{bail, Context, Result};
|
|
|
|
use std::{
|
|
|
|
env::set_current_dir,
|
2024-04-15 21:08:45 -04:00
|
|
|
fs::{self, create_dir},
|
|
|
|
io::ErrorKind,
|
2024-03-28 20:29:41 -04:00
|
|
|
path::Path,
|
|
|
|
};
|
|
|
|
|
2024-04-17 09:55:50 -04:00
|
|
|
use crate::embedded::EMBEDDED_FILES;
|
|
|
|
|
|
|
|
const CARGO_TOML: &[u8] = {
|
|
|
|
let cargo_toml = include_bytes!("../dev/Cargo.toml");
|
|
|
|
// Skip the first line (comment).
|
|
|
|
let mut start_ind = 0;
|
|
|
|
while cargo_toml[start_ind] != b'\n' {
|
|
|
|
start_ind += 1;
|
2024-04-04 09:44:48 -04:00
|
|
|
}
|
2024-04-17 09:55:50 -04:00
|
|
|
cargo_toml.split_at(start_ind + 1).1
|
|
|
|
};
|
2024-04-04 09:44:48 -04:00
|
|
|
|
2024-04-17 09:55:50 -04:00
|
|
|
pub fn init() -> Result<()> {
|
2024-03-28 20:51:08 -04:00
|
|
|
if Path::new("exercises").is_dir() && Path::new("Cargo.toml").is_file() {
|
2024-04-11 19:24:01 -04:00
|
|
|
bail!(PROBABLY_IN_RUSTLINGS_DIR_ERR);
|
2024-03-28 20:51:08 -04:00
|
|
|
}
|
|
|
|
|
2024-03-28 20:29:41 -04:00
|
|
|
let rustlings_path = Path::new("rustlings");
|
|
|
|
if let Err(e) = create_dir(rustlings_path) {
|
|
|
|
if e.kind() == ErrorKind::AlreadyExists {
|
2024-04-11 19:24:01 -04:00
|
|
|
bail!(RUSTLINGS_DIR_ALREADY_EXISTS_ERR);
|
2024-03-28 20:29:41 -04:00
|
|
|
}
|
|
|
|
return Err(e.into());
|
|
|
|
}
|
|
|
|
|
|
|
|
set_current_dir("rustlings")
|
|
|
|
.context("Failed to change the current directory to `rustlings`")?;
|
|
|
|
|
|
|
|
EMBEDDED_FILES
|
|
|
|
.init_exercises_dir()
|
|
|
|
.context("Failed to initialize the `rustlings/exercises` directory")?;
|
|
|
|
|
2024-04-17 09:55:50 -04:00
|
|
|
fs::write("Cargo.toml", CARGO_TOML)
|
2024-04-13 19:15:43 -04:00
|
|
|
.context("Failed to create the file `rustlings/Cargo.toml`")?;
|
2024-03-28 20:29:41 -04:00
|
|
|
|
2024-04-15 21:08:45 -04:00
|
|
|
fs::write(".gitignore", GITIGNORE)
|
|
|
|
.context("Failed to create the file `rustlings/.gitignore`")?;
|
2024-03-30 21:04:41 -04:00
|
|
|
|
2024-04-15 21:08:45 -04:00
|
|
|
create_dir(".vscode").context("Failed to create the directory `rustlings/.vscode`")?;
|
|
|
|
fs::write(".vscode/extensions.json", VS_CODE_EXTENSIONS_JSON)
|
|
|
|
.context("Failed to create the file `rustlings/.vscode/extensions.json`")?;
|
2024-03-28 20:29:41 -04:00
|
|
|
|
2024-04-15 21:15:14 -04:00
|
|
|
println!("{POST_INIT_MSG}");
|
|
|
|
|
2024-03-28 20:29:41 -04:00
|
|
|
Ok(())
|
|
|
|
}
|
2024-04-11 19:24:01 -04:00
|
|
|
|
2024-04-15 21:08:45 -04:00
|
|
|
pub const GITIGNORE: &[u8] = b"Cargo.lock
|
|
|
|
.rustlings-state.txt
|
|
|
|
target
|
2024-04-12 12:57:39 -04:00
|
|
|
";
|
2024-04-11 19:24:01 -04:00
|
|
|
|
2024-04-15 21:08:45 -04:00
|
|
|
pub const VS_CODE_EXTENSIONS_JSON: &[u8] = br#"{"recommendations":["rust-lang.rust-analyzer"]}"#;
|
2024-04-11 19:24:01 -04:00
|
|
|
|
|
|
|
const PROBABLY_IN_RUSTLINGS_DIR_ERR: &str =
|
|
|
|
"A directory with the name `exercises` and a file with the name `Cargo.toml` already exist
|
|
|
|
in the current directory. It looks like Rustlings was already initialized here.
|
|
|
|
Run `rustlings` for instructions on getting started with the exercises.
|
|
|
|
|
|
|
|
If you didn't already initialize Rustlings, please initialize it in another directory.";
|
|
|
|
|
|
|
|
const RUSTLINGS_DIR_ALREADY_EXISTS_ERR: &str =
|
|
|
|
"A directory with the name `rustlings` already exists in the current directory.
|
|
|
|
You probably already initialized Rustlings.
|
|
|
|
Run `cd rustlings`
|
|
|
|
Then run `rustlings` again";
|
2024-04-15 21:15:14 -04:00
|
|
|
|
|
|
|
const POST_INIT_MSG: &str = "Done initialization!
|
|
|
|
|
|
|
|
Run `cd rustlings` to go into the generated directory.
|
|
|
|
Then run `rustlings` to get started.";
|