From 9d9e637ef39cbc00eaebad93294a60ccfd3405eb Mon Sep 17 00:00:00 2001 From: Muhammad Mominul Huque Date: Tue, 16 Oct 2018 00:54:27 +0600 Subject: Refactor the constants --- crates/tools/src/lib.rs | 16 +++++++++++++--- crates/tools/src/main.rs | 11 +++-------- 2 files changed, 16 insertions(+), 11 deletions(-) (limited to 'crates/tools/src') diff --git a/crates/tools/src/lib.rs b/crates/tools/src/lib.rs index ba7d10caa..548b157dd 100644 --- a/crates/tools/src/lib.rs +++ b/crates/tools/src/lib.rs @@ -8,13 +8,19 @@ extern crate heck; use std::{ collections::HashMap, fs, - path::Path, + path::{Path, PathBuf}, }; use itertools::Itertools; use heck::{CamelCase, ShoutySnakeCase, SnakeCase}; pub type Result = ::std::result::Result; +const GRAMMAR: &str = "ra_syntax/src/grammar.ron"; +pub const SYNTAX_KINDS: &str = "ra_syntax/src/syntax_kinds/generated.rs"; +pub const SYNTAX_KINDS_TEMPLATE: &str = "ra_syntax/src/syntax_kinds/generated.rs.tera"; +pub const AST: &str = "ra_syntax/src/ast/generated.rs"; +pub const AST_TEMPLATE: &str = "ra_syntax/src/ast/generated.rs.tera"; + #[derive(Debug)] pub struct Test { pub name: String, @@ -71,9 +77,9 @@ pub fn update(path: &Path, contents: &str, verify: bool) -> Result<()> { Ok(()) } -pub fn render_template(template: &str) -> Result { +pub fn render_template(template: PathBuf) -> Result { let grammar: ron::value::Value = { - let text = fs::read_to_string(format!("{}{}", Path::new(&std::env::var("CARGO_MANIFEST_DIR").unwrap()).parent().unwrap().to_str().unwrap(), "/ra_syntax/src/grammar.ron"))?; + let text = fs::read_to_string(project_root().join(GRAMMAR))?; ron::de::from_str(&text)? }; let template = fs::read_to_string(template)?; @@ -108,3 +114,7 @@ pub fn render_template(template: &str) -> Result { Ok(tera::Value::Array(elements)) } } + +pub fn project_root() -> PathBuf { + Path::new(&std::env::var("CARGO_MANIFEST_DIR").unwrap()).parent().unwrap().to_path_buf() +} diff --git a/crates/tools/src/main.rs b/crates/tools/src/main.rs index aa6d964e6..549892bc6 100644 --- a/crates/tools/src/main.rs +++ b/crates/tools/src/main.rs @@ -11,15 +11,10 @@ use std::{ path::{Path, PathBuf}, process::Command, }; -use tools::{Test, collect_tests, render_template, update, Result}; +use tools::{AST, AST_TEMPLATE, Result, SYNTAX_KINDS, SYNTAX_KINDS_TEMPLATE, Test, collect_tests, render_template, update, project_root}; const GRAMMAR_DIR: &str = "./crates/ra_syntax/src/grammar"; const INLINE_TESTS_DIR: &str = "./crates/ra_syntax/tests/data/parser/inline"; -const GRAMMAR: &str = "./crates/ra_syntax/src/grammar.ron"; -const SYNTAX_KINDS: &str = "./crates/ra_syntax/src/syntax_kinds/generated.rs"; -const SYNTAX_KINDS_TEMPLATE: &str = "./crates/ra_syntax/src/syntax_kinds/generated.rs.tera"; -const AST: &str = "./crates/ra_syntax/src/ast/generated.rs"; -const AST_TEMPLATE: &str = "./crates/ra_syntax/src/ast/generated.rs.tera"; fn main() -> Result<()> { let matches = App::new("tasks") @@ -45,8 +40,8 @@ fn main() -> Result<()> { fn run_gen_command(name: &str, verify: bool) -> Result<()> { match name { "gen-kinds" => { - update(Path::new(SYNTAX_KINDS), &render_template(SYNTAX_KINDS_TEMPLATE)?, verify)?; - update(Path::new(AST), &render_template(AST_TEMPLATE)?, verify)?; + 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)? -- cgit v1.2.3