-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathvm_exe.rs
More file actions
61 lines (53 loc) · 1.63 KB
/
Copy pathvm_exe.rs
File metadata and controls
61 lines (53 loc) · 1.63 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
use crate::process::ProcessInfo;
use crate::util::bytify;
use crate::{column_default, Column};
use std::cmp;
use std::collections::HashMap;
pub struct VmExe {
header: String,
unit: String,
fmt_contents: HashMap<i32, String>,
raw_contents: HashMap<i32, u64>,
width: usize,
}
impl VmExe {
pub fn new(header: Option<String>) -> Self {
let header = header.unwrap_or_else(|| String::from("VmExe"));
let unit = String::from("[bytes]");
Self {
fmt_contents: HashMap::new(),
raw_contents: HashMap::new(),
width: 0,
header,
unit,
}
}
}
#[cfg(any(target_os = "linux", target_os = "android"))]
impl Column for VmExe {
fn add(&mut self, proc: &ProcessInfo) {
let (raw_content, fmt_content) = if let Some(ref curr_status) = proc.curr_status {
if let Some(val) = curr_status.vmexe {
let val = val.saturating_mul(1024);
(val, bytify(val))
} else {
(0, String::new())
}
} else {
(0, String::new())
};
self.fmt_contents.insert(proc.pid, fmt_content);
self.raw_contents.insert(proc.pid, raw_content);
}
column_default!(u64, true);
}
#[cfg(target_os = "freebsd")]
impl Column for VmExe {
fn add(&mut self, proc: &ProcessInfo) {
let raw_content = (proc.curr_proc.info.tsize as u64).saturating_mul(4096);
let fmt_content = bytify(raw_content);
self.fmt_contents.insert(proc.pid, fmt_content);
self.raw_contents.insert(proc.pid, raw_content);
}
column_default!(u64, true);
}