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
use std::env;

/// Types of supported platforms.
#[derive(Clone, Debug, PartialEq)]
pub enum Platform {
    LinuxAmd64,
    MacOsAmd64,
    Unsupported,
}

impl ToString for Platform {
    fn to_string(&self) -> String {
        match self {
            Platform::LinuxAmd64 => "linux-amd64".to_string(),
            Platform::MacOsAmd64 => "macosx-amd64".to_string(),
            Platform::Unsupported => "Unsupported-platform".to_string(),
        }
    }
}

/// Read the current machine's platform.
pub fn platform() -> Platform {
    match env::consts::OS {
        "linux" => Platform::LinuxAmd64,
        "macos" => Platform::MacOsAmd64,
        _ => Platform::Unsupported,
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    #[cfg(target_os = "linux")]
    fn get_platform() {
        assert_eq!(platform(), Platform::LinuxAmd64);
    }

    #[test]
    #[cfg(target_os = "macos")]
    fn get_platform() {
        assert_eq!(platform(), Platform::MacOsAmd64);
    }
}