diff options
author | Aleksey Kladov <[email protected]> | 2018-10-16 18:28:43 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-10-16 18:31:30 +0100 |
commit | 514aa3cf853c3c4beef8f827c12328d626f977de (patch) | |
tree | 2a10336c3825ad821960c5169b78df17f7bd5f5c /crates/teraron | |
parent | 1216878f7be20dd0e652fb8cdc395009fdcfae07 (diff) |
extract teraron
Diffstat (limited to 'crates/teraron')
-rw-r--r-- | crates/teraron/Cargo.toml | 13 | ||||
-rw-r--r-- | crates/teraron/src/lib.rs | 109 |
2 files changed, 122 insertions, 0 deletions
diff --git a/crates/teraron/Cargo.toml b/crates/teraron/Cargo.toml new file mode 100644 index 000000000..7ce9f1aa8 --- /dev/null +++ b/crates/teraron/Cargo.toml | |||
@@ -0,0 +1,13 @@ | |||
1 | [package] | ||
2 | name = "teraron" | ||
3 | version = "0.0.1" | ||
4 | authors = ["Aleksey Kladov <[email protected]>"] | ||
5 | repository = "https://github.com/rust-analyzer/teraron" | ||
6 | description = "Genrate Rust code from a .tera template and a .ron data" | ||
7 | license = "MIT OR Apache-2.0" | ||
8 | |||
9 | [dependencies] | ||
10 | failure = "0.1.2" | ||
11 | tera = "0.11.18" | ||
12 | ron = "0.4.0" | ||
13 | heck = "0.3.0" | ||
diff --git a/crates/teraron/src/lib.rs b/crates/teraron/src/lib.rs new file mode 100644 index 000000000..e464ea080 --- /dev/null +++ b/crates/teraron/src/lib.rs | |||
@@ -0,0 +1,109 @@ | |||
1 | //! A simple tool to generate rust code by passing a ron value | ||
2 | //! to a tera template | ||
3 | |||
4 | #[macro_use] | ||
5 | extern crate failure; | ||
6 | extern crate tera; | ||
7 | extern crate ron; | ||
8 | extern crate heck; | ||
9 | |||
10 | use std::{ | ||
11 | fs, | ||
12 | collections::HashMap, | ||
13 | path::Path, | ||
14 | }; | ||
15 | |||
16 | use heck::{CamelCase, ShoutySnakeCase, SnakeCase}; | ||
17 | |||
18 | #[derive(Clone, Copy, PartialEq, Eq)] | ||
19 | pub enum Mode { | ||
20 | Overwrite, | ||
21 | Verify, | ||
22 | } | ||
23 | |||
24 | pub use Mode::*; | ||
25 | |||
26 | /// A helper to update file on disk if it has changed. | ||
27 | /// With verify = false, | ||
28 | pub fn update(path: &Path, contents: &str, mode: Mode) -> Result<(), failure::Error> { | ||
29 | match fs::read_to_string(path) { | ||
30 | Ok(ref old_contents) if old_contents == contents => { | ||
31 | return Ok(()); | ||
32 | } | ||
33 | _ => (), | ||
34 | } | ||
35 | if mode == Verify { | ||
36 | bail!("`{}` is not up-to-date", path.display()); | ||
37 | } | ||
38 | eprintln!("updating {}", path.display()); | ||
39 | fs::write(path, contents)?; | ||
40 | Ok(()) | ||
41 | } | ||
42 | |||
43 | pub fn generate( | ||
44 | template: &Path, | ||
45 | src: &Path, | ||
46 | mode: Mode, | ||
47 | ) -> Result<(), failure::Error> { | ||
48 | assert_eq!( | ||
49 | template.extension().and_then(|it| it.to_str()), Some("tera"), | ||
50 | "template file must have .rs.tera extension", | ||
51 | ); | ||
52 | let file_name = template.file_stem().unwrap().to_str().unwrap(); | ||
53 | assert!( | ||
54 | file_name.ends_with(".rs"), | ||
55 | "template file must have .rs.tera extension", | ||
56 | ); | ||
57 | let tgt = template.with_file_name(file_name); | ||
58 | let template = fs::read_to_string(template)?; | ||
59 | let src: ron::Value = { | ||
60 | let text = fs::read_to_string(src)?; | ||
61 | ron::de::from_str(&text)? | ||
62 | }; | ||
63 | let content = render(&template, src)?; | ||
64 | update( | ||
65 | &tgt, | ||
66 | &content, | ||
67 | mode, | ||
68 | ) | ||
69 | } | ||
70 | |||
71 | pub fn render( | ||
72 | template: &str, | ||
73 | src: ron::Value, | ||
74 | ) -> Result<String, failure::Error> { | ||
75 | let mut tera = mk_tera(); | ||
76 | tera.add_raw_template("_src", template) | ||
77 | .map_err(|e| format_err!("template parsing error: {:?}", e))?; | ||
78 | let res = tera.render("_src", &src) | ||
79 | .map_err(|e| format_err!("template rendering error: {:?}", e))?; | ||
80 | return Ok(res); | ||
81 | } | ||
82 | |||
83 | fn mk_tera() -> tera::Tera { | ||
84 | let mut res = tera::Tera::default(); | ||
85 | res.register_filter("camel", |arg, _| { | ||
86 | Ok(arg.as_str().unwrap().to_camel_case().into()) | ||
87 | }); | ||
88 | res.register_filter("snake", |arg, _| { | ||
89 | Ok(arg.as_str().unwrap().to_snake_case().into()) | ||
90 | }); | ||
91 | res.register_filter("SCREAM", |arg, _| { | ||
92 | Ok(arg.as_str().unwrap().to_shouty_snake_case().into()) | ||
93 | }); | ||
94 | res.register_function("concat", Box::new(concat)); | ||
95 | res | ||
96 | } | ||
97 | |||
98 | fn concat(args: HashMap<String, tera::Value>) -> tera::Result<tera::Value> { | ||
99 | let mut elements = Vec::new(); | ||
100 | for &key in ["a", "b", "c"].iter() { | ||
101 | let val = match args.get(key) { | ||
102 | Some(val) => val, | ||
103 | None => continue, | ||
104 | }; | ||
105 | let val = val.as_array().unwrap(); | ||
106 | elements.extend(val.iter().cloned()); | ||
107 | } | ||
108 | Ok(tera::Value::Array(elements)) | ||
109 | } | ||