all-smi 0.26.2

Command-line utility for monitoring GPU hardware. It provides a real-time view of GPU utilization, memory usage, temperature, power consumption, and other metrics.
Documentation
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
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
// Copyright 2025 Lablup Inc. and Jeongkyu Shin
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

//! Lightweight render snapshot captured from `AppState` under lock.
//!
//! The snapshot contains only the data needed for a single frame, allowing
//! the mutex to be released before expensive frame composition begins.
//! This keeps the critical section short so that background data collectors
//! are not blocked while the UI assembles its output.

use std::collections::HashMap;

use crate::app_state::{
    AppState, ConnectionStatus, FilterInputMode, ReplayState, SortCriteria, SortDirection,
    UsersTabState,
};
use crate::common::config::EnergyConfig;
use crate::device::{
    ChassisInfo, CpuInfo, GpuInfo, MemoryInfo, MigGpuInfo, ProcessInfo, VgpuHostInfo,
};
use crate::metrics::energy::EnergyAccountant;
use crate::network::metrics_parser::ParsedProcessRow;
use crate::storage::info::StorageInfo;
use crate::ui::aggregation::user::UserAggregationResult;
use crate::ui::alerts::{AlertTransition, Alerter};
use crate::ui::filter_dsl::Expr as FilterExpr;
use crate::ui::notification::NotificationManager;
use crate::ui::topology::TopologyViewMode;
use crate::utils::RuntimeEnvironment;

/// Pre-computed rendering decisions captured from `AppState` under lock.
///
/// These booleans let the UI loop decide how to proceed without re-reading
/// shared state after the lock is released.
#[derive(Clone, Debug)]
pub struct RenderDecisions {
    pub force_clear: bool,
    #[allow(dead_code)] // Future caching: skip composition when nothing changed
    pub should_render: bool,
    #[allow(dead_code)] // Exposed for coordinator queries outside the main loop
    pub animations_needed: bool,
}

/// A snapshot of `AppState` containing only the data needed for one frame.
///
/// Created quickly under the mutex lock, then used without the lock held
/// for the full (potentially expensive) frame composition path.
///
/// The snapshot mirrors the `AppState` fields that are read during rendering.
/// Mutable UI-only bookkeeping (e.g., frame counters, scroll offsets) is
/// updated under the lock before the snapshot is taken, so the snapshot
/// itself is immutable from the render path's perspective.
#[derive(Clone)]
pub struct RenderSnapshot {
    // Mode and display flags
    pub show_help: bool,
    pub loading: bool,
    pub is_local_mode: bool,
    pub gpu_filter_enabled: bool,

    // Tab state
    pub tabs: Vec<String>,
    pub current_tab: usize,
    pub tab_scroll_offset: usize,

    // Scroll and selection state
    pub gpu_scroll_offset: usize,
    pub storage_scroll_offset: usize,
    pub selected_process_index: usize,
    pub start_index: usize,
    pub process_horizontal_scroll_offset: usize,

    // Scroll animation offsets (marquee text)
    pub device_name_scroll_offsets: HashMap<String, usize>,
    pub host_id_scroll_offsets: HashMap<String, usize>,
    pub cpu_name_scroll_offsets: HashMap<String, usize>,

    // Frame counter for animation
    pub frame_counter: u64,

    // Sort state
    pub sort_criteria: SortCriteria,
    pub sort_direction: SortDirection,

    // Device data
    pub gpu_info: Vec<GpuInfo>,
    pub cpu_info: Vec<CpuInfo>,
    pub memory_info: Vec<MemoryInfo>,
    pub process_info: Vec<ProcessInfo>,
    pub chassis_info: Vec<ChassisInfo>,
    pub storage_info: Vec<StorageInfo>,
    /// Per-GPU vGPU host info (NVIDIA vGPU only). Empty on bare-metal.
    pub vgpu_info: Vec<VgpuHostInfo>,
    /// Per-GPU MIG host info (NVIDIA datacenter GPUs with MIG enabled). Empty
    /// on consumer cards, pre-Ampere architectures, and non-MIG hosts.
    pub mig_info: Vec<MigGpuInfo>,

    // Connection tracking (remote mode)
    pub connection_status: HashMap<String, ConnectionStatus>,
    pub hostname_to_host_id: HashMap<String, String>,

    // Runtime environment display
    pub runtime_environment: RuntimeEnvironment,

    // Dashboard history data (Vec instead of VecDeque for lighter clone)
    pub utilization_history: Vec<f64>,
    pub memory_history: Vec<f64>,
    pub temperature_history: Vec<f64>,
    pub package_power_history: Vec<f64>,
    pub ane_power_history: Vec<f64>,
    pub cpu_utilization_history: Vec<f64>,
    pub system_memory_history: Vec<f64>,
    pub cpu_temperature_history: Vec<f64>,

    // Notifications (cloned for display)
    pub notifications: NotificationManager,

    // Loading status
    pub startup_status_lines: Vec<String>,

    // Data version for change detection
    pub data_version: u64,
    /// Collector-only data version. Keys the Users-tab aggregation
    /// cache so UI-only state changes (sort/filter/drill) do not
    /// invalidate it.
    pub collector_data_version: u64,

    // Filter state (issue #186)
    pub filter_query: Option<FilterExpr>,
    pub filter_buffer: String,
    pub filter_input_mode: FilterInputMode,
    pub filter_recent: Vec<String>,
    pub filter_error: Option<String>,
    pub filter_preview_count: Option<(usize, usize)>,
    pub filter_hide_nonmatching: bool,

    // Alerter state (issue #186)
    pub alerter: Alerter,
    pub alert_history: Vec<AlertTransition>,
    pub alert_panel_open: bool,

    // Replay state (issue #187)
    pub replay: Option<ReplayState>,

    // Users tab (issue #189)
    /// Per-process rows from the remote `all_smi_process_*` families.
    /// Used only when the aggregation cache is cold; in steady state the
    /// pre-computed `users_aggregation` below is the read path.
    pub remote_process_info: Vec<ParsedProcessRow>,
    pub users_tab_state: UsersTabState,
    /// Pre-computed aggregation copied out of the app state while the
    /// lock is held.  Cloning the result (small: one vector per user)
    /// keeps the render path lock-free.
    pub users_aggregation: UserAggregationResult,

    // Topology tab (issue #190)
    /// Render mode selected by the Topology tab's `M` toggle.
    pub topology_view_mode: TopologyViewMode,
    /// Operator-selected host tab remembered for the Topology view. When
    /// `Some` and still present in `tabs`, the Topology renderer points at
    /// that host; otherwise it falls back to the first host tab.
    pub topology_last_host_tab: Option<String>,

    // Energy accounting (issue #191)
    /// Cloned energy accountant so the chassis and energy renderers
    /// can read session / lifetime counters without holding the
    /// app-state lock.
    pub energy: EnergyAccountant,
    /// Energy configuration (price, currency, display toggles).
    pub energy_config: EnergyConfig,
}

impl RenderSnapshot {
    /// Capture a snapshot from the live `AppState`.
    ///
    /// This clones only the data needed for rendering. The caller should drop
    /// the `AppState` lock immediately after this returns.
    ///
    /// History VecDeques are converted to Vec to avoid cloning the deque
    /// ring-buffer internals; the rendering path only iterates forward.
    pub fn capture(state: &mut AppState) -> Self {
        // Materialise the memoised user aggregation while we still hold
        // the lock so the render path never has to.  `users_aggregation`
        // is a no-op after the first call per data_version.
        let users_aggregation = state.users_aggregation().clone();
        Self {
            // Flags -- Copy types, no allocation
            show_help: state.show_help,
            loading: state.loading,
            is_local_mode: state.is_local_mode,
            gpu_filter_enabled: state.gpu_filter_enabled,

            // Tab state -- cheap Vec<String> clone
            tabs: state.tabs.clone(),
            current_tab: state.current_tab,
            tab_scroll_offset: state.tab_scroll_offset,

            // Scroll/selection -- Copy types
            gpu_scroll_offset: state.gpu_scroll_offset,
            storage_scroll_offset: state.storage_scroll_offset,
            selected_process_index: state.selected_process_index,
            start_index: state.start_index,
            process_horizontal_scroll_offset: state.process_horizontal_scroll_offset,

            // Scroll animation offsets
            device_name_scroll_offsets: state.device_name_scroll_offsets.clone(),
            host_id_scroll_offsets: state.host_id_scroll_offsets.clone(),
            cpu_name_scroll_offsets: state.cpu_name_scroll_offsets.clone(),

            // Frame counter
            frame_counter: state.frame_counter,

            // Sort state -- Copy types
            sort_criteria: state.sort_criteria,
            sort_direction: state.sort_direction,

            // Device data -- Vec clones (main cost of snapshot)
            gpu_info: state.gpu_info.clone(),
            cpu_info: state.cpu_info.clone(),
            memory_info: state.memory_info.clone(),
            process_info: state.process_info.clone(),
            chassis_info: state.chassis_info.clone(),
            storage_info: state.storage_info.clone(),
            vgpu_info: state.vgpu_info.clone(),
            mig_info: state.mig_info.clone(),

            // Connection tracking
            connection_status: state.connection_status.clone(),
            hostname_to_host_id: state.hostname_to_host_id.clone(),

            // Runtime environment
            runtime_environment: state.runtime_environment.clone(),

            // History -- convert VecDeque -> Vec (avoids deque ring-buffer clone)
            utilization_history: state.utilization_history.iter().copied().collect(),
            memory_history: state.memory_history.iter().copied().collect(),
            temperature_history: state.temperature_history.iter().copied().collect(),
            package_power_history: state.package_power_history.iter().copied().collect(),
            ane_power_history: state.ane_power_history.iter().copied().collect(),
            cpu_utilization_history: state.cpu_utilization_history.iter().copied().collect(),
            system_memory_history: state.system_memory_history.iter().copied().collect(),
            cpu_temperature_history: state.cpu_temperature_history.iter().copied().collect(),

            // Notifications
            notifications: state.notifications.clone(),

            // Loading status
            startup_status_lines: state.startup_status_lines.clone(),

            // Data version
            data_version: state.data_version,
            collector_data_version: state.collector_data_version,

            // Filter state (issue #186)
            filter_query: state.filter_query.clone(),
            filter_buffer: state.filter_buffer.clone(),
            filter_input_mode: state.filter_input_mode,
            filter_recent: state.filter_recent.iter().cloned().collect(),
            filter_error: state.filter_error.clone(),
            filter_preview_count: state.filter_preview_count,
            filter_hide_nonmatching: state.filter_hide_nonmatching,

            // Alerter state (issue #186)
            alerter: state.alerter.clone(),
            alert_history: state.alert_history.iter().cloned().collect(),
            alert_panel_open: state.alert_panel_open,

            // Replay state (issue #187)
            replay: state.replay.clone(),

            // Users tab (issue #189)
            remote_process_info: state.remote_process_info.clone(),
            users_tab_state: state.users_tab_state.clone(),
            users_aggregation,

            // Topology tab (issue #190)
            topology_view_mode: state.topology_view_mode,
            topology_last_host_tab: state.topology_last_host_tab.clone(),

            // Energy accounting (issue #191)
            energy: state.energy.clone(),
            energy_config: state.energy_config.clone(),
        }
    }

    /// Reconstruct a temporary `AppState` from this snapshot.
    ///
    /// This is used for backward compatibility with existing UI functions
    /// (e.g., `draw_system_view`, `draw_tabs`, `print_function_keys`) that
    /// accept `&AppState`. The returned state is a read-only view and should
    /// never be written back to shared state.
    ///
    /// As UI functions are gradually migrated to accept `&RenderSnapshot`
    /// directly, uses of this method should decrease.
    pub fn as_app_state(&self) -> AppState {
        let mut state = AppState::new();

        // Flags
        state.show_help = self.show_help;
        state.loading = self.loading;
        state.is_local_mode = self.is_local_mode;
        state.gpu_filter_enabled = self.gpu_filter_enabled;

        // Tab state
        state.tabs = self.tabs.clone();
        state.current_tab = self.current_tab;
        state.tab_scroll_offset = self.tab_scroll_offset;

        // Scroll/selection
        state.gpu_scroll_offset = self.gpu_scroll_offset;
        state.storage_scroll_offset = self.storage_scroll_offset;
        state.selected_process_index = self.selected_process_index;
        state.start_index = self.start_index;
        state.process_horizontal_scroll_offset = self.process_horizontal_scroll_offset;

        // Scroll offsets
        state.device_name_scroll_offsets = self.device_name_scroll_offsets.clone();
        state.host_id_scroll_offsets = self.host_id_scroll_offsets.clone();
        state.cpu_name_scroll_offsets = self.cpu_name_scroll_offsets.clone();

        // Frame counter
        state.frame_counter = self.frame_counter;

        // Sort
        state.sort_criteria = self.sort_criteria;
        state.sort_direction = self.sort_direction;

        // Device data
        state.gpu_info = self.gpu_info.clone();
        state.cpu_info = self.cpu_info.clone();
        state.memory_info = self.memory_info.clone();
        state.process_info = self.process_info.clone();
        state.chassis_info = self.chassis_info.clone();
        state.storage_info = self.storage_info.clone();
        state.vgpu_info = self.vgpu_info.clone();
        state.mig_info = self.mig_info.clone();

        // Connection tracking
        state.connection_status = self.connection_status.clone();
        state.hostname_to_host_id = self.hostname_to_host_id.clone();

        // Runtime environment
        state.runtime_environment = self.runtime_environment.clone();

        // History (Vec -> VecDeque)
        state.utilization_history = self.utilization_history.iter().copied().collect();
        state.memory_history = self.memory_history.iter().copied().collect();
        state.temperature_history = self.temperature_history.iter().copied().collect();
        state.package_power_history = self.package_power_history.iter().copied().collect();
        state.ane_power_history = self.ane_power_history.iter().copied().collect();
        state.cpu_utilization_history = self.cpu_utilization_history.iter().copied().collect();
        state.system_memory_history = self.system_memory_history.iter().copied().collect();
        state.cpu_temperature_history = self.cpu_temperature_history.iter().copied().collect();

        // Notifications
        state.notifications = self.notifications.clone();

        // Loading
        state.startup_status_lines = self.startup_status_lines.clone();

        // Data version
        state.data_version = self.data_version;
        state.collector_data_version = self.collector_data_version;

        // Filter + alerter state (issue #186)
        state.filter_query = self.filter_query.clone();
        state.filter_buffer = self.filter_buffer.clone();
        state.filter_input_mode = self.filter_input_mode;
        state.filter_recent = self.filter_recent.iter().cloned().collect();
        state.filter_error = self.filter_error.clone();
        state.filter_preview_count = self.filter_preview_count;
        state.filter_hide_nonmatching = self.filter_hide_nonmatching;
        state.alerter = self.alerter.clone();
        state.alert_history = self.alert_history.iter().cloned().collect();
        state.alert_panel_open = self.alert_panel_open;

        // Replay state (issue #187)
        state.replay = self.replay.clone();

        // Users tab (issue #189)
        state.remote_process_info = self.remote_process_info.clone();
        state.users_tab_state = self.users_tab_state.clone();
        state.users_aggregation_cache = crate::app_state::UsersAggregationCache {
            data_version: Some(self.collector_data_version),
            result: self.users_aggregation.clone(),
        };

        // Topology tab (issue #190)
        state.topology_view_mode = self.topology_view_mode;
        state.topology_last_host_tab = self.topology_last_host_tab.clone();

        // Energy accounting (issue #191)
        state.energy = self.energy.clone();
        state.energy_config = self.energy_config.clone();

        state
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_snapshot_capture_preserves_flags() {
        let mut state = AppState::new();
        state.show_help = true;
        state.loading = false;
        state.is_local_mode = true;
        state.gpu_filter_enabled = true;

        let snapshot = RenderSnapshot::capture(&mut state);

        assert!(snapshot.show_help);
        assert!(!snapshot.loading);
        assert!(snapshot.is_local_mode);
        assert!(snapshot.gpu_filter_enabled);
    }

    #[test]
    fn test_snapshot_capture_preserves_tab_state() {
        let mut state = AppState::new();
        state.tabs = vec!["All".to_string(), "Node1".to_string(), "Node2".to_string()];
        state.current_tab = 1;
        state.tab_scroll_offset = 0;

        let snapshot = RenderSnapshot::capture(&mut state);

        assert_eq!(snapshot.tabs.len(), 3);
        assert_eq!(snapshot.current_tab, 1);
        assert_eq!(snapshot.tabs[1], "Node1");
    }

    #[test]
    fn test_snapshot_capture_preserves_scroll_state() {
        let mut state = AppState::new();
        state.gpu_scroll_offset = 5;
        state.storage_scroll_offset = 3;
        state.selected_process_index = 10;
        state.process_horizontal_scroll_offset = 20;

        let snapshot = RenderSnapshot::capture(&mut state);

        assert_eq!(snapshot.gpu_scroll_offset, 5);
        assert_eq!(snapshot.storage_scroll_offset, 3);
        assert_eq!(snapshot.selected_process_index, 10);
        assert_eq!(snapshot.process_horizontal_scroll_offset, 20);
    }

    #[test]
    fn test_snapshot_capture_preserves_sort_state() {
        let mut state = AppState::new();
        state.sort_criteria = SortCriteria::Utilization;
        state.sort_direction = SortDirection::Ascending;

        let snapshot = RenderSnapshot::capture(&mut state);

        assert_eq!(snapshot.sort_criteria, SortCriteria::Utilization);
        assert_eq!(snapshot.sort_direction, SortDirection::Ascending);
    }

    #[test]
    fn test_snapshot_capture_preserves_data_version() {
        let mut state = AppState::new();
        state.mark_data_changed();
        state.mark_data_changed();

        let snapshot = RenderSnapshot::capture(&mut state);
        assert_eq!(snapshot.data_version, 2);
    }

    #[test]
    fn test_snapshot_capture_converts_history_from_vecdeque() {
        let mut state = AppState::new();
        state.utilization_history.push_back(50.0);
        state.utilization_history.push_back(75.0);
        state.memory_history.push_back(40.0);

        let snapshot = RenderSnapshot::capture(&mut state);

        assert_eq!(snapshot.utilization_history, vec![50.0, 75.0]);
        assert_eq!(snapshot.memory_history, vec![40.0]);
    }

    #[test]
    fn test_snapshot_is_independent_of_source_state() {
        let mut state = AppState::new();
        state.current_tab = 0;
        state.gpu_scroll_offset = 5;

        let snapshot = RenderSnapshot::capture(&mut state);

        // Mutate source state after snapshot
        state.current_tab = 2;
        state.gpu_scroll_offset = 99;

        // Snapshot should retain original values
        assert_eq!(snapshot.current_tab, 0);
        assert_eq!(snapshot.gpu_scroll_offset, 5);
    }

    #[test]
    fn test_as_app_state_roundtrip() {
        let mut state = AppState::new();
        state.show_help = true;
        state.current_tab = 2;
        state.gpu_scroll_offset = 10;
        state.sort_criteria = SortCriteria::GpuMemory;
        state.data_version = 42;
        state.utilization_history.push_back(60.0);

        let snapshot = RenderSnapshot::capture(&mut state);
        let restored = snapshot.as_app_state();

        assert!(restored.show_help);
        assert_eq!(restored.current_tab, 2);
        assert_eq!(restored.gpu_scroll_offset, 10);
        assert_eq!(restored.sort_criteria, SortCriteria::GpuMemory);
        assert_eq!(restored.data_version, 42);
        assert_eq!(restored.utilization_history.len(), 1);
    }

    #[test]
    fn test_snapshot_capture_preserves_topology_state() {
        use crate::ui::topology::TopologyViewMode;
        let mut state = AppState::new();
        state.topology_view_mode = TopologyViewMode::Matrix;
        state.topology_last_host_tab = Some("host2".to_string());

        let snapshot = RenderSnapshot::capture(&mut state);

        assert_eq!(snapshot.topology_view_mode, TopologyViewMode::Matrix);
        assert_eq!(
            snapshot.topology_last_host_tab.as_deref(),
            Some("host2"),
            "last_host_tab must survive the snapshot capture"
        );
    }

    #[test]
    fn test_topology_state_roundtrips_through_as_app_state() {
        use crate::ui::topology::TopologyViewMode;
        let mut state = AppState::new();
        state.topology_view_mode = TopologyViewMode::Matrix;
        state.topology_last_host_tab = Some("host3".to_string());

        let snapshot = RenderSnapshot::capture(&mut state);
        let restored = snapshot.as_app_state();

        assert_eq!(restored.topology_view_mode, TopologyViewMode::Matrix);
        assert_eq!(
            restored.topology_last_host_tab.as_deref(),
            Some("host3"),
            "topology state must survive the snapshot round-trip"
        );
    }
}