2016-02-05 13:40:41 +01:00
|
|
|
// Copyright 2015, 2016 Ethcore (UK) Ltd.
|
|
|
|
// 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.
|
|
|
|
|
2016-02-09 15:51:48 +01:00
|
|
|
use std::fs::File;
|
2016-01-14 21:24:16 +01:00
|
|
|
use common::*;
|
2016-03-01 16:58:14 +01:00
|
|
|
use rlp::{Stream, RlpStream};
|
2016-02-22 09:04:44 +01:00
|
|
|
use target_info::Target;
|
2016-02-21 20:00:45 +01:00
|
|
|
use rustc_version;
|
2016-01-14 21:24:16 +01:00
|
|
|
|
2016-02-21 21:14:09 +01:00
|
|
|
include!(concat!(env!("OUT_DIR"), "/version.rs"));
|
|
|
|
|
2016-01-14 21:24:16 +01:00
|
|
|
#[derive(Debug,Clone,PartialEq,Eq)]
|
|
|
|
/// Diff type for specifying a change (or not).
|
|
|
|
pub enum Diff<T> where T: Eq {
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Both sides are the same.
|
2016-01-14 21:24:16 +01:00
|
|
|
Same,
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Left (pre, source) side doesn't include value, right side (post, destination) does.
|
2016-01-14 21:24:16 +01:00
|
|
|
Born(T),
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Both sides include data; it chaged value between them.
|
2016-01-14 21:24:16 +01:00
|
|
|
Changed(T, T),
|
2016-02-03 14:51:45 +01:00
|
|
|
/// Left (pre, source) side does include value, right side (post, destination) does not.
|
2016-01-14 21:24:16 +01:00
|
|
|
Died(T),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T> Diff<T> where T: Eq {
|
|
|
|
/// Construct new object with given `pre` and `post`.
|
|
|
|
pub fn new(pre: T, post: T) -> Self { if pre == post { Diff::Same } else { Diff::Changed(pre, post) } }
|
|
|
|
|
|
|
|
/// Get the before value, if there is one.
|
2016-01-19 12:14:29 +01:00
|
|
|
pub fn pre(&self) -> Option<&T> { match *self { Diff::Died(ref x) | Diff::Changed(ref x, _) => Some(x), _ => None } }
|
2016-01-14 21:24:16 +01:00
|
|
|
|
|
|
|
/// Get the after value, if there is one.
|
2016-01-19 12:14:29 +01:00
|
|
|
pub fn post(&self) -> Option<&T> { match *self { Diff::Born(ref x) | Diff::Changed(_, ref x) => Some(x), _ => None } }
|
2016-01-14 21:24:16 +01:00
|
|
|
|
|
|
|
/// Determine whether there was a change or not.
|
2016-01-19 12:14:29 +01:00
|
|
|
pub fn is_same(&self) -> bool { match *self { Diff::Same => true, _ => false }}
|
2016-01-14 21:24:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq,Eq,Clone,Copy)]
|
|
|
|
/// Boolean type for clean/dirty status.
|
|
|
|
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
|
|
|
|
|
|
|
/// Read the whole contents of a file `name`.
|
|
|
|
pub fn contents(name: &str) -> Result<Bytes, UtilError> {
|
|
|
|
let mut file = try!(File::open(name));
|
2016-02-09 16:19:12 +01:00
|
|
|
let mut ret: Vec<u8> = Vec::new();
|
|
|
|
try!(file.read_to_end(&mut ret));
|
|
|
|
Ok(ret)
|
2016-02-09 15:51:48 +01:00
|
|
|
}
|
2016-02-21 20:00:45 +01:00
|
|
|
|
|
|
|
/// Get the standard version string for this software.
|
|
|
|
pub fn version() -> String {
|
2016-03-02 00:52:18 +01:00
|
|
|
format!("Parity/v{}-{}-{}/{}-{}-{}/rustc{}", env!("CARGO_PKG_VERSION"), short_sha(), commit_date().replace("-", ""), Target::arch(), Target::os(), Target::env(), rustc_version::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 =
|
|
|
|
(u32::from_str(env!("CARGO_PKG_VERSION_MAJOR")).unwrap() << 16) +
|
|
|
|
(u32::from_str(env!("CARGO_PKG_VERSION_MINOR")).unwrap() << 8) +
|
|
|
|
u32::from_str(env!("CARGO_PKG_VERSION_PATCH")).unwrap();
|
|
|
|
s.append(&v);
|
|
|
|
s.append(&"Parity");
|
2016-03-01 19:59:12 +01:00
|
|
|
s.append(&format!("{}", rustc_version::version()));
|
|
|
|
s.append(&&Target::os()[0..2]);
|
2016-03-01 16:58:14 +01:00
|
|
|
s.out()
|
2016-02-21 20:00:45 +01:00
|
|
|
}
|