-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathenv.rs
More file actions
70 lines (62 loc) · 1.93 KB
/
Copy pathenv.rs
File metadata and controls
70 lines (62 loc) · 1.93 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
use crate::process::ProcessInfo;
use crate::{Column, column_default};
use std::cmp;
use std::collections::HashMap;
use std::path::PathBuf;
pub struct Env {
header: String,
unit: String,
fmt_contents: HashMap<i32, String>,
raw_contents: HashMap<i32, String>,
width: usize,
#[allow(dead_code)]
procfs: Option<PathBuf>,
}
impl Env {
pub fn new(header: Option<String>, procfs: Option<PathBuf>) -> Self {
let header = header.unwrap_or_else(|| String::from("Env"));
let unit = String::new();
Self {
fmt_contents: HashMap::new(),
raw_contents: HashMap::new(),
width: 0,
header,
unit,
procfs,
}
}
}
#[cfg(any(target_os = "linux", target_os = "android"))]
impl Column for Env {
fn add(&mut self, proc: &ProcessInfo) {
let mut fmt_content = String::new();
if let Ok(proc) = crate::util::process_new(proc.pid, &self.procfs)
&& let Ok(envs) = proc.environ()
{
for (k, v) in envs {
fmt_content.push_str(&format!(
"{}=\"{}\" ",
k.to_string_lossy(),
v.to_string_lossy().replace('\"', "\\\"")
));
}
}
let raw_content = fmt_content.clone();
self.fmt_contents.insert(proc.pid, fmt_content);
self.raw_contents.insert(proc.pid, raw_content);
}
column_default!(String, false);
}
#[cfg(target_os = "freebsd")]
impl Column for Env {
fn add(&mut self, proc: &ProcessInfo) {
let mut fmt_content = String::new();
for env in &proc.curr_proc.env {
fmt_content.push_str(&format!("{} ", env.replace('\"', "\\\"")));
}
let raw_content = fmt_content.clone();
self.fmt_contents.insert(proc.pid, fmt_content);
self.raw_contents.insert(proc.pid, raw_content);
}
column_default!(String, false);
}