-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathpriority.rs
More file actions
86 lines (72 loc) · 2.41 KB
/
Copy pathpriority.rs
File metadata and controls
86 lines (72 loc) · 2.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
use crate::process::ProcessInfo;
use crate::{column_default, Column};
use std::cmp;
use std::collections::HashMap;
pub struct Priority {
header: String,
unit: String,
fmt_contents: HashMap<i32, String>,
raw_contents: HashMap<i32, i64>,
width: usize,
}
impl Priority {
pub fn new(header: Option<String>) -> Self {
let header = header.unwrap_or_else(|| String::from("Priority"));
let unit = String::new();
Self {
fmt_contents: HashMap::new(),
raw_contents: HashMap::new(),
width: 0,
header,
unit,
}
}
}
#[cfg(any(target_os = "linux", target_os = "android"))]
impl Column for Priority {
fn add(&mut self, proc: &ProcessInfo) {
let raw_content = proc.curr_proc.stat().priority;
let fmt_content = format!("{raw_content}");
self.fmt_contents.insert(proc.pid, fmt_content);
self.raw_contents.insert(proc.pid, raw_content);
}
column_default!(i64, true);
}
#[cfg(target_os = "macos")]
impl Column for Priority {
fn add(&mut self, proc: &ProcessInfo) {
let raw_content = proc.curr_task.ptinfo.pti_priority as i64;
let fmt_content = format!("{}", raw_content);
self.fmt_contents.insert(proc.pid, fmt_content);
self.raw_contents.insert(proc.pid, raw_content);
}
column_default!(i64, true);
}
#[cfg(target_os = "windows")]
impl Column for Priority {
fn add(&mut self, proc: &ProcessInfo) {
let raw_content = i64::from(proc.priority);
let fmt_content = match raw_content {
0x0020 => String::from("Normal"),
0x0040 => String::from("Idle"),
0x0080 => String::from("High"),
0x0100 => String::from("Realtime"),
0x4000 => String::from("BelowNormal"),
0x8000 => String::from("AboveNormal"),
_ => String::from("Unknown"),
};
self.fmt_contents.insert(proc.pid, fmt_content);
self.raw_contents.insert(proc.pid, raw_content);
}
column_default!(i64, true);
}
#[cfg(target_os = "freebsd")]
impl Column for Priority {
fn add(&mut self, proc: &ProcessInfo) {
let raw_content = proc.curr_proc.info.pri.level as i64 - 100;
let fmt_content = format!("{raw_content}");
self.fmt_contents.insert(proc.pid, fmt_content);
self.raw_contents.insert(proc.pid, raw_content);
}
column_default!(i64, true);
}