-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbuild.rs
102 lines (87 loc) · 2.77 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
extern crate phf_codegen;
// use phf_codegen;
use std::env;
use std::ffi::OsStr;
use std::fs;
use std::io::{BufWriter, Write};
use std::path::Path;
use std::process::Command;
fn main() {
let target_dir = env::var("OUT_DIR").unwrap();
if is_lock_newer_than_binary(target_dir) {
println!("cargo:rerun-if-changed={}", "js/package-lock.json");
let child = Command::new("npm")
.arg("install")
.current_dir("js")
.status()
.unwrap();
assert!(child.success());
}
let path = Path::new(&env::var("OUT_DIR").unwrap()).join("bootstrap.rs");
let mut file = BufWriter::new(fs::File::create(&path).unwrap());
write!(
&mut file,
"#[allow(clippy::all)]\nstatic BOOTSTRAP_MODULES: phf::Map<&'static str, &'static str> = "
)
.unwrap();
let mut map = &mut phf_codegen::Map::<String>::new();
let bootstrap_dir = Path::new("js/bootstrap");
assert!(bootstrap_dir.is_dir());
for entry in fs::read_dir(bootstrap_dir).unwrap() {
let entry = entry.unwrap();
let path = entry.path();
// Ignore files without `.js` extension
match path.extension().and_then(OsStr::to_str) {
Some("js") => (),
_ => continue,
};
// Ignore files that start with `.`
if path
.file_name()
.and_then(OsStr::to_str)
.unwrap()
.starts_with('.')
{
continue;
}
// TODO: Allow subdirs in bootstrap folder
assert!(!path.is_dir());
println!("cargo:rerun-if-changed={}", path.to_str().unwrap());
let key = String::from(
path.strip_prefix(bootstrap_dir)
.unwrap()
.to_str()
.unwrap()
.clone(),
);
map = map.entry(
key,
&format!("r#\"{}\"#", &(fs::read_to_string(&path).unwrap())),
);
}
map.build(&mut file).unwrap();
write!(&mut file, ";\n").unwrap();
}
// This prevents `cargo build` from always running `npm install`
fn is_lock_newer_than_binary(target_dir: String) -> bool {
let lock_file = fs::metadata("js/package-lock.json");
if let Err(_err) = lock_file {
return true;
}
let lock_file = lock_file.unwrap();
let binary_file = fs::metadata(format!("{}/osgood", target_dir));
// let binary_file = fs::metadata("target/debug/osgood");
if let Err(_err) = binary_file {
return true;
}
let binary_file = binary_file.unwrap();
if let Ok(lock_time) = lock_file.modified() {
if let Ok(binary_time) = binary_file.modified() {
return lock_time > binary_time;
} else {
return true;
}
} else {
return true;
}
}