2024-03-28 20:29:41 -04:00
|
|
|
use anyhow::{bail, Context, Result};
|
2024-07-25 10:26:48 -04:00
|
|
|
use ratatui::crossterm::style::Stylize;
|
2024-08-08 18:49:30 -04:00
|
|
|
use serde::Deserialize;
|
2024-03-28 20:29:41 -04:00
|
|
|
use std::{
|
|
|
|
env::set_current_dir,
|
2024-04-15 21:08:45 -04:00
|
|
|
fs::{self, create_dir},
|
2024-08-07 20:45:18 -04:00
|
|
|
io::{self, Write},
|
2024-08-08 06:51:27 -04:00
|
|
|
path::{Path, PathBuf},
|
2024-04-25 09:41:52 -04:00
|
|
|
process::{Command, Stdio},
|
2024-03-28 20:29:41 -04:00
|
|
|
};
|
|
|
|
|
2024-08-07 20:45:18 -04:00
|
|
|
use crate::{
|
|
|
|
cargo_toml::updated_cargo_toml, embedded::EMBEDDED_FILES, info_file::InfoFile,
|
|
|
|
term::press_enter_prompt,
|
|
|
|
};
|
2024-04-04 09:44:48 -04:00
|
|
|
|
2024-08-08 18:49:30 -04:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
struct CargoLocateProject {
|
|
|
|
root: PathBuf,
|
|
|
|
}
|
|
|
|
|
2024-04-17 09:55:50 -04:00
|
|
|
pub fn init() -> Result<()> {
|
2024-08-07 20:45:18 -04:00
|
|
|
let rustlings_dir = Path::new("rustlings");
|
|
|
|
if rustlings_dir.exists() {
|
|
|
|
bail!(RUSTLINGS_DIR_ALREADY_EXISTS_ERR);
|
2024-03-28 20:51:08 -04:00
|
|
|
}
|
|
|
|
|
2024-08-08 18:49:30 -04:00
|
|
|
let locate_project_output = Command::new("cargo")
|
|
|
|
.arg("locate-project")
|
|
|
|
.arg("-q")
|
|
|
|
.arg("--workspace")
|
|
|
|
.stdin(Stdio::null())
|
2024-08-08 19:27:31 -04:00
|
|
|
.stderr(Stdio::null())
|
2024-08-08 18:49:30 -04:00
|
|
|
.output()
|
|
|
|
.context(CARGO_LOCATE_PROJECT_ERR)?;
|
|
|
|
|
2024-08-07 20:45:18 -04:00
|
|
|
let mut stdout = io::stdout().lock();
|
|
|
|
let mut init_git = true;
|
|
|
|
|
2024-08-08 18:49:30 -04:00
|
|
|
if locate_project_output.status.success() {
|
2024-08-07 20:45:18 -04:00
|
|
|
if Path::new("exercises").exists() && Path::new("solutions").exists() {
|
|
|
|
bail!(IN_INITIALIZED_DIR_ERR);
|
2024-03-28 20:29:41 -04:00
|
|
|
}
|
2024-08-08 18:49:30 -04:00
|
|
|
|
|
|
|
let workspace_manifest =
|
|
|
|
serde_json::de::from_slice::<CargoLocateProject>(&locate_project_output.stdout)
|
|
|
|
.context(
|
|
|
|
"Failed to read the field `root` from the output of `cargo locate-project …`",
|
|
|
|
)?
|
|
|
|
.root;
|
|
|
|
|
|
|
|
let workspace_manifest_content = fs::read_to_string(&workspace_manifest)
|
|
|
|
.with_context(|| format!("Failed to read the file {}", workspace_manifest.display()))?;
|
|
|
|
if !workspace_manifest_content.contains("[workspace]\n")
|
|
|
|
&& !workspace_manifest_content.contains("workspace.")
|
|
|
|
{
|
|
|
|
bail!("The current directory is already part of a Cargo project.\nPlease initialize Rustlings in a different directory");
|
2024-08-08 06:51:27 -04:00
|
|
|
}
|
2024-08-08 18:49:30 -04:00
|
|
|
|
2024-08-08 19:14:08 -04:00
|
|
|
stdout.write_all(b"This command will create the directory `rustlings/` as a member of this Cargo workspace.\nPress ENTER to continue ")?;
|
|
|
|
press_enter_prompt(&mut stdout)?;
|
|
|
|
|
2024-08-08 18:49:30 -04:00
|
|
|
// Make sure "rustlings" is added to `workspace.members` by making
|
|
|
|
// Cargo initialize a new project.
|
|
|
|
let status = Command::new("cargo")
|
|
|
|
.arg("new")
|
|
|
|
.arg("-q")
|
|
|
|
.arg("--vcs")
|
|
|
|
.arg("none")
|
|
|
|
.arg("rustlings")
|
|
|
|
.stdin(Stdio::null())
|
|
|
|
.stdout(Stdio::null())
|
|
|
|
.status()?;
|
|
|
|
if !status.success() {
|
2024-08-08 19:08:52 -04:00
|
|
|
bail!("Failed to initialize a new Cargo workspace member.\nPlease initialize Rustlings in a different directory");
|
2024-08-08 18:49:30 -04:00
|
|
|
}
|
|
|
|
|
2024-08-08 19:16:45 -04:00
|
|
|
stdout.write_all(b"The directory `rustlings` has been added to `workspace.members` in the `Cargo.toml` file of this Cargo workspace.\n")?;
|
2024-08-08 18:49:30 -04:00
|
|
|
fs::remove_dir_all("rustlings")
|
|
|
|
.context("Failed to remove the temporary directory `rustlings/`")?;
|
|
|
|
init_git = false;
|
2024-08-08 19:14:08 -04:00
|
|
|
} else {
|
|
|
|
stdout.write_all(b"This command will create the directory `rustlings/` which will contain the exercises.\nPress ENTER to continue ")?;
|
|
|
|
press_enter_prompt(&mut stdout)?;
|
2024-03-28 20:29:41 -04:00
|
|
|
}
|
|
|
|
|
2024-08-07 20:45:18 -04:00
|
|
|
create_dir(rustlings_dir).context("Failed to create the `rustlings/` directory")?;
|
|
|
|
set_current_dir(rustlings_dir)
|
2024-05-13 18:35:12 -04:00
|
|
|
.context("Failed to change the current directory to `rustlings/`")?;
|
2024-03-28 20:29:41 -04:00
|
|
|
|
2024-04-23 13:18:25 -04:00
|
|
|
let info_file = InfoFile::parse()?;
|
2024-03-28 20:29:41 -04:00
|
|
|
EMBEDDED_FILES
|
2024-04-23 13:18:25 -04:00
|
|
|
.init_exercises_dir(&info_file.exercises)
|
2024-03-28 20:29:41 -04:00
|
|
|
.context("Failed to initialize the `rustlings/exercises` directory")?;
|
|
|
|
|
2024-05-25 12:19:30 -04:00
|
|
|
create_dir("solutions").context("Failed to create the `solutions/` directory")?;
|
2024-08-07 18:20:20 -04:00
|
|
|
fs::write(
|
|
|
|
"solutions/README.md",
|
|
|
|
include_bytes!("../solutions/README.md"),
|
|
|
|
)
|
|
|
|
.context("Failed to create the file rustlings/solutions/README.md")?;
|
2024-05-25 12:19:30 -04:00
|
|
|
for dir in EMBEDDED_FILES.exercise_dirs {
|
|
|
|
let mut dir_path = String::with_capacity(10 + dir.name.len());
|
|
|
|
dir_path.push_str("solutions/");
|
|
|
|
dir_path.push_str(dir.name);
|
|
|
|
create_dir(&dir_path)
|
|
|
|
.with_context(|| format!("Failed to create the directory {dir_path}"))?;
|
|
|
|
}
|
|
|
|
for exercise_info in &info_file.exercises {
|
|
|
|
let solution_path = exercise_info.sol_path();
|
|
|
|
fs::write(&solution_path, INIT_SOLUTION_FILE)
|
|
|
|
.with_context(|| format!("Failed to create the file {solution_path}"))?;
|
|
|
|
}
|
|
|
|
|
2024-04-25 13:58:55 -04:00
|
|
|
let current_cargo_toml = include_str!("../dev-Cargo.toml");
|
2024-04-21 14:22:01 -04:00
|
|
|
// Skip the first line (comment).
|
|
|
|
let newline_ind = current_cargo_toml
|
|
|
|
.as_bytes()
|
|
|
|
.iter()
|
|
|
|
.position(|c| *c == b'\n')
|
2024-05-13 18:35:12 -04:00
|
|
|
.context("The embedded `Cargo.toml` is empty or contains only one line")?;
|
|
|
|
let current_cargo_toml = current_cargo_toml
|
|
|
|
.get(newline_ind + 1..)
|
|
|
|
.context("The embedded `Cargo.toml` contains only one line")?;
|
2024-04-21 14:22:01 -04:00
|
|
|
let updated_cargo_toml = updated_cargo_toml(&info_file.exercises, current_cargo_toml, b"")
|
|
|
|
.context("Failed to generate `Cargo.toml`")?;
|
|
|
|
fs::write("Cargo.toml", updated_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-08-07 20:45:18 -04:00
|
|
|
if init_git {
|
|
|
|
// Ignore any Git error because Git initialization is not required.
|
|
|
|
let _ = Command::new("git")
|
|
|
|
.arg("init")
|
|
|
|
.stdin(Stdio::null())
|
|
|
|
.stderr(Stdio::null())
|
|
|
|
.status();
|
|
|
|
}
|
2024-04-25 09:41:52 -04:00
|
|
|
|
2024-08-07 20:45:18 -04:00
|
|
|
writeln!(
|
|
|
|
stdout,
|
2024-04-25 09:51:12 -04:00
|
|
|
"\n{}\n\n{}",
|
|
|
|
"Initialization done ✓".green(),
|
|
|
|
POST_INIT_MSG.bold(),
|
2024-08-07 20:45:18 -04:00
|
|
|
)?;
|
2024-04-15 21:15:14 -04:00
|
|
|
|
2024-03-28 20:29:41 -04:00
|
|
|
Ok(())
|
|
|
|
}
|
2024-04-11 19:24:01 -04:00
|
|
|
|
2024-08-08 18:49:30 -04:00
|
|
|
const CARGO_LOCATE_PROJECT_ERR: &str = "Failed to run the command `cargo locate-project …`
|
|
|
|
Did you already install Rust?
|
|
|
|
Try running `cargo --version` to diagnose the problem.";
|
|
|
|
|
2024-05-25 12:19:30 -04:00
|
|
|
const INIT_SOLUTION_FILE: &[u8] = b"fn main() {
|
|
|
|
// DON'T EDIT THIS SOLUTION FILE!
|
|
|
|
// It will be automatically filled after you finish the exercise.
|
|
|
|
}
|
|
|
|
";
|
|
|
|
|
2024-08-07 18:20:04 -04:00
|
|
|
const GITIGNORE: &[u8] = b"Cargo.lock
|
|
|
|
target/
|
|
|
|
.vscode/
|
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
|
|
|
|
2024-08-07 20:45:18 -04:00
|
|
|
const IN_INITIALIZED_DIR_ERR: &str = "It looks like Rustlings is already initialized in this directory.
|
2024-04-11 19:24:01 -04:00
|
|
|
|
2024-05-13 18:35:12 -04:00
|
|
|
If you already initialized Rustlings, run the command `rustlings` for instructions on getting started with the exercises.
|
2024-08-08 18:49:30 -04:00
|
|
|
Otherwise, please run `rustlings init` again in a different directory.";
|
2024-04-11 19:24:01 -04:00
|
|
|
|
|
|
|
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
|
|
|
|
2024-04-25 09:51:12 -04:00
|
|
|
const POST_INIT_MSG: &str = "Run `cd rustlings` to go into the generated directory.
|
2024-04-15 21:15:14 -04:00
|
|
|
Then run `rustlings` to get started.";
|