-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathcpu-monitor.rs
317 lines (285 loc) · 9.11 KB
/
cpu-monitor.rs
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
// plotters-iced
//
// Iced backend for Plotters
// Copyright: 2022, Joylei <[email protected]>
// License: MIT
extern crate iced;
extern crate plotters;
extern crate sysinfo;
use chrono::{DateTime, Utc};
use iced::{
alignment::{Horizontal, Vertical},
font,
widget::{
canvas::{Cache, Frame, Geometry},
Column, Container, Row, Scrollable, Space, Text,
},
Alignment, Element, Font, Length, Size, Task,
};
use plotters::prelude::ChartBuilder;
use plotters_backend::DrawingBackend;
use plotters_iced::{Chart, ChartWidget, Renderer};
use std::{
collections::VecDeque,
time::{Duration, Instant},
};
use sysinfo::{CpuRefreshKind, RefreshKind, System};
const PLOT_SECONDS: usize = 60; //1 min
const TITLE_FONT_SIZE: u16 = 22;
const SAMPLE_EVERY: Duration = Duration::from_millis(1000);
const FONT_BOLD: Font = Font {
family: font::Family::Name("Noto Sans"),
weight: font::Weight::Bold,
..Font::DEFAULT
};
fn main() {
iced::application("CPU Monitor Example", State::update, State::view)
.antialiasing(true)
.default_font(Font::with_name("Noto Sans"))
.subscription(|_| {
const FPS: u64 = 50;
iced::time::every(Duration::from_millis(1000 / FPS)).map(|_| Message::Tick)
})
.run_with(State::new)
.unwrap();
}
#[derive(Debug)]
enum Message {
/// message that cause charts' data lazily updated
Tick,
FontLoaded(Result<(), font::Error>),
}
struct State {
chart: SystemChart,
}
impl State {
fn new() -> (Self, Task<Message>) {
(
Self {
chart: Default::default(),
},
Task::batch([
font::load(include_bytes!("./fonts/notosans-regular.ttf").as_slice())
.map(Message::FontLoaded),
font::load(include_bytes!("./fonts/notosans-bold.ttf").as_slice())
.map(Message::FontLoaded),
]),
)
}
fn update(&mut self, message: Message) {
match message {
Message::Tick => {
self.chart.update();
}
_ => {}
}
}
fn view(&self) -> Element<'_, Message> {
let content = Column::new()
.spacing(20)
.align_x(Alignment::Start)
.width(Length::Fill)
.height(Length::Fill)
.push(
Text::new("Iced test chart")
.size(TITLE_FONT_SIZE)
.font(FONT_BOLD),
)
.push(self.chart.view());
Container::new(content)
//.style(style::Container)
.padding(5)
.center_x(Length::Fill)
.center_y(Length::Fill)
.into()
}
}
struct SystemChart {
sys: System,
last_sample_time: Instant,
items_per_row: usize,
processors: Vec<CpuUsageChart>,
chart_height: f32,
}
impl Default for SystemChart {
fn default() -> Self {
Self {
sys: System::new_with_specifics(
RefreshKind::new().with_cpu(CpuRefreshKind::new().with_cpu_usage()),
),
last_sample_time: Instant::now(),
items_per_row: 3,
processors: Default::default(),
chart_height: 300.0,
}
}
}
impl SystemChart {
#[inline]
fn is_initialized(&self) -> bool {
!self.processors.is_empty()
}
#[inline]
fn should_update(&self) -> bool {
!self.is_initialized() || self.last_sample_time.elapsed() > SAMPLE_EVERY
}
fn update(&mut self) {
if !self.should_update() {
return;
}
//eprintln!("refresh...");
self.sys.refresh_cpu();
self.last_sample_time = Instant::now();
let now = Utc::now();
let data = self.sys.cpus().iter().map(|v| v.cpu_usage() as i32);
//check if initialized
if !self.is_initialized() {
eprintln!("init...");
let mut processors: Vec<_> = data
.map(|percent| CpuUsageChart::new(vec![(now, percent)].into_iter()))
.collect();
self.processors.append(&mut processors);
} else {
//eprintln!("update...");
for (percent, p) in data.zip(self.processors.iter_mut()) {
p.push_data(now, percent);
}
}
}
fn view(&self) -> Element<Message> {
if !self.is_initialized() {
Text::new("Loading...")
.align_x(Horizontal::Center)
.align_y(Vertical::Center)
.into()
} else {
let mut col = Column::new()
.width(Length::Fill)
.height(Length::Shrink)
.align_x(Alignment::Center);
let chart_height = self.chart_height;
let mut idx = 0;
for chunk in self.processors.chunks(self.items_per_row) {
let mut row = Row::new()
.spacing(15)
.padding(20)
.width(Length::Fill)
.height(Length::Shrink)
.align_y(Alignment::Center);
for item in chunk {
row = row.push(item.view(idx, chart_height));
idx += 1;
}
while idx % self.items_per_row != 0 {
row = row.push(Space::new(Length::Fill, Length::Fixed(50.0)));
idx += 1;
}
col = col.push(row);
}
Scrollable::new(col).height(Length::Shrink).into()
}
}
}
struct CpuUsageChart {
cache: Cache,
data_points: VecDeque<(DateTime<Utc>, i32)>,
limit: Duration,
}
impl CpuUsageChart {
fn new(data: impl Iterator<Item = (DateTime<Utc>, i32)>) -> Self {
let data_points: VecDeque<_> = data.collect();
Self {
cache: Cache::new(),
data_points,
limit: Duration::from_secs(PLOT_SECONDS as u64),
}
}
fn push_data(&mut self, time: DateTime<Utc>, value: i32) {
let cur_ms = time.timestamp_millis();
self.data_points.push_front((time, value));
loop {
if let Some((time, _)) = self.data_points.back() {
let diff = Duration::from_millis((cur_ms - time.timestamp_millis()) as u64);
if diff > self.limit {
self.data_points.pop_back();
continue;
}
}
break;
}
self.cache.clear();
}
fn view(&self, idx: usize, chart_height: f32) -> Element<Message> {
Column::new()
.width(Length::Fill)
.height(Length::Shrink)
.spacing(5)
.align_x(Alignment::Center)
.push(Text::new(format!("Processor {}", idx)))
.push(ChartWidget::new(self).height(Length::Fixed(chart_height)))
.into()
}
}
impl Chart<Message> for CpuUsageChart {
type State = ();
// fn update(
// &mut self,
// event: Event,
// bounds: Rectangle,
// cursor: Cursor,
// ) -> (event::Status, Option<Message>) {
// self.cache.clear();
// (event::Status::Ignored, None)
// }
#[inline]
fn draw<R: Renderer, F: Fn(&mut Frame)>(
&self,
renderer: &R,
bounds: Size,
draw_fn: F,
) -> Geometry {
renderer.draw_cache(&self.cache, bounds, draw_fn)
}
fn build_chart<DB: DrawingBackend>(&self, _state: &Self::State, mut chart: ChartBuilder<DB>) {
use plotters::prelude::*;
const PLOT_LINE_COLOR: RGBColor = RGBColor(0, 175, 255);
// Acquire time range
let newest_time = self
.data_points
.front()
.unwrap_or(&(DateTime::from_timestamp(0, 0).unwrap(), 0))
.0;
let oldest_time = newest_time - chrono::Duration::seconds(PLOT_SECONDS as i64);
let mut chart = chart
.x_label_area_size(0)
.y_label_area_size(28)
.margin(20)
.build_cartesian_2d(oldest_time..newest_time, 0..100)
.expect("failed to build chart");
chart
.configure_mesh()
.bold_line_style(plotters::style::colors::BLUE.mix(0.1))
.light_line_style(plotters::style::colors::BLUE.mix(0.05))
.axis_style(ShapeStyle::from(plotters::style::colors::BLUE.mix(0.45)).stroke_width(1))
.y_labels(10)
.y_label_style(
("sans-serif", 15)
.into_font()
.color(&plotters::style::colors::BLUE.mix(0.65))
.transform(FontTransform::Rotate90),
)
.y_label_formatter(&|y: &i32| format!("{}%", y))
.draw()
.expect("failed to draw chart mesh");
chart
.draw_series(
AreaSeries::new(
self.data_points.iter().map(|x| (x.0, x.1)),
0,
PLOT_LINE_COLOR.mix(0.175),
)
.border_style(ShapeStyle::from(PLOT_LINE_COLOR).stroke_width(2)),
)
.expect("failed to draw chart data");
}
}