summaryrefslogtreecommitdiffstats
path: root/examples/system_information/src/main.rs
blob: 56f934b7c06306df7fd5b70176f3269d42be8903 (plain) (blame)
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
use iced::widget::{button, center, column, text};
use iced::{system, Element, Task};

pub fn main() -> iced::Result {
    iced::application(
        "System Information - Iced",
        Example::update,
        Example::view,
    )
    .run_with(Example::new)
}

#[derive(Default)]
#[allow(clippy::large_enum_variant)]
enum Example {
    #[default]
    Loading,
    Loaded {
        information: system::Information,
    },
}

#[derive(Clone, Debug)]
#[allow(clippy::large_enum_variant)]
enum Message {
    InformationReceived(system::Information),
    Refresh,
}

impl Example {
    fn new() -> (Self, Task<Message>) {
        (
            Self::Loading,
            system::fetch_information().map(Message::InformationReceived),
        )
    }

    fn update(&mut self, message: Message) -> Task<Message> {
        match message {
            Message::Refresh => {
                let (state, refresh) = Self::new();

                *self = state;

                refresh
            }
            Message::InformationReceived(information) => {
                *self = Self::Loaded { information };

                Task::none()
            }
        }
    }

    fn view(&self) -> Element<Message> {
        use bytesize::ByteSize;

        let content: Element<_> = match self {
            Example::Loading => text("Loading...").size(40).into(),
            Example::Loaded { information } => {
                let system_name = text!(
                    "System name: {}",
                    information
                        .system_name
                        .as_ref()
                        .unwrap_or(&"unknown".to_string())
                );

                let system_kernel = text!(
                    "System kernel: {}",
                    information
                        .system_kernel
                        .as_ref()
                        .unwrap_or(&"unknown".to_string())
                );

                let system_version = text!(
                    "System version: {}",
                    information
                        .system_version
                        .as_ref()
                        .unwrap_or(&"unknown".to_string())
                );

                let system_short_version = text!(
                    "System short version: {}",
                    information
                        .system_short_version
                        .as_ref()
                        .unwrap_or(&"unknown".to_string())
                );

                let cpu_brand =
                    text!("Processor brand: {}", information.cpu_brand);

                let cpu_cores = text!(
                    "Processor cores: {}",
                    information
                        .cpu_cores
                        .map_or("unknown".to_string(), |cores| cores
                            .to_string())
                );

                let memory_readable =
                    ByteSize::b(information.memory_total).to_string_as(true);

                let memory_total = text!(
                    "Memory (total): {} bytes ({memory_readable})",
                    information.memory_total,
                );

                let memory_text =
                    if let Some(memory_used) = information.memory_used {
                        let memory_readable =
                            ByteSize::b(memory_used).to_string_as(true);

                        format!("{memory_used} bytes ({memory_readable})")
                    } else {
                        String::from("None")
                    };

                let memory_used = text!("Memory (used): {memory_text}");

                let graphics_adapter =
                    text!("Graphics adapter: {}", information.graphics_adapter);

                let graphics_backend =
                    text!("Graphics backend: {}", information.graphics_backend);

                column![
                    system_name.size(30),
                    system_kernel.size(30),
                    system_version.size(30),
                    system_short_version.size(30),
                    cpu_brand.size(30),
                    cpu_cores.size(30),
                    memory_total.size(30),
                    memory_used.size(30),
                    graphics_adapter.size(30),
                    graphics_backend.size(30),
                    button("Refresh").on_press(Message::Refresh)
                ]
                .spacing(10)
                .into()
            }
        };

        center(content).into()
    }
}