mirror of
https://github.com/NotAShelf/microfetch.git
synced 2024-11-23 16:00:42 +00:00
54 lines
1.8 KiB
Rust
54 lines
1.8 KiB
Rust
use color_eyre::Result;
|
|
use std::fs::{self, read_to_string};
|
|
use std::io::{self, Read};
|
|
|
|
// Try to detect OS type as accurately as possible and without depending on uname.
|
|
// /etc/os-release should generally imply Linux, and /etc/bsd-release would imply BSD system.
|
|
fn detect_os() -> Result<String, io::Error> {
|
|
if fs::metadata("/etc/os-release").is_ok() || fs::metadata("/usr/lib/os-release").is_ok() {
|
|
Ok("Linux".to_string())
|
|
} else if fs::metadata("/etc/rc.conf").is_ok() || fs::metadata("/etc/bsd-release").is_ok() {
|
|
Ok("BSD".to_string())
|
|
} else {
|
|
Ok("Unknown".to_string())
|
|
}
|
|
}
|
|
|
|
fn get_architecture() -> Result<String, io::Error> {
|
|
// Read architecture from /proc/sys/kernel/arch
|
|
let mut arch = String::new();
|
|
fs::File::open("/proc/sys/kernel/arch")?.read_to_string(&mut arch)?;
|
|
let arch = arch.trim().to_string();
|
|
Ok(arch)
|
|
}
|
|
|
|
pub fn get_system_info() -> Result<String, io::Error> {
|
|
let system = detect_os()?;
|
|
|
|
let mut kernel_release = String::new();
|
|
fs::File::open("/proc/sys/kernel/osrelease")?.read_to_string(&mut kernel_release)?;
|
|
let kernel_release = kernel_release.trim().to_string();
|
|
|
|
let mut cpuinfo = String::new();
|
|
fs::File::open("/proc/cpuinfo")?.read_to_string(&mut cpuinfo)?;
|
|
|
|
let architecture = get_architecture()?;
|
|
|
|
let result = format!("{system} {kernel_release} ({architecture})");
|
|
Ok(result)
|
|
}
|
|
|
|
pub fn get_os_pretty_name() -> Result<String, io::Error> {
|
|
let os_release_content = read_to_string("/etc/os-release")?;
|
|
let pretty_name = os_release_content
|
|
.lines()
|
|
.find(|line| line.starts_with("PRETTY_NAME="))
|
|
.map(|line| {
|
|
line.trim_start_matches("PRETTY_NAME=")
|
|
.trim_matches('"')
|
|
.to_string()
|
|
});
|
|
|
|
Ok(pretty_name.unwrap_or_else(|| "Unknown".to_string()))
|
|
}
|