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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
use std::env;
#[derive(Clone, Debug, PartialEq)]
pub enum Platform {
LinuxAmd64,
LinuxAarch64,
MacOsAmd64,
WindowsAmd64,
Unsupported,
}
impl ToString for Platform {
fn to_string(&self) -> String {
match self {
Platform::LinuxAmd64 => "linux-amd64".to_string(),
Platform::LinuxAarch64 => "linux-aarch64".to_string(),
Platform::MacOsAmd64 => "macosx-amd64".to_string(),
Platform::WindowsAmd64 => "windows-amd64".to_string(),
Platform::Unsupported => "Unsupported-platform".to_string(),
}
}
}
pub fn platform() -> Platform {
match (env::consts::OS, env::consts::ARCH) {
("linux", "x86_64") => Platform::LinuxAmd64,
("linux", "aarch64") => Platform::LinuxAarch64,
("macos", _) => Platform::MacOsAmd64,
("windows", "x86_64") => Platform::WindowsAmd64,
_ => Platform::Unsupported,
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
#[cfg(all(target_os = "linux", target_arch = "x86_64"))]
fn get_platform() {
assert_eq!(platform(), Platform::LinuxAmd64);
}
#[test]
#[cfg(all(target_os = "macos", target_arch = "x86_64"))]
fn get_platform() {
assert_eq!(platform(), Platform::MacOsAmd64);
}
#[test]
#[cfg(all(target_os = "macos", target_arch = "aarch64"))]
fn get_platform() {
assert_eq!(platform(), Platform::MacOsAmd64);
}
#[test]
#[cfg(all(target_os = "windows", target_arch = "x86_64"))]
fn get_platform() {
assert_eq!(platform(), Platform::WindowsAmd64);
}
}