-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #349 from ecnelises/aix
Support AIX operating system
- Loading branch information
Showing
5 changed files
with
93 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
use std::process::Command; | ||
use std::str; | ||
|
||
use log::{error, trace}; | ||
|
||
use crate::{bitness, uname::uname, Info, Type, Version}; | ||
|
||
pub fn current_platform() -> Info { | ||
trace!("aix::current_platform is called"); | ||
|
||
let version = get_version() | ||
.map(Version::from_string) | ||
.unwrap_or_else(|| Version::Unknown); | ||
|
||
let info = Info { | ||
os_type: get_os(), | ||
version, | ||
bitness: bitness::get(), | ||
..Default::default() | ||
}; | ||
|
||
trace!("Returning {:?}", info); | ||
info | ||
} | ||
|
||
fn get_version() -> Option<String> { | ||
fn parse_uname(arg: &str) -> Option<String> { | ||
Command::new("uname") | ||
.arg(arg) | ||
.output() | ||
.map_err(|e| { | ||
error!("Failed to invoke 'uname': {:?}", e); | ||
}) | ||
.ok() | ||
.and_then(|out| { | ||
if out.status.success() { | ||
Some(String::from_utf8_lossy(&out.stdout).trim_end().to_owned()) | ||
} else { | ||
log::error!("'uname' invocation error: {:?}", out); | ||
None | ||
} | ||
}) | ||
} | ||
|
||
let major = parse_uname("-v")?; | ||
let minor = parse_uname("-r").unwrap_or(String::from("0")); | ||
Some(format!("{}.{}", major, minor)) | ||
} | ||
|
||
fn get_os() -> Type { | ||
let os = Command::new("uname") | ||
.arg("-o") | ||
.output() | ||
.expect("Failed to get OS"); | ||
|
||
match str::from_utf8(&os.stdout) { | ||
Ok("AIX\n") => Type::AIX, | ||
Ok(_) => Type::Unknown, | ||
Err(_) => Type::Unknown, | ||
} | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
use super::*; | ||
|
||
#[test] | ||
fn os_type() { | ||
let version = current_platform(); | ||
assert_eq!(Type::AIX, version.os_type()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters