1#![crate_type = "bin"]
4#![allow(unused_must_use, non_upper_case_globals)]
5#![allow(clippy::manual_range_contains)]
6
7use std::io::{self, BufRead, Write};
8use std::str::FromStr;
9use sysinfo::{Components, Disks, Groups, Networks, Pid, SUPPORTED_SIGNALS, System, Users};
10
11fn print_help() {
12 println!(
13 "\
14== Help menu ==
15
16help : shows this menu
17quit : exits the program
18
19= Refresh commands =
20
21refresh : reloads all processes information
22refresh [pid] : reloads corresponding process information
23refresh_components : reloads components information
24refresh_cpu : reloads CPU information
25refresh_disks : reloads disks information
26refresh_networks : reloads networks information
27refresh_users : reloads users information
28
29= Process commands =
30
31all : displays all process name and pid
32kill [pid] [signal]: sends [signal] to the process with this [pid]. To get the [signal] number, use the `signals` command.
33show [pid | name] : shows information of the given process corresponding to [pid | name]
34signals : shows the available signals
35pid : displays this example's PID
36
37= CPU commands =
38
39brand : displays CPU brand
40cpus : displays CPUs state
41frequency : displays CPU frequency
42vendor_id : displays CPU vendor id
43
44= Users and groups commands =
45
46groups : displays all groups
47users : displays all users and their groups
48
49= System commands =
50
51boot_time : displays system boot time
52load_avg : displays system load average
53system : displays system information (such as name, version and hostname)
54uptime : displays system uptime
55
56= Extra components commands =
57
58disks : displays disks' information
59memory : displays memory state
60network : displays network' information
61temperature : displays components' temperature"
62 );
63}
64
65fn interpret_input(
66 input: &str,
67 sys: &mut System,
68 networks: &mut Networks,
69 disks: &mut Disks,
70 components: &mut Components,
71 users: &mut Users,
72) -> bool {
73 match input.trim() {
74 "help" => print_help(),
75 "refresh_disks" => {
76 println!("Refreshing disk list...");
77 disks.refresh(true);
78 println!("Done.");
79 }
80 "refresh_users" => {
81 println!("Refreshing user list...");
82 users.refresh();
83 println!("Done.");
84 }
85 "refresh_networks" => {
86 println!("Refreshing network list...");
87 networks.refresh(true);
88 println!("Done.");
89 }
90 "refresh_components" => {
91 println!("Refreshing component list...");
92 components.refresh(true);
93 println!("Done.");
94 }
95 "refresh_cpu" => {
96 println!("Refreshing CPUs...");
97 sys.refresh_cpu_all();
98 println!("Done.");
99 }
100 "signals" => {
101 for (nb, sig) in SUPPORTED_SIGNALS.iter().enumerate() {
102 println!("{:2}:{sig:?}", nb + 1);
103 }
104 }
105 "cpus" => {
106 println!(
109 "number of physical cores: {}",
110 System::physical_core_count()
111 .map(|c| c.to_string())
112 .unwrap_or_else(|| "Unknown".to_owned()),
113 );
114 println!("total CPU usage: {}%", sys.global_cpu_usage(),);
115 for cpu in sys.cpus() {
116 println!("{cpu:?}");
117 }
118 }
119 "memory" => {
120 println!("total memory: {: >10} KB", sys.total_memory() / 1_000);
121 println!(
122 "available memory: {: >10} KB",
123 sys.available_memory() / 1_000
124 );
125 println!("used memory: {: >10} KB", sys.used_memory() / 1_000);
126 println!("total swap: {: >10} KB", sys.total_swap() / 1_000);
127 println!("used swap: {: >10} KB", sys.used_swap() / 1_000);
128 }
129 "quit" | "exit" => return true,
130 "all" => {
131 for (pid, proc_) in sys.processes() {
132 println!(
133 "{}:{} status={:?}",
134 pid,
135 proc_.name().to_string_lossy(),
136 proc_.status()
137 );
138 }
139 }
140 "frequency" => {
141 for cpu in sys.cpus() {
142 println!("[{}] {} MHz", cpu.name(), cpu.frequency(),);
143 }
144 }
145 "vendor_id" => {
146 println!("vendor ID: {}", sys.cpus()[0].vendor_id());
147 }
148 "brand" => {
149 println!("brand: {}", sys.cpus()[0].brand());
150 }
151 "load_avg" => {
152 let load_avg = System::load_average();
153 println!("one minute : {}%", load_avg.one);
154 println!("five minutes : {}%", load_avg.five);
155 println!("fifteen minutes: {}%", load_avg.fifteen);
156 }
157 e if e.starts_with("show ") => {
158 let tmp: Vec<&str> = e.split(' ').filter(|s| !s.is_empty()).collect();
159
160 if tmp.len() != 2 {
161 println!("show command takes a pid or a name in parameter!");
162 println!("example: show 1254");
163 } else if let Ok(pid) = Pid::from_str(tmp[1]) {
164 match sys.process(pid) {
165 Some(p) => {
166 println!("{:?}", *p);
167 println!(
168 "Files open/limit: {:?}/{:?}",
169 p.open_files(),
170 p.open_files_limit(),
171 );
172 }
173 None => {
174 println!("pid \"{pid:?}\" not found");
175 }
176 }
177 } else {
178 let proc_name = tmp[1];
179 for proc_ in sys.processes_by_name(proc_name.as_ref()) {
180 println!("==== {} ====", proc_.name().to_string_lossy());
181 println!("{proc_:?}");
182 }
183 }
184 }
185 "temperature" => {
186 for component in components.iter() {
187 println!("{component:?}");
188 }
189 }
190 "network" => {
191 for (interface_name, data) in networks.iter() {
192 println!(
193 "\
194{interface_name}:
195 ether {}
196 input data (new / total): {} / {} B
197 output data (new / total): {} / {} B",
198 data.mac_address(),
199 data.received(),
200 data.total_received(),
201 data.transmitted(),
202 data.total_transmitted(),
203 );
204 }
205 }
206 "show" => {
207 println!("'show' command expects a pid number or a process name");
208 }
209 e if e.starts_with("kill ") => {
210 let tmp: Vec<&str> = e
211 .split(' ')
212 .map(|s| s.trim())
213 .filter(|s| !s.is_empty())
214 .collect();
215
216 if tmp.len() != 3 {
217 println!("kill command takes the pid and a signal number in parameter!");
218 println!("example: kill 1254 9");
219 } else {
220 let Ok(pid) = Pid::from_str(tmp[1]) else {
221 eprintln!("Expected a number for the PID, found {:?}", tmp[1]);
222 return false;
223 };
224 let Ok(signal) = usize::from_str(tmp[2]) else {
225 eprintln!("Expected a number for the signal, found {:?}", tmp[2]);
226 return false;
227 };
228 let Some(signal) = SUPPORTED_SIGNALS.get(signal) else {
229 eprintln!(
230 "No signal matching {signal}. Use the `signals` command to get the \
231 list of signals.",
232 );
233 return false;
234 };
235
236 match sys.process(pid) {
237 Some(p) => {
238 if let Some(res) = p.kill_with(*signal) {
239 println!("kill: {res}");
240 } else {
241 eprintln!("kill: signal not supported on this platform");
242 }
243 }
244 None => {
245 eprintln!("pid not found");
246 }
247 }
248 }
249 }
250 "disks" => {
251 for disk in disks {
252 println!("{disk:?}");
253 }
254 }
255 "users" => {
256 for user in users {
257 println!("{:?} => {:?}", user.name(), user.groups(),);
258 }
259 }
260 "groups" => {
261 for group in Groups::new_with_refreshed_list().list() {
262 println!("{group:?}");
263 }
264 }
265 "boot_time" => {
266 println!("{} seconds", System::boot_time());
267 }
268 "uptime" => {
269 let up = System::uptime();
270 let mut uptime = up;
271 let days = uptime / 86400;
272 uptime -= days * 86400;
273 let hours = uptime / 3600;
274 uptime -= hours * 3600;
275 let minutes = uptime / 60;
276 println!("{days} days {hours} hours {minutes} minutes ({up} seconds in total)",);
277 }
278 x if x.starts_with("refresh") => {
279 if x == "refresh" {
280 println!("Getting processes' information...");
281 sys.refresh_all();
282 println!("Done.");
283 } else if x.starts_with("refresh ") {
284 println!("Getting process' information...");
285 if let Some(pid) = x
286 .split(' ')
287 .filter_map(|pid| pid.parse().ok())
288 .take(1)
289 .next()
290 {
291 if sys.refresh_processes(sysinfo::ProcessesToUpdate::Some(&[pid]), true) != 0 {
292 println!("Process `{pid}` updated successfully");
293 } else {
294 println!("Process `{pid}` couldn't be updated...");
295 }
296 } else {
297 println!("Invalid [pid] received...");
298 }
299 } else {
300 println!(
301 "\"{x}\": Unknown command. Enter 'help' if you want to get the commands' \
302 list.",
303 );
304 }
305 }
306 "pid" => {
307 println!(
308 "PID: {}",
309 sysinfo::get_current_pid().expect("failed to get PID")
310 );
311 }
312 "system" => {
313 println!(
314 "System name: {}\n\
315 System kernel version: {}\n\
316 System OS version: {}\n\
317 System OS (long) version: {}\n\
318 System host name: {}\n\
319 System kernel: {}",
320 System::name().unwrap_or_else(|| "<unknown>".to_owned()),
321 System::kernel_version().unwrap_or_else(|| "<unknown>".to_owned()),
322 System::os_version().unwrap_or_else(|| "<unknown>".to_owned()),
323 System::long_os_version().unwrap_or_else(|| "<unknown>".to_owned()),
324 System::host_name().unwrap_or_else(|| "<unknown>".to_owned()),
325 System::kernel_long_version(),
326 );
327 }
328 e => {
329 println!(
330 "\"{e}\": Unknown command. Enter 'help' if you want to get the commands' \
331 list.",
332 );
333 }
334 }
335 false
336}
337
338fn main() {
339 println!("Getting system information...");
340 let mut system = System::new_all();
341 let mut networks = Networks::new_with_refreshed_list();
342 let mut disks = Disks::new_with_refreshed_list();
343 let mut components = Components::new_with_refreshed_list();
344 let mut users = Users::new_with_refreshed_list();
345
346 println!("Done.");
347 let t_stin = io::stdin();
348 let mut stin = t_stin.lock();
349 let mut done = false;
350
351 println!("To get the commands' list, enter 'help'.");
352 while !done {
353 let mut input = String::new();
354 write!(&mut io::stdout(), "> ");
355 io::stdout().flush();
356
357 stin.read_line(&mut input);
358 if input.is_empty() {
359 println!("\nLeaving, bye!");
362 break;
363 }
364 if (&input as &str).ends_with('\n') {
365 input.pop();
366 }
367 done = interpret_input(
368 input.as_ref(),
369 &mut system,
370 &mut networks,
371 &mut disks,
372 &mut components,
373 &mut users,
374 );
375 }
376}