This repository has been archived by the owner on Feb 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 43
/
build.rs
85 lines (76 loc) · 2.53 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
* Copyright 2017 Intel Corporation
* Copyright 2020 Cargill Incorporated
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ------------------------------------------------------------------------------
*/
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;
fn main() {
// Generate protobuf files
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 dest_path = Path::new(&out_dir).join("messages");
fs::create_dir_all(&dest_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 stem")
.to_str()
.expect("Unable to extract filename")
)
})
.collect::<Vec<_>>()
.join("\n");
let mut mod_file = File::create(dest_path.join("mod.rs")).unwrap();
mod_file
.write_all(mod_file_content.as_bytes())
.expect("Unable to write mod file");
protoc_rust::Codegen::new()
.out_dir(dest_path.to_str().expect("Invalid proto destination path"))
.inputs(
&proto_src_files
.iter()
.map(|a| a.as_ref())
.collect::<Vec<&str>>(),
)
.includes(["src", "protos"])
.customize(Customize::default())
.run()
.expect("unable to run protoc");
}
fn glob_simple(pattern: &str) -> Vec<String> {
glob::glob(pattern)
.expect("glob")
.map(|g| {
g.expect("item")
.as_path()
.to_str()
.expect("utf-8")
.to_owned()
})
.collect()
}