-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.rs
218 lines (194 loc) · 6.36 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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
/// Build script (https://doc.rust-lang.org/cargo/reference/build-scripts.html)
/// This script is executed as the first step in the compilation process.
/// Here we export metadata constants to a `constants/generated.rs` file which is then
/// imported and used by the remaining crate.
///
/// # Examples
///
/// In C you can use the preprocessor macro `__DATE__` to save the compilation date like:
///
/// ```c
/// #define PCONVERT_COMPILATION_DATE __DATE__
/// ```
///
/// Rust does not have such preprocessor macros, so we use this script and do:
///
/// ```rust
/// let now_utc = chrono::Utc::now();
/// write_str_constant_to_file(
/// &mut file,
/// "COMPILATION_DATE",
/// &format!("{}", now_utc.format("%b %d %Y")),
/// );
/// ```
use chrono::Utc;
use image::codecs::png::{CompressionType, FilterType};
use regex::Regex;
use std::fs::{File, OpenOptions};
use std::io::Write;
use std::path::Path;
use std::process::Command;
use std::str;
const BUILD_OUT_FILE: &str = "constants/generated.rs";
const SOURCE_DIR: &str = "./src";
const CARGO_TOML: &str = include_str!("Cargo.toml");
fn main() {
// in case we're running under docs.rs then we must return the control
// flow immediately as it's not possible to generated files under the
// expected read only file system present in docs.rs build environment
if std::env::var("DOCS_RS").is_ok() {
return;
}
let dest_path = Path::new(SOURCE_DIR).join(Path::new(BUILD_OUT_FILE));
let mut file = OpenOptions::new()
.truncate(true)
.write(true)
.create(true)
.open(dest_path)
.unwrap_or_else(|_| panic!("Can't open '{}'", BUILD_OUT_FILE));
let module_doc_string = "//! Global constants, such as compiler version used, algorithms, compression and filters supported and others\n";
writeln!(file, "{}", module_doc_string).unwrap();
let generated_annotation = "// @generated\n";
writeln!(file, "{}", generated_annotation).unwrap();
let now_utc = Utc::now();
write_str_constant_to_file(
&mut file,
"COMPILATION_DATE",
&format!("{}", now_utc.format("%b %d %Y")),
);
write_str_constant_to_file(
&mut file,
"COMPILATION_TIME",
&format!("{}", now_utc.format("%H:%M:%S")),
);
write_str_constant_to_file(
&mut file,
"VERSION",
option_env!("CARGO_PKG_VERSION").unwrap_or("UNKNOWN"),
);
write_vec_constant_to_file(
&mut file,
"ALGORITHMS",
vec![
"alpha",
"multiplicative",
"source_over",
"destination_over",
"mask_top",
"first_top",
"first_bottom",
"disjoint_over",
"disjoint_under",
"disjoint_debug",
],
);
write_str_constant_to_file(&mut file, "COMPILER", "rustc");
let compiler_version = Command::new("rustc")
.arg("--version")
.output()
.ok()
.and_then(|output| String::from_utf8(output.stdout).ok())
.unwrap_or_else(|| "UNKNOWN".to_string());
let re = Regex::new("rustc ([\\d.\\d.\\d]*)").unwrap();
let compiler_version = re
.captures(&compiler_version)
.unwrap()
.get(1)
.unwrap()
.as_str();
write_str_constant_to_file(&mut file, "COMPILER_VERSION", compiler_version);
let re = Regex::new("image(?:.|\n)*version = \"(.*)\"[,\n]").unwrap();
let libpng_capture = re.captures(CARGO_TOML);
let libpng_capture_s = if re.captures(CARGO_TOML).is_some() {
libpng_capture.unwrap().get(1).unwrap().as_str()
} else {
"undefined"
};
let libpng_version = format!("image-{}", libpng_capture_s);
write_str_constant_to_file(&mut file, "LIBPNG_VERSION", &libpng_version);
let mut features = vec!["cpu"];
if cfg!(feature = "wasm-extension") {
features.push("wasm")
}
if cfg!(feature = "python-extension") {
features.push("python")
}
write_vec_constant_to_file(&mut file, "FEATURES", features);
write_str_constant_to_file(
&mut file,
"PLATFORM_CPU_BITS",
&(std::mem::size_of::<usize>() * 8).to_string(),
);
let libpng_filter_types = vec![
FilterType::NoFilter,
FilterType::Avg,
FilterType::Paeth,
FilterType::Sub,
FilterType::Up,
];
write_enum_variants_to_file(&mut file, "FILTER_TYPES", libpng_filter_types);
let libpng_compression_types = vec![
CompressionType::Default,
CompressionType::Best,
CompressionType::Fast,
];
write_enum_variants_to_file(&mut file, "COMPRESSION_TYPES", libpng_compression_types);
let threads = std::thread::available_parallelism().unwrap().get();
write_constant_to_file(&mut file, "DEFAULT_THREAD_POOL_SIZE", threads);
write_constant_to_file(&mut file, "MAX_THREAD_POOL_SIZE", threads * 10);
}
fn write_constant_to_file<T>(file: &mut File, key: &str, val: T)
where
T: std::fmt::Display,
{
writeln!(
file,
"pub const {}: {} = {};",
key,
std::any::type_name::<T>(),
val
)
.unwrap_or_else(|_| panic!("Failed to write '{}' to 'build_constants.rs'", key));
}
fn write_str_constant_to_file(file: &mut File, key: &str, val: &str) {
writeln!(file, "pub const {}: &str = \"{}\";", key, val)
.unwrap_or_else(|_| panic!("Failed to write '{}' to 'build_constants.rs'", key));
}
fn write_vec_constant_to_file<T>(file: &mut File, key: &str, vec: Vec<T>)
where
T: std::fmt::Display,
{
let mut list_str = String::new();
for value in &vec {
list_str.push_str(&format!("\"{}\",", value))
}
list_str.pop();
writeln!(
file,
"pub const {}: [{}; {}] = [{}];",
key,
std::any::type_name::<T>(),
vec.len(),
list_str
)
.unwrap_or_else(|_| panic!("Failed to write '{}' to 'build_constants.rs'", key));
}
fn write_enum_variants_to_file<T>(file: &mut File, key: &str, vec: Vec<T>)
where
T: std::fmt::Debug,
{
let mut list_str = String::new();
for value in &vec {
list_str.push_str(&format!("{}::{:?},", std::any::type_name::<T>(), value))
}
list_str.pop();
writeln!(
file,
"pub const {}: [{}; {}] = [{}];",
key,
std::any::type_name::<T>(),
vec.len(),
list_str
)
.unwrap_or_else(|_| panic!("Failed to write '{}' to 'build_constants.rs'", key));
}