-
-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathtty.rs
More file actions
101 lines (86 loc) · 2.73 KB
/
Copy pathtty.rs
File metadata and controls
101 lines (86 loc) · 2.73 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
use crate::process::ProcessInfo;
use crate::{column_default, Column};
use std::cmp;
use std::collections::HashMap;
pub struct Tty {
header: String,
unit: String,
fmt_contents: HashMap<i32, String>,
raw_contents: HashMap<i32, String>,
width: usize,
}
impl Tty {
pub fn new(header: Option<String>) -> Self {
let header = header.unwrap_or_else(|| String::from("TTY"));
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 Tty {
fn add(&mut self, proc: &ProcessInfo) {
let (major, minor) = proc.curr_proc.stat().tty_nr();
let fmt_content = if major == 136 {
format!("pts/{minor}")
} else {
String::new()
};
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 = "macos")]
impl Column for Tty {
fn add(&mut self, proc: &ProcessInfo) {
let dev = proc.curr_task.pbsd.e_tdev;
let major = (dev >> 24) & 0xff;
let minor = dev & 0xffffff;
let fmt_content = if major == 16 {
format!("s{:03}", minor)
} else {
String::from("")
};
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 Tty {
fn add(&mut self, proc: &ProcessInfo) {
let dev = proc.curr_proc.info.tdev;
let mut buf = [0u8; 256];
let name = std::ffi::CString::new("kern.devname").unwrap();
let mut buf_size = std::mem::size_of::<[u8; 256]>();
let buf_ptr = buf.as_mut_ptr();
let dev_size = std::mem::size_of::<u64>();
let dev_ptr: *const u64 = &dev;
unsafe {
libc::sysctlbyname(
name.as_ptr(),
buf_ptr as *mut libc::c_void,
&mut buf_size,
dev_ptr as *const libc::c_void,
dev_size,
);
}
let fmt_content = if let Ok(devname) = std::ffi::CStr::from_bytes_until_nul(&buf) {
devname.to_string_lossy().into_owned()
} else {
String::from("")
};
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);
}