rustlings/src/init.rs

104 lines
3.1 KiB
Rust
Raw Normal View History

use anyhow::{bail, Context, Result};
use std::{
env::set_current_dir,
fs::{create_dir, OpenOptions},
io::{self, ErrorKind, Write},
path::Path,
};
use crate::{embedded::EMBEDDED_FILES, exercise::Exercise};
fn create_cargo_toml(exercises: &[Exercise]) -> io::Result<()> {
let mut cargo_toml = Vec::with_capacity(1 << 13);
2024-04-04 09:44:48 -04:00
cargo_toml.extend_from_slice(b"bin = [\n");
for exercise in exercises {
cargo_toml.extend_from_slice(b" { name = \"");
cargo_toml.extend_from_slice(exercise.name.as_bytes());
cargo_toml.extend_from_slice(b"\", path = \"");
cargo_toml.extend_from_slice(exercise.path.to_str().unwrap().as_bytes());
cargo_toml.extend_from_slice(b"\" },\n");
}
cargo_toml.extend_from_slice(
2024-04-04 09:44:48 -04:00
br#"]
[package]
name = "rustlings"
edition = "2021"
publish = false
"#,
);
OpenOptions::new()
.create_new(true)
.write(true)
.open("Cargo.toml")?
.write_all(&cargo_toml)
}
2024-03-30 21:04:41 -04:00
fn create_gitignore() -> io::Result<()> {
OpenOptions::new()
.create_new(true)
.write(true)
.open(".gitignore")?
2024-04-11 19:24:01 -04:00
.write_all(GITIGNORE)
2024-03-30 21:04:41 -04:00
}
fn create_vscode_dir() -> Result<()> {
create_dir(".vscode").context("Failed to create the directory `.vscode`")?;
OpenOptions::new()
.create_new(true)
.write(true)
.open(".vscode/extensions.json")?
2024-04-11 19:24:01 -04:00
.write_all(VS_CODE_EXTENSIONS_JSON)?;
Ok(())
}
2024-04-07 17:37:40 -04:00
pub fn init(exercises: &[Exercise]) -> 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
}
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);
}
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")?;
create_cargo_toml(exercises).context("Failed to create the file `rustlings/Cargo.toml`")?;
2024-03-30 21:04:41 -04:00
create_gitignore().context("Failed to create the file `rustlings/.gitignore`")?;
create_vscode_dir().context("Failed to create the file `rustlings/.vscode/extensions.json`")?;
Ok(())
}
2024-04-11 19:24:01 -04:00
const GITIGNORE: &[u8] = b"/target
/.rustlings-state.json
";
2024-04-11 19:24:01 -04:00
const VS_CODE_EXTENSIONS_JSON: &[u8] = br#"{"recommendations":["rust-lang.rust-analyzer"]}"#;
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";