aboutsummaryrefslogtreecommitdiff
path: root/src/run.rs
blob: 12efefa830d23c56e0b216d5a95470acfa8585ad (plain)
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
use crate::config::CONFIG;
use crate::types::*;
use crate::utils::*;
use std::sync::mpsc;
use std::thread;
use std::time::Duration;

pub fn run(mut blocks: Blocks) {
    let (tx, rx) = mpsc::channel();

    // loadavrage thread
    if CONFIG.loadavg.enabled {
        let loadavg_tx = tx.clone();
        thread::spawn(move || loop {
            let loadavg_data = ThreadsData::LoadAvg(load_average::get_load_avg());
            loadavg_tx.send(loadavg_data).unwrap();
            thread::sleep(Duration::from_secs_f64(CONFIG.loadavg.delay))
        });
    }
    // public ip thread
    if CONFIG.pub_ip.enabled {
        let pub_ip_tx = tx.clone();
        thread::spawn(move || loop {
            let pub_ip_data = ThreadsData::PubIp(pub_ip::get_pub_ip());
            pub_ip_tx.send(pub_ip_data).unwrap();
            thread::sleep(Duration::from_secs_f64(CONFIG.pub_ip.delay))
        });
    }

    // spotify thread
    if CONFIG.spotify.enabled {
        let spotify_tx = tx.clone();
        thread::spawn(move || loop {
            let spotify_data = ThreadsData::Spotify(spotify::get_spotify());
            spotify_tx.send(spotify_data).unwrap();
            thread::sleep(Duration::from_secs_f64(CONFIG.spotify.delay))
        });
    }

    // mpd thread
    if CONFIG.mpd.enabled {
        let mpd_tx = tx.clone();
        thread::spawn(move || loop {
            let mpd_data = ThreadsData::Mpd(mpd::get_mpd_current());
            mpd_tx.send(mpd_data).unwrap();
            thread::sleep(Duration::from_secs_f64(CONFIG.mpd.delay))
        });
    }

    // volume thread
    if CONFIG.volume.enabled {
        let volume_tx = tx.clone();
        thread::spawn(move || loop {
            let vol_data = ThreadsData::Sound(volume::get_volume());
            volume_tx.send(vol_data).unwrap();
            thread::sleep(Duration::from_secs_f64(CONFIG.volume.delay))
        });
    }

    // net speed thread
    if CONFIG.netspeed.enabled {
        let net_tx = tx.clone();
        thread::spawn(move || loop {
            // get_netspeed will sleep inside the function
            let net_data = ThreadsData::NetSpeed(netspeed::get_netspeed());
            net_tx.send(net_data).unwrap();
        });
    }

    // Disk thread
    if CONFIG.disk.enabled {
        let disk_tx = tx.clone();
        thread::spawn(move || loop {
            let disk_data = ThreadsData::Disk(disk::get_disk());
            disk_tx.send(disk_data).unwrap();
            thread::sleep(Duration::from_secs_f64(CONFIG.disk.delay))
        });
    }

    // Memory thread
    if CONFIG.memory.enabled {
        let memory_tx = tx.clone();
        thread::spawn(move || loop {
            let memory_data = ThreadsData::Memory(memory::get_memory().unwrap());
            memory_tx.send(memory_data).unwrap();
            thread::sleep(Duration::from_secs_f64(CONFIG.memory.delay))
        });
    }

    // Weather thread
    if CONFIG.weather.enabled {
        let weather_tx = tx.clone();
        thread::spawn(move || loop {
            let weather_data = ThreadsData::Weather(weather::get_weather());
            weather_tx.send(weather_data).unwrap();
            thread::sleep(Duration::from_secs_f64(CONFIG.weather.delay))
        });
    }

    // Battery thread
    if CONFIG.battery.enabled {
        let battery_tx = tx.clone();
        thread::spawn(move || loop {
            let battery_data = ThreadsData::Battery(battery::get_battery().unwrap());
            battery_tx.send(battery_data).unwrap();
            thread::sleep(Duration::from_secs_f64(CONFIG.battery.delay))
        });
    }

    // Cpu temperature thread
    if CONFIG.cpu_temperature.enabled {
        let cpu_temp_tx = tx.clone();
        thread::spawn(move || loop {
            let cpu_temp_data = ThreadsData::CpuTemp(cpu::get_cpu_temp().unwrap());
            cpu_temp_tx.send(cpu_temp_data).unwrap();
            thread::sleep(Duration::from_secs_f64(CONFIG.cpu_temperature.delay))
        });
    }

    // Uptime thread
    if CONFIG.uptime.enabled {
        let uptime_tx = tx.clone();
        thread::spawn(move || loop {
            let uptime_data = ThreadsData::Uptime(uptime::get_uptime().unwrap());
            uptime_tx.send(uptime_data).unwrap();
            thread::sleep(Duration::from_secs_f64(CONFIG.uptime.delay))
        });
    }

    // Time thread
    {
        let time_tx = tx;
        thread::spawn(move || loop {
            let time_data = ThreadsData::Time(time::get_time());
            time_tx.send(time_data).unwrap();
            thread::sleep(Duration::from_secs_f64(CONFIG.time.delay))
        });
    }

    //Main
    {
        // NOTE: order matters to the final format

        let mut bar: Vec<String> = vec![String::from(""); 13];
        //iterating the values recieved from the threads
        for data in rx {
            match data {
                ThreadsData::Spotify(x) => bar[0] = x,
                ThreadsData::Mpd(x) => bar[1] = x,
                ThreadsData::Sound(x) => bar[2] = x,
                ThreadsData::Weather(x) => bar[3] = x,
                ThreadsData::NetSpeed(x) => bar[4] = x,
                ThreadsData::PubIp(x) => bar[5] = x,
                ThreadsData::Disk(x) => bar[6] = x,
                ThreadsData::Memory(x) => bar[7] = x,
                ThreadsData::CpuTemp(x) => bar[8] = x,
                ThreadsData::LoadAvg(x) => bar[9] = x,
                ThreadsData::Battery(x) => bar[10] = x,
                ThreadsData::Uptime(x) => bar[11] = x,
                ThreadsData::Time(x) => bar[12] = x,
            }

            // match ends here
            update(&bar, &mut blocks);
        }
    }
}

fn update(bar: &[String], blocks: &mut Blocks) {
    let mut x = String::new();
    for i in bar.iter() {
        x.push_str(i.as_str());
    }

    blocks
        .root
        .set_title(&mut blocks.disp, &x)
        .expect("Failed to set title of root");
}