aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: 9a4ae2b1b01f72147c7b70326fcad4481d55ddd9 (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
use anyhow::Context;
use log::{debug, info, warn, error};
use std::sync::{Arc, Mutex};
use tokio::sync::mpsc;
use sqlx::{Connection, SqliteConnection};
use radio::{RadioManager, MAX_PACKET_LEN};

mod radio;
mod config;
mod ui;

struct AppState {
    conf : config::Config,
    db : Mutex<SqliteConnection>
}

type SharedState = Arc<Mutex<AppState>>;

#[tokio::main]
async fn main() -> std::io::Result<()> {
    simple_logger::SimpleLogger::new().env().init().unwrap();

    let mut conn = SqliteConnection::connect("sqlite:cats-radio-node.db").await.unwrap();
    sqlx::migrate!()
        .run(&mut conn)
        .await
        .expect("could not run SQLx migrations");

    let conf = config::Config::load().expect("Could not load config");

    if conf.freq == 0 {
        warn!("Frequency {0} is zero, disabling radio", conf.freq);
    }
    else if !(430000..=436380).contains(&conf.freq) {
        error!("Frequency {} kHz out of range (430MHz - 436.375MHz), skipping radio setup", conf.freq);
    }
    else {
        info!("Setting up radio");
        let (packet_tx, mut packet_receive) = mpsc::channel(16);
        let (packet_send, packet_rx) = mpsc::channel(16);
        let mut radio = RadioManager::new(packet_tx, packet_rx).expect("Could not initialize radio");

        let channel = ((conf.freq - 430000) / 25) as u8;
        radio.set_channel(channel);
        let actual_freq = 430000 + 25 * channel as u32;
        info!("Setting up radio on {actual_freq} kHz...");

        tokio::task::spawn(async move {
            loop {
                if let Err(e) = radio.process_forever().await {
                    error!("Radio error: {e}")
                }
            }
        });

        tokio::task::spawn(async move {
            loop {
                match packet_receive
                    .recv()
                    .await
                    .context("Packet receive channel died") {
                        Ok((packet, rssi)) => {
                            debug!("RX RSSI {} len {}", rssi, packet.len());
                            let mut buf = [0; MAX_PACKET_LEN];
                            match ham_cats::packet::Packet::fully_decode(&packet, &mut buf) {
                                Ok(packet) => {
                                    if let Some(ident) = packet.identification() {
                                        debug!(" From {}-{}", ident.callsign, ident.ssid);
                                    }
                                    // TODO save to db
                                }
                                Err(e) => {
                                    warn!("Failed to decode packet: {}", e);
                                }
                            }
                        },
                        Err(e) => warn!("Failed to decode packet: {}", e),
                    }
            }
        });
    }

    let shared_state = Arc::new(Mutex::new(AppState {
        conf,
        db: Mutex::new(conn)
    }));

    let port = 3000;
    info!("Setting up listener on port {port}");
    ui::serve(port, shared_state).await;
    Ok(())
}