2020-01-17 14:27:28 +01:00
|
|
|
// Copyright 2015-2020 Parity Technologies (UK) Ltd.
|
2019-01-07 11:33:07 +01:00
|
|
|
// This file is part of Parity Ethereum.
|
2016-03-07 14:33:00 +01:00
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is free software: you can redistribute it and/or modify
|
2016-03-07 14:33:00 +01:00
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
2019-01-07 11:33:07 +01:00
|
|
|
// Parity Ethereum is distributed in the hope that it will be useful,
|
2016-03-07 14:33:00 +01:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU General Public License
|
2019-01-07 11:33:07 +01:00
|
|
|
// along with Parity Ethereum. If not, see <http://www.gnu.org/licenses/>.
|
2016-03-07 14:33:00 +01:00
|
|
|
|
2016-03-17 18:41:55 +01:00
|
|
|
extern crate rustc_version;
|
2018-02-08 12:38:56 +01:00
|
|
|
extern crate toml;
|
|
|
|
extern crate vergen;
|
2016-02-29 12:29:51 +01:00
|
|
|
|
2016-03-17 18:41:55 +01:00
|
|
|
use std::env;
|
|
|
|
use std::fs::File;
|
|
|
|
use std::io::Write;
|
|
|
|
use std::path::Path;
|
2019-12-02 22:18:44 +01:00
|
|
|
use vergen::{ConstantsFlags, generate_cargo_keys};
|
2016-02-21 21:14:09 +01:00
|
|
|
|
2018-02-08 12:38:56 +01:00
|
|
|
const ERROR_MSG: &'static str = "Failed to generate metadata files";
|
2018-01-17 11:45:29 +01:00
|
|
|
|
2016-02-21 21:14:09 +01:00
|
|
|
fn main() {
|
2019-12-02 22:18:44 +01:00
|
|
|
let vergen_flags = ConstantsFlags::COMMIT_DATE |
|
|
|
|
ConstantsFlags::SHA |
|
|
|
|
ConstantsFlags::SHA_SHORT |
|
|
|
|
ConstantsFlags::TARGET_TRIPLE |
|
|
|
|
ConstantsFlags::REBUILD_ON_HEAD_CHANGE;
|
|
|
|
generate_cargo_keys(vergen_flags).expect(ERROR_MSG);
|
2018-02-08 12:38:56 +01:00
|
|
|
|
|
|
|
let version = rustc_version::version().expect(ERROR_MSG);
|
|
|
|
|
|
|
|
let cargo: toml::Value = toml::from_str(include_str!("./Cargo.toml")).expect(ERROR_MSG);
|
|
|
|
let track = cargo["package"]["metadata"]["track"].as_str().expect("'track' has to be a string!");
|
|
|
|
|
|
|
|
create_file("meta.rs", format!("
|
|
|
|
/// This versions track.
|
|
|
|
#[allow(unused)]
|
|
|
|
pub const TRACK: &str = {track:?};
|
|
|
|
|
|
|
|
/// Returns compiler version.
|
|
|
|
pub fn rustc_version() -> &'static str {{
|
|
|
|
\"{version}\"
|
|
|
|
}}
|
|
|
|
",
|
|
|
|
track = track,
|
|
|
|
version = version,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn create_file(filename: &str, data: String) {
|
2018-01-17 11:45:29 +01:00
|
|
|
let out_dir = env::var("OUT_DIR").expect(ERROR_MSG);
|
2018-02-08 12:38:56 +01:00
|
|
|
let dest_path = Path::new(&out_dir).join(filename);
|
2018-01-17 11:45:29 +01:00
|
|
|
let mut f = File::create(&dest_path).expect(ERROR_MSG);
|
2018-02-08 12:38:56 +01:00
|
|
|
f.write_all(data.as_bytes()).expect(ERROR_MSG);
|
2016-02-29 12:29:51 +01:00
|
|
|
}
|