2017-05-25 06:39:44 +02:00
|
|
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
2016-06-12 10:38:03 +02:00
|
|
|
|
|
|
|
use std::env;
|
|
|
|
use std::fs::File;
|
|
|
|
use std::io::Write;
|
2017-05-25 06:39:44 +02:00
|
|
|
use std::path::PathBuf;
|
2016-06-12 10:38:03 +02:00
|
|
|
use std::process::Command;
|
|
|
|
|
|
|
|
fn main() {
|
2017-05-25 06:39:44 +02:00
|
|
|
let out_dir = PathBuf::from(env::var_os("OUT_DIR").unwrap());
|
2016-06-12 10:38:03 +02:00
|
|
|
|
2017-05-25 06:39:44 +02:00
|
|
|
File::create(out_dir.join("commit-info.txt"))
|
|
|
|
.unwrap()
|
|
|
|
.write_all(commit_info().as_bytes())
|
2017-05-19 12:31:29 +02:00
|
|
|
.unwrap();
|
2017-05-25 06:39:44 +02:00
|
|
|
}
|
2016-06-12 10:38:03 +02:00
|
|
|
|
2017-05-25 06:39:44 +02:00
|
|
|
// Try to get hash and date of the last commit on a best effort basis. If anything goes wrong
|
|
|
|
// (git not installed or if this is not a git repository) just return an empty string.
|
|
|
|
fn commit_info() -> String {
|
|
|
|
match (commit_hash(), commit_date()) {
|
|
|
|
(Some(hash), Some(date)) => format!(" ({} {})", hash.trim_right(), date),
|
|
|
|
_ => String::new(),
|
2016-06-12 10:38:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-25 06:39:44 +02:00
|
|
|
fn commit_hash() -> Option<String> {
|
2016-06-12 10:38:03 +02:00
|
|
|
Command::new("git")
|
2017-05-25 06:39:44 +02:00
|
|
|
.args(&["rev-parse", "--short", "HEAD"])
|
2016-06-12 10:38:03 +02:00
|
|
|
.output()
|
|
|
|
.ok()
|
2017-05-25 06:39:44 +02:00
|
|
|
.and_then(|r| String::from_utf8(r.stdout).ok())
|
2016-06-12 10:38:03 +02:00
|
|
|
}
|
|
|
|
|
2017-05-25 06:39:44 +02:00
|
|
|
fn commit_date() -> Option<String> {
|
2016-06-12 10:38:03 +02:00
|
|
|
Command::new("git")
|
2017-05-25 06:39:44 +02:00
|
|
|
.args(&["log", "-1", "--date=short", "--pretty=format:%cd"])
|
2016-06-12 10:38:03 +02:00
|
|
|
.output()
|
|
|
|
.ok()
|
2017-05-25 06:39:44 +02:00
|
|
|
.and_then(|r| String::from_utf8(r.stdout).ok())
|
2016-06-12 10:38:03 +02:00
|
|
|
}
|