-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
build.rs
97 lines (75 loc) · 3.32 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
//! This build script gets run during every build. Its purpose is to put
//! together the files used for the `--help` and `--version`, which need to
//! come in both coloured and non-coloured variants. The main usage text is
//! contained in `src/usage.txt`; to make it easier to edit, backslashes (\)
//! are used instead of the beginning of ANSI escape codes.
//!
//! The version string is quite complex: we want to show the version,
//! current Git hash, and compilation date when building *debug*
//! versions, but just the version for *release* versions.
//!
//! This script generates the string from the environment variables
//! that Cargo adds (http://doc.crates.io/environment-variables.html)
//! and runs `git` to get the SHA1 hash. It then writes the strings
//! into files, which we can include during compilation.
use std::env;
use std::fs::File;
use std::io::{self, Write};
use std::path::PathBuf;
use datetime::{LocalDateTime, ISO};
use regex::Regex;
/// The build script entry point.
fn main() -> io::Result<()> {
#![allow(clippy::write_with_newline)]
let usage = include_str!("src/usage.txt");
let tagline = "specsheet \\1;33m●\\0m the testing toolkit";
let url = "https://specsheet.software/";
let ver = if is_development_version() {
format!("{}\nv{} [{}] built on {} \\1;31m(pre-release!)\\0m\n\\1;4;34m{}\\0m", tagline, cargo_version(), git_hash(), build_date(), url)
}
else {
format!("{}\nv{}\n\\1;4;34m{}\\0m", tagline, cargo_version(), url)
};
// We need to create these files in the Cargo output directory.
let out = PathBuf::from(env::var("OUT_DIR").unwrap());
// The bits .txt files contain ANSI escape codes, ish.
let control_code = Regex::new(r##"\\.+?m"##).unwrap();
// Pretty version text
let mut f = File::create(&out.join("version.pretty.txt"))?;
write!(f, "{}\n", ver.replace("\\", "\x1B["))?;
// Bland version text
let mut f = File::create(&out.join("version.bland.txt"))?;
write!(f, "{}\n", control_code.replace_all(&ver, ""))?;
// Pretty usage text
let mut f = File::create(&out.join("usage.pretty.txt"))?;
write!(f, "{}\n\n{}\n", tagline.replace("\\", "\x1B["), usage.replace("\\", "\x1B["))?;
// Bland usage text
let mut f = File::create(&out.join("usage.bland.txt"))?;
write!(f, "{}\n\n{}\n", control_code.replace_all(tagline, ""), control_code.replace_all(usage, ""))?;
Ok(())
}
/// Retrieve the project’s current Git hash, as a string.
fn git_hash() -> String {
use std::process::Command;
String::from_utf8_lossy(
&Command::new("git")
.args(&["rev-parse", "--short", "HEAD"])
.output().unwrap()
.stdout).trim().to_string()
}
/// Whether we should show pre-release info in the version string.
///
/// Both weekly releases and actual releases are --release releases,
/// but actual releases will have a proper version number.
fn is_development_version() -> bool {
cargo_version().ends_with("-pre") || env::var("PROFILE").unwrap() == "debug"
}
/// Retrieves the [package] version in Cargo.toml as a string.
fn cargo_version() -> String {
env::var("CARGO_PKG_VERSION").unwrap()
}
/// Formats the current date as an ISO 8601 string.
fn build_date() -> String {
let now = LocalDateTime::now();
format!("{}", now.date().iso())
}