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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
|
// Take a look at the license at the top of the repository in the LICENSE file.
use crate::{
sys::{component::Component, Cpu, Disk, Networks, Process},
CpuRefreshKind, LoadAvg, Pid, ProcessRefreshKind, RefreshKind, SystemExt, User,
};
use std::collections::HashMap;
declare_signals! {
(),
_ => None,
}
#[doc = include_str!("../../md_doc/system.md")]
pub struct System {
processes_list: HashMap<Pid, Process>,
networks: Networks,
global_cpu: Cpu,
}
impl SystemExt for System {
const IS_SUPPORTED: bool = false;
const SUPPORTED_SIGNALS: &'static [Signal] = supported_signals();
fn new_with_specifics(_: RefreshKind) -> System {
System {
processes_list: Default::default(),
networks: Networks::new(),
global_cpu: Cpu::new(),
}
}
fn refresh_memory(&mut self) {}
fn refresh_cpu_specifics(&mut self, _refresh_kind: CpuRefreshKind) {}
fn refresh_components_list(&mut self) {}
fn refresh_processes_specifics(&mut self, _refresh_kind: ProcessRefreshKind) {}
fn refresh_process_specifics(&mut self, _pid: Pid, _refresh_kind: ProcessRefreshKind) -> bool {
false
}
fn refresh_disks_list(&mut self) {}
fn refresh_users_list(&mut self) {}
// COMMON PART
//
// Need to be moved into a "common" file to avoid duplication.
fn processes(&self) -> &HashMap<Pid, Process> {
&self.processes_list
}
fn process(&self, _pid: Pid) -> Option<&Process> {
None
}
fn networks(&self) -> &Networks {
&self.networks
}
fn networks_mut(&mut self) -> &mut Networks {
&mut self.networks
}
fn global_cpu_info(&self) -> &Cpu {
&self.global_cpu
}
fn cpus(&self) -> &[Cpu] {
&[]
}
fn physical_core_count(&self) -> Option<usize> {
None
}
fn total_memory(&self) -> u64 {
0
}
fn free_memory(&self) -> u64 {
0
}
fn available_memory(&self) -> u64 {
0
}
fn used_memory(&self) -> u64 {
0
}
fn total_swap(&self) -> u64 {
0
}
fn free_swap(&self) -> u64 {
0
}
fn used_swap(&self) -> u64 {
0
}
fn components(&self) -> &[Component] {
&[]
}
fn components_mut(&mut self) -> &mut [Component] {
&mut []
}
fn disks(&self) -> &[Disk] {
&[]
}
fn disks_mut(&mut self) -> &mut [Disk] {
&mut []
}
fn sort_disks_by<F>(&mut self, _compare: F)
where
F: FnMut(&Disk, &Disk) -> std::cmp::Ordering,
{
// does nothing.
}
fn uptime(&self) -> u64 {
0
}
fn boot_time(&self) -> u64 {
0
}
fn load_average(&self) -> LoadAvg {
LoadAvg {
one: 0.,
five: 0.,
fifteen: 0.,
}
}
fn users(&self) -> &[User] {
&[]
}
fn name(&self) -> Option<String> {
None
}
fn long_os_version(&self) -> Option<String> {
None
}
fn kernel_version(&self) -> Option<String> {
None
}
fn os_version(&self) -> Option<String> {
None
}
fn distribution_id(&self) -> String {
std::env::consts::OS.to_owned()
}
fn host_name(&self) -> Option<String> {
None
}
}
impl Default for System {
fn default() -> System {
System::new()
}
}
|