2018-07-30 06:06:22 -05:00
|
|
|
extern crate clap;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate failure;
|
2018-07-30 08:16:58 -05:00
|
|
|
extern crate tools;
|
2018-07-31 07:40:40 -05:00
|
|
|
extern crate walkdir;
|
2018-07-30 06:06:22 -05:00
|
|
|
|
2018-07-30 08:16:58 -05:00
|
|
|
use clap::{App, Arg, SubCommand};
|
2018-07-31 07:40:40 -05:00
|
|
|
use std::{
|
|
|
|
collections::HashMap,
|
|
|
|
fs,
|
|
|
|
path::{Path, PathBuf},
|
2018-09-15 18:12:53 -05:00
|
|
|
process::Command,
|
2018-07-31 07:40:40 -05:00
|
|
|
};
|
2018-10-15 16:44:23 -05:00
|
|
|
use tools::{
|
|
|
|
collect_tests, project_root, render_template, update, Result, Test, AST, AST_TEMPLATE,
|
|
|
|
SYNTAX_KINDS, SYNTAX_KINDS_TEMPLATE,
|
|
|
|
};
|
2018-07-30 06:06:22 -05:00
|
|
|
|
2018-09-16 04:54:24 -05:00
|
|
|
const GRAMMAR_DIR: &str = "./crates/ra_syntax/src/grammar";
|
|
|
|
const INLINE_TESTS_DIR: &str = "./crates/ra_syntax/tests/data/parser/inline";
|
2018-07-30 06:06:22 -05:00
|
|
|
|
|
|
|
fn main() -> Result<()> {
|
|
|
|
let matches = App::new("tasks")
|
|
|
|
.setting(clap::AppSettings::SubcommandRequiredElseHelp)
|
|
|
|
.arg(
|
|
|
|
Arg::with_name("verify")
|
|
|
|
.long("--verify")
|
|
|
|
.help("Verify that generated code is up-to-date")
|
2018-07-30 06:08:06 -05:00
|
|
|
.global(true),
|
2018-07-30 06:06:22 -05:00
|
|
|
)
|
|
|
|
.subcommand(SubCommand::with_name("gen-kinds"))
|
|
|
|
.subcommand(SubCommand::with_name("gen-tests"))
|
2018-07-30 14:17:33 -05:00
|
|
|
.subcommand(SubCommand::with_name("install-code"))
|
2018-07-30 06:06:22 -05:00
|
|
|
.get_matches();
|
|
|
|
match matches.subcommand() {
|
2018-07-30 14:17:33 -05:00
|
|
|
("install-code", _) => install_code_extension()?,
|
2018-07-30 06:06:22 -05:00
|
|
|
(name, Some(matches)) => run_gen_command(name, matches.is_present("verify"))?,
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run_gen_command(name: &str, verify: bool) -> Result<()> {
|
|
|
|
match name {
|
2018-08-09 09:43:39 -05:00
|
|
|
"gen-kinds" => {
|
2018-10-15 16:44:23 -05:00
|
|
|
update(
|
|
|
|
&project_root().join(SYNTAX_KINDS),
|
|
|
|
&render_template(&project_root().join(SYNTAX_KINDS_TEMPLATE))?,
|
|
|
|
verify,
|
|
|
|
)?;
|
|
|
|
update(
|
|
|
|
&project_root().join(AST),
|
|
|
|
&render_template(&project_root().join(AST_TEMPLATE))?,
|
|
|
|
verify,
|
|
|
|
)?;
|
|
|
|
}
|
|
|
|
"gen-tests" => gen_tests(verify)?,
|
2018-07-30 06:06:22 -05:00
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
2018-08-09 09:43:39 -05:00
|
|
|
Ok(())
|
2018-07-30 06:06:22 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn gen_tests(verify: bool) -> Result<()> {
|
|
|
|
let tests = tests_from_dir(Path::new(GRAMMAR_DIR))?;
|
|
|
|
|
|
|
|
let inline_tests_dir = Path::new(INLINE_TESTS_DIR);
|
|
|
|
if !inline_tests_dir.is_dir() {
|
|
|
|
fs::create_dir_all(inline_tests_dir)?;
|
|
|
|
}
|
|
|
|
let existing = existing_tests(inline_tests_dir)?;
|
|
|
|
|
2018-07-31 07:30:11 -05:00
|
|
|
for t in existing.keys().filter(|&t| !tests.contains_key(t)) {
|
|
|
|
panic!("Test is deleted: {}", t);
|
2018-07-30 06:06:22 -05:00
|
|
|
}
|
|
|
|
|
2018-07-31 07:30:11 -05:00
|
|
|
let mut new_idx = existing.len() + 2;
|
|
|
|
for (name, test) in tests {
|
|
|
|
let path = match existing.get(&name) {
|
|
|
|
Some((path, _test)) => path.clone(),
|
|
|
|
None => {
|
|
|
|
let file_name = format!("{:04}_{}.rs", new_idx, name);
|
|
|
|
new_idx += 1;
|
|
|
|
inline_tests_dir.join(file_name)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
update(&path, &test.text, verify)?;
|
2018-07-30 06:06:22 -05:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2018-07-31 07:30:11 -05:00
|
|
|
fn tests_from_dir(dir: &Path) -> Result<HashMap<String, Test>> {
|
|
|
|
let mut res = HashMap::new();
|
2018-07-30 06:06:22 -05:00
|
|
|
for entry in ::walkdir::WalkDir::new(dir) {
|
|
|
|
let entry = entry.unwrap();
|
|
|
|
if !entry.file_type().is_file() {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if entry.path().extension().unwrap_or_default() != "rs" {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
let text = fs::read_to_string(entry.path())?;
|
|
|
|
|
2018-07-30 08:32:27 -05:00
|
|
|
for (_, test) in collect_tests(&text) {
|
2018-07-31 07:30:11 -05:00
|
|
|
if let Some(old_test) = res.insert(test.name.clone(), test) {
|
2018-07-30 06:06:22 -05:00
|
|
|
bail!("Duplicate test: {}", old_test.name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(res)
|
|
|
|
}
|
|
|
|
|
2018-07-31 07:30:11 -05:00
|
|
|
fn existing_tests(dir: &Path) -> Result<HashMap<String, (PathBuf, Test)>> {
|
|
|
|
let mut res = HashMap::new();
|
2018-07-30 06:06:22 -05:00
|
|
|
for file in fs::read_dir(dir)? {
|
|
|
|
let file = file?;
|
|
|
|
let path = file.path();
|
|
|
|
if path.extension().unwrap_or_default() != "rs" {
|
|
|
|
continue;
|
|
|
|
}
|
2018-07-31 07:30:11 -05:00
|
|
|
let name = {
|
|
|
|
let file_name = path.file_name().unwrap().to_str().unwrap();
|
|
|
|
file_name[5..file_name.len() - 3].to_string()
|
|
|
|
};
|
2018-07-30 06:06:22 -05:00
|
|
|
let text = fs::read_to_string(&path)?;
|
2018-07-31 07:40:40 -05:00
|
|
|
let test = Test {
|
|
|
|
name: name.clone(),
|
|
|
|
text,
|
|
|
|
};
|
2018-07-31 07:30:11 -05:00
|
|
|
match res.insert(name, (path, test)) {
|
|
|
|
Some(old) => println!("Duplicate test: {:?}", old),
|
|
|
|
None => (),
|
|
|
|
}
|
2018-07-30 06:06:22 -05:00
|
|
|
}
|
|
|
|
Ok(res)
|
|
|
|
}
|
2018-07-30 14:17:33 -05:00
|
|
|
|
|
|
|
fn install_code_extension() -> Result<()> {
|
2018-09-16 04:54:24 -05:00
|
|
|
run("cargo install --path crates/ra_lsp_server --force", ".")?;
|
2018-09-15 18:02:25 -05:00
|
|
|
if cfg!(windows) {
|
2018-09-16 04:54:24 -05:00
|
|
|
run(r"cmd.exe /c npm.cmd install", "./editors/code")?;
|
2018-09-15 19:06:56 -05:00
|
|
|
} else {
|
2018-09-16 04:54:24 -05:00
|
|
|
run(r"npm install", "./editors/code")?;
|
2018-09-15 18:02:25 -05:00
|
|
|
}
|
2018-10-15 16:44:23 -05:00
|
|
|
run(
|
|
|
|
r"node ./node_modules/vsce/out/vsce package",
|
|
|
|
"./editors/code",
|
|
|
|
)?;
|
2018-09-15 18:02:25 -05:00
|
|
|
if cfg!(windows) {
|
2018-10-15 16:44:23 -05:00
|
|
|
run(
|
|
|
|
r"cmd.exe /c code.cmd --install-extension ./ra-lsp-0.0.1.vsix",
|
|
|
|
"./editors/code",
|
|
|
|
)?;
|
2018-09-15 18:02:25 -05:00
|
|
|
} else {
|
2018-10-15 16:44:23 -05:00
|
|
|
run(
|
|
|
|
r"code --install-extension ./ra-lsp-0.0.1.vsix",
|
|
|
|
"./editors/code",
|
|
|
|
)?;
|
2018-09-15 18:02:25 -05:00
|
|
|
}
|
2018-09-15 18:12:53 -05:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn run(cmdline: &'static str, dir: &str) -> Result<()> {
|
|
|
|
eprintln!("\nwill run: {}", cmdline);
|
|
|
|
let manifest_dir = env!("CARGO_MANIFEST_DIR");
|
2018-10-15 16:44:23 -05:00
|
|
|
let project_dir = Path::new(manifest_dir)
|
|
|
|
.ancestors()
|
|
|
|
.nth(2)
|
|
|
|
.unwrap()
|
|
|
|
.join(dir);
|
2018-09-15 18:12:53 -05:00
|
|
|
let mut args = cmdline.split_whitespace();
|
|
|
|
let exec = args.next().unwrap();
|
|
|
|
let status = Command::new(exec)
|
|
|
|
.args(args)
|
|
|
|
.current_dir(project_dir)
|
|
|
|
.status()?;
|
|
|
|
if !status.success() {
|
|
|
|
bail!("`{}` exited with {}", cmdline, status);
|
|
|
|
}
|
2018-07-30 14:17:33 -05:00
|
|
|
Ok(())
|
|
|
|
}
|