forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.rs
182 lines (160 loc) · 5.85 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
use std::{collections::HashSet, env, fs::File, io::Write, path::Path};
struct TrackedEnv {
tracked: HashSet<String>,
}
impl TrackedEnv {
pub fn new() -> Self {
Self {
tracked: HashSet::new(),
}
}
pub fn get_env_var(&mut self, name: impl Into<String>) -> Option<String> {
let name = name.into();
let result = std::env::var(&name).ok();
self.tracked.insert(name);
result
}
pub fn emit_rerun_stanzas(&self) {
for env_var in &self.tracked {
println!("cargo:rerun-if-env-changed={}", env_var);
}
}
}
enum ConstantValue {
Required(String),
Optional(Option<String>),
}
impl ConstantValue {
pub fn as_parts(&self) -> (&'static str, String) {
match &self {
ConstantValue::Required(value) => ("&str", format!("\"{}\"", value)),
ConstantValue::Optional(value) => match value {
Some(value) => ("Option<&str>", format!("Some(\"{}\")", value)),
None => ("Option<&str>", "None".to_string()),
},
}
}
}
struct BuildConstants {
values: Vec<(String, String, ConstantValue)>,
}
impl BuildConstants {
pub fn new() -> Self {
Self { values: Vec::new() }
}
pub fn add_required_constant(&mut self, name: &str, desc: &str, value: String) {
self.values.push((
name.to_string(),
desc.to_string(),
ConstantValue::Required(value),
));
}
pub fn add_optional_constant(&mut self, name: &str, desc: &str, value: Option<String>) {
self.values.push((
name.to_string(),
desc.to_string(),
ConstantValue::Optional(value),
));
}
pub fn write_to_file(self, file_name: impl AsRef<Path>) -> std::io::Result<()> {
let base_dir = env::var("OUT_DIR").expect("OUT_DIR not present in build script!");
let dest_path = Path::new(&base_dir).join(file_name);
let mut output_file = File::create(&dest_path)?;
output_file.write_all(
"// AUTOGENERATED CONSTANTS. SEE BUILD.RS AT REPOSITORY ROOT. DO NOT MODIFY.\n"
.as_ref(),
)?;
for (name, desc, value) in self.values {
let (const_type, const_val) = value.as_parts();
let full = format!(
"#[doc=r#\"{}\"#]\npub const {}: {} = {};\n",
desc, name, const_type, const_val
);
output_file.write_all(full.as_ref())?;
}
output_file.flush()?;
output_file.sync_all()?;
Ok(())
}
}
fn main() {
// Always rerun if the build script itself changes.
println!("cargo:rerun-if-changed=build.rs");
#[cfg(feature = "protobuf-build")]
{
println!("cargo:rerun-if-changed=proto/vector.proto");
println!("cargo:rerun-if-changed=proto/dnstap.proto");
println!("cargo:rerun-if-changed=proto/ddsketch.proto");
let mut prost_build = prost_build::Config::new();
prost_build.btree_map(&["."]);
tonic_build::configure()
.compile_with_config(
prost_build,
&[
"lib/vector-core/proto/event.proto",
"proto/vector.proto",
"proto/dnstap.proto",
"proto/ddsketch.proto",
],
&["proto/", "lib/vector-core/proto/"],
)
.unwrap();
}
// We keep track of which environment variables we slurp in, and then emit stanzas at the end to
// inform Cargo when it needs to rerun this build script. This allows us to avoid rerunning it
// every single time unless something _actually_ changes.
let mut tracker = TrackedEnv::new();
let pkg_name = tracker
.get_env_var("CARGO_PKG_NAME")
.expect("Cargo-provided environment variables should always exist!");
let pkg_version = tracker
.get_env_var("CARGO_PKG_VERSION")
.expect("Cargo-provided environment variables should always exist!");
let pkg_description = tracker
.get_env_var("CARGO_PKG_DESCRIPTION")
.expect("Cargo-provided environment variables should always exist!");
let target = tracker
.get_env_var("TARGET")
.expect("Cargo-provided environment variables should always exist!");
let target_arch = tracker
.get_env_var("CARGO_CFG_TARGET_ARCH")
.expect("Cargo-provided environment variables should always exist!");
let debug = tracker
.get_env_var("DEBUG")
.expect("Cargo-provided environment variables should always exist!");
let build_desc = tracker.get_env_var("VECTOR_BUILD_DESC");
// Gather up the constants and write them out to our build constants file.
let mut constants = BuildConstants::new();
constants.add_required_constant("PKG_NAME", "The full name of this package.", pkg_name);
constants.add_required_constant(
"PKG_VERSION",
"The full version of this package.",
pkg_version,
);
constants.add_required_constant(
"PKG_DESCRIPTION",
"The description of this package.",
pkg_description,
);
constants.add_required_constant(
"TARGET",
"The target triple being compiled for. (e.g. x86_64-pc-windows-msvc)",
target,
);
constants.add_required_constant(
"TARGET_ARCH",
"The target architecture being compiled for. (e.g. x86_64)",
target_arch,
);
constants.add_required_constant("DEBUG", "Level of debug info for Vector.", debug);
constants.add_optional_constant(
"VECTOR_BUILD_DESC",
"Special build description, related to versioned releases.",
build_desc,
);
constants
.write_to_file("built.rs")
.expect("Failed to write build-time constants file!");
// Emit the aforementioned stanzas.
tracker.emit_rerun_stanzas();
}