shitbox/src/cmd/nproc/mod.rs

39 lines
1014 B
Rust
Raw Normal View History

2023-01-07 18:50:18 -05:00
use super::Cmd;
2023-01-08 01:12:36 -05:00
use clap::{Arg, ArgAction, Command};
2023-01-07 18:50:18 -05:00
#[derive(Debug, Default)]
pub struct Nproc;
2023-01-07 18:50:18 -05:00
impl Cmd for Nproc {
fn cli(&self) -> clap::Command {
Command::new("nproc")
2023-01-07 18:50:18 -05:00
.author("Nathan Fisher")
.about("Print the number of processing units available")
.arg(
Arg::new("ALL")
.help("Print the number of installed processors")
.short('a')
.long("all")
.action(ArgAction::SetTrue),
)
}
fn run(&self, matches: &clap::ArgMatches) -> Result<(), Box<dyn std::error::Error>> {
2023-01-07 18:50:18 -05:00
if matches.get_flag("ALL") {
println!("{}", unsafe { get_nprocs_conf() });
2023-01-07 18:50:18 -05:00
} else {
println!("{}", unsafe { get_nprocs() });
2023-01-07 18:50:18 -05:00
}
Ok(())
}
fn path(&self) -> Option<crate::Path> {
Some(crate::Path::UsrBin)
2023-01-07 18:50:18 -05:00
}
}
extern "C" {
fn get_nprocs() -> libc::c_int;
fn get_nprocs_conf() -> libc::c_int;
}