mirror of
https://github.com/NotAShelf/microfetch.git
synced 2024-11-23 07:50:42 +00:00
907112f2d1
* perf: break early after parsing required meminfo Also a match statement for compiler magic. * perf: pre-allocate strings when reading files * refactor: remove duplicate .to_string() * perf: try to print everything in one syscall println! sends a syscall for each line. * perf: get rid of duplicate uname syscall * perf: simplify first letter capitalization * refactor: directly use key in match statement
28 lines
840 B
Rust
28 lines
840 B
Rust
use color_eyre::Result;
|
|
use nix::sys::utsname::UtsName;
|
|
use std::{
|
|
fs::File,
|
|
io::{self, Read},
|
|
};
|
|
|
|
pub fn get_system_info(utsname: &UtsName) -> nix::Result<String> {
|
|
Ok(format!(
|
|
"{} {} ({})",
|
|
utsname.sysname().to_str().unwrap_or("Unknown"),
|
|
utsname.release().to_str().unwrap_or("Unknown"),
|
|
utsname.machine().to_str().unwrap_or("Unknown")
|
|
))
|
|
}
|
|
|
|
pub fn get_os_pretty_name() -> Result<String, io::Error> {
|
|
let mut os_release_content = String::with_capacity(1024);
|
|
File::open("/etc/os-release")?.read_to_string(&mut os_release_content)?;
|
|
|
|
let pretty_name = os_release_content
|
|
.lines()
|
|
.find(|line| line.starts_with("PRETTY_NAME="))
|
|
.map(|line| line.trim_start_matches("PRETTY_NAME=").trim_matches('"'));
|
|
|
|
Ok(pretty_name.unwrap_or("Unknown").to_string())
|
|
}
|