Welcome to mirror list, hosted at ThFree Co, Russian Federation.

build.rs « src - github.com/mozilla/geckodriver.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7ba314475589326325af5ee44e525750e560e062 (plain)
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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

use serde_json::Value;
use std::fmt;

include!(concat!(env!("OUT_DIR"), "/build-info.rs"));

pub struct BuildInfo;

impl BuildInfo {
    pub fn version() -> &'static str {
        crate_version!()
    }

    pub fn hash() -> Option<&'static str> {
        COMMIT_HASH
    }

    pub fn date() -> Option<&'static str> {
        COMMIT_DATE
    }
}

impl fmt::Display for BuildInfo {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "{}", BuildInfo::version())?;
        match (BuildInfo::hash(), BuildInfo::date()) {
            (Some(hash), Some(date)) => write!(f, " ({} {})", hash, date)?,
            (Some(hash), None) => write!(f, " ({})", hash)?,
            _ => {}
        }
        Ok(())
    }
}

// TODO(Henrik): Change into From
//std::convert::From<&str>` is not implemented for `rustc_serialize::json::Json
impl Into<Value> for BuildInfo {
    fn into(self) -> Value {
        Value::String(BuildInfo::version().to_string())
    }
}

/// Returns build-time information about geckodriver.
pub fn build_info() -> BuildInfo {
    BuildInfo {}
}