2017-01-25 18:51:41 +01:00
|
|
|
// Copyright 2015-2017 Parity Technologies (UK) Ltd.
|
2016-02-05 13:40:41 +01:00
|
|
|
// This file is part of Parity.
|
|
|
|
|
|
|
|
// Parity is free software: you can redistribute it and/or modify
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
// Parity is distributed in the hope that it will be useful,
|
|
|
|
// 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
|
|
|
|
// along with Parity. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2016-02-01 15:22:42 +01:00
|
|
|
//! Diff misc.
|
|
|
|
|
2017-03-20 19:14:29 +01:00
|
|
|
use rlp::RlpStream;
|
2016-02-22 09:04:44 +01:00
|
|
|
use target_info::Target;
|
2017-09-06 20:47:45 +02:00
|
|
|
use bytes::Bytes;
|
2016-01-14 21:24:16 +01:00
|
|
|
|
2016-02-21 21:14:09 +01:00
|
|
|
include!(concat!(env!("OUT_DIR"), "/version.rs"));
|
2016-03-17 18:41:55 +01:00
|
|
|
include!(concat!(env!("OUT_DIR"), "/rustc_version.rs"));
|
2016-02-21 21:14:09 +01:00
|
|
|
|
2016-12-17 14:36:30 +01:00
|
|
|
#[cfg(feature = "final")]
|
2017-01-25 18:51:41 +01:00
|
|
|
const THIS_TRACK: &'static str = "nightly";
|
2016-12-17 14:36:30 +01:00
|
|
|
// ^^^ should be reset to "stable" or "beta" according to the release branch.
|
|
|
|
|
|
|
|
#[cfg(not(feature = "final"))]
|
|
|
|
const THIS_TRACK: &'static str = "unstable";
|
|
|
|
// ^^^ This gets used when we're not building a final release; should stay as "unstable".
|
|
|
|
|
2016-01-14 21:24:16 +01:00
|
|
|
/// Boolean type for clean/dirty status.
|
2016-11-22 10:24:22 +01:00
|
|
|
#[derive(PartialEq, Eq, Clone, Copy, Debug)]
|
2016-01-14 21:24:16 +01:00
|
|
|
pub enum Filth {
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Data has not been changed.
|
2016-01-14 21:24:16 +01:00
|
|
|
Clean,
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Data has been changed.
|
2016-01-14 21:24:16 +01:00
|
|
|
Dirty,
|
|
|
|
}
|
2016-02-09 15:51:48 +01:00
|
|
|
|
2016-11-22 10:24:22 +01:00
|
|
|
/// Get the platform identifier.
|
|
|
|
pub fn platform() -> String {
|
|
|
|
let env = Target::env();
|
|
|
|
let env_dash = if env.is_empty() { "" } else { "-" };
|
|
|
|
format!("{}-{}{}{}", Target::arch(), Target::os(), env_dash, env)
|
2016-11-13 15:52:33 +01:00
|
|
|
}
|
|
|
|
|
2016-02-21 20:00:45 +01:00
|
|
|
/// Get the standard version string for this software.
|
|
|
|
pub fn version() -> String {
|
2016-03-17 18:41:55 +01:00
|
|
|
let sha3 = short_sha();
|
|
|
|
let sha3_dash = if sha3.is_empty() { "" } else { "-" };
|
|
|
|
let commit_date = commit_date().replace("-", "");
|
|
|
|
let date_dash = if commit_date.is_empty() { "" } else { "-" };
|
2016-12-17 14:36:30 +01:00
|
|
|
format!("Parity/v{}-{}{}{}{}{}/{}/rustc{}", env!("CARGO_PKG_VERSION"), THIS_TRACK, sha3_dash, sha3, date_dash, commit_date, platform(), rustc_version())
|
2016-03-01 16:58:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Get the standard version data for this software.
|
|
|
|
pub fn version_data() -> Bytes {
|
|
|
|
let mut s = RlpStream::new_list(4);
|
|
|
|
let v =
|
2017-07-29 17:12:07 +02:00
|
|
|
(env!("CARGO_PKG_VERSION_MAJOR").parse::<u32>().expect("Environment variables are known to be valid; qed") << 16) +
|
|
|
|
(env!("CARGO_PKG_VERSION_MINOR").parse::<u32>().expect("Environment variables are known to be valid; qed") << 8) +
|
|
|
|
env!("CARGO_PKG_VERSION_PATCH").parse::<u32>().expect("Environment variables are known to be valid; qed");
|
2016-03-01 16:58:14 +01:00
|
|
|
s.append(&v);
|
|
|
|
s.append(&"Parity");
|
2016-03-18 10:14:19 +01:00
|
|
|
s.append(&rustc_version());
|
2016-03-01 19:59:12 +01:00
|
|
|
s.append(&&Target::os()[0..2]);
|
2016-03-01 16:58:14 +01:00
|
|
|
s.out()
|
2016-09-05 17:41:34 +02:00
|
|
|
}
|
2016-12-11 22:47:43 +01:00
|
|
|
|
|
|
|
/// Provide raw information on the package.
|
|
|
|
pub fn raw_package_info() -> (&'static str, &'static str, &'static str) {
|
2016-12-17 14:36:30 +01:00
|
|
|
(THIS_TRACK, env!["CARGO_PKG_VERSION"], sha())
|
2017-01-25 18:51:41 +01:00
|
|
|
}
|