use crate::io;
use crate::sys;
use crate::applets::get_arg;
pub fn chrt(argc: i32, argv: *const *const u8) -> i32 {
if argc < 2 {
io::write_str(2, b"chrt: usage: chrt [-p] priority pid|command\n");
return 1;
}
let mut policy = libc::SCHED_RR;
let mut show_pid = false;
let mut idx = 1;
while idx < argc {
if let Some(arg) = unsafe { get_arg(argv, idx) } {
if arg == b"-p" {
show_pid = true;
} else if arg == b"-f" {
policy = libc::SCHED_FIFO;
} else if arg == b"-r" {
policy = libc::SCHED_RR;
} else if arg == b"-o" {
policy = libc::SCHED_OTHER;
} else if arg[0] != b'-' {
break;
}
}
idx += 1;
}
if show_pid {
if idx >= argc {
io::write_str(2, b"chrt: missing pid\n");
return 1;
}
let pid_str = unsafe { get_arg(argv, idx).unwrap() };
let pid = sys::parse_i64(pid_str).unwrap_or(0) as i32;
if pid <= 0 {
io::write_str(2, b"chrt: invalid pid\n");
return 1;
}
let current_policy = unsafe { libc::sched_getscheduler(pid) };
if current_policy < 0 {
sys::perror(b"sched_getscheduler");
return 1;
}
let mut param: libc::sched_param = unsafe { core::mem::zeroed() };
if unsafe { libc::sched_getparam(pid, &mut param) } != 0 {
sys::perror(b"sched_getparam");
return 1;
}
let policy_name = match current_policy {
libc::SCHED_OTHER => b"SCHED_OTHER" as &[u8],
libc::SCHED_FIFO => b"SCHED_FIFO",
libc::SCHED_RR => b"SCHED_RR",
libc::SCHED_BATCH => b"SCHED_BATCH",
libc::SCHED_IDLE => b"SCHED_IDLE",
_ => b"unknown",
};
io::write_str(1, b"pid ");
io::write_signed(1, pid as i64);
io::write_str(1, b"'s current scheduling policy: ");
io::write_all(1, policy_name);
io::write_str(1, b"\n");
io::write_str(1, b"pid ");
io::write_signed(1, pid as i64);
io::write_str(1, b"'s current scheduling priority: ");
io::write_signed(1, param.sched_priority as i64);
io::write_str(1, b"\n");
return 0;
}
if idx + 1 >= argc {
io::write_str(2, b"chrt: missing priority or command\n");
return 1;
}
let prio_str = unsafe { get_arg(argv, idx).unwrap() };
let priority = sys::parse_i64(prio_str).unwrap_or(0) as i32;
idx += 1;
let pid = io::fork();
if pid == 0 {
let mut param: libc::sched_param = unsafe { core::mem::zeroed() };
param.sched_priority = priority;
if unsafe { libc::sched_setscheduler(0, policy, ¶m) } != 0 {
sys::perror(b"sched_setscheduler");
io::exit(1);
}
let cmd = unsafe { get_arg(argv, idx).unwrap() };
let mut cmd_buf = [0u8; 4096];
cmd_buf[..cmd.len()].copy_from_slice(cmd);
unsafe {
libc::execvp(
cmd_buf.as_ptr() as *const i8,
argv.add(idx as usize) as *const *const i8,
);
}
sys::perror(cmd);
io::exit(127);
}
let mut status = 0;
io::waitpid(pid, &mut status, 0);
if libc::WIFEXITED(status) {
libc::WEXITSTATUS(status)
} else {
1
}
}
#[cfg(test)]
mod tests {
extern crate std;
use std::sync::atomic::{AtomicUsize, Ordering};
static TEST_COUNTER: AtomicUsize = AtomicUsize::new(0);
use std::process::Command;
use std::path::PathBuf;
fn get_armybox_path() -> PathBuf {
if let Ok(path) = std::env::var("ARMYBOX_PATH") {
return PathBuf::from(path);
}
let manifest_dir = std::env::var("CARGO_MANIFEST_DIR")
.map(PathBuf::from)
.unwrap_or_else(|_| std::env::current_dir().unwrap());
let release = manifest_dir.join("target/release/armybox");
if release.exists() { return release; }
manifest_dir.join("target/debug/armybox")
}
#[test]
fn test_chrt_no_args() {
let armybox = get_armybox_path();
if !armybox.exists() { return; }
let output = Command::new(&armybox)
.args(["chrt"])
.output()
.unwrap();
assert_eq!(output.status.code(), Some(1));
let stderr = std::string::String::from_utf8_lossy(&output.stderr);
assert!(stderr.contains("usage"));
}
#[test]
fn test_chrt_show_pid() {
let armybox = get_armybox_path();
if !armybox.exists() { return; }
let pid = std::process::id();
let output = Command::new(&armybox)
.args(["chrt", "-p", &pid.to_string()])
.output()
.unwrap();
assert_eq!(output.status.code(), Some(0));
let stdout = std::string::String::from_utf8_lossy(&output.stdout);
assert!(stdout.contains("scheduling"));
}
}