-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.rs
70 lines (62 loc) · 1.94 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
extern crate glob;
extern crate protoc_rust;
use std::env;
use std::fs;
use std::fs::File;
use std::io::Write;
use std::path::Path;
use protoc_rust::Customize;
// Convert output of glob function to something compatible with protoc
// generation functions.
fn glob_simple(pattern: &str) -> Vec<String> {
glob::glob(pattern)
.expect("glob failed")
.map(|g| {
g.expect("item")
.as_path()
.to_str()
.expect("utf-8")
.to_owned()
})
.collect()
}
fn main() {
let proto_src_files = glob_simple("protos/*.proto");
println!("{:?}", proto_src_files);
let out_dir = env::var("OUT_DIR").expect("No OUT_DIR env variable");
let protos_path = Path::new(&out_dir).join("protos");
fs::create_dir_all(&protos_path).expect("Unable to create proto destination directory");
let mod_file_content = proto_src_files
.iter()
.map(|proto_file| {
let proto_path = Path::new(proto_file);
format!(
"pub mod {};",
proto_path
.file_stem()
.expect("Unable to extract proto path stem")
.to_str()
.expect("Unable to extract proto filename")
)
})
.collect::<Vec<_>>()
.join("\n");
let mut mod_file = File::create(protos_path.join("mod.rs")).unwrap();
mod_file
.write_all(mod_file_content.as_bytes())
.expect("Unable to write protos mod file.");
protoc_rust::run(protoc_rust::Args {
out_dir: &protos_path
.to_str()
.expect("Invalid proto destination path"),
input: &proto_src_files
.iter()
.map(|a| a.as_ref())
.collect::<Vec<&str>>(),
includes: &["protos"],
customize: Customize {
..Default::default()
},
})
.expect("Unable to run protoc");
}