From f9a3451281237d8c9634c08d17a57fb88c7d285c Mon Sep 17 00:00:00 2001 From: Ollo Date: Fri, 4 Apr 2025 21:33:15 +0200 Subject: [PATCH] Lazy init started --- client/bin/Cargo.toml | 1 + client/bin/src/main.rs | 58 ++++++++++++++++++++++++++++++++++-------- 2 files changed, 49 insertions(+), 10 deletions(-) diff --git a/client/bin/Cargo.toml b/client/bin/Cargo.toml index 3c05fef..bf4e525 100644 --- a/client/bin/Cargo.toml +++ b/client/bin/Cargo.toml @@ -25,3 +25,4 @@ ping = "0.4.1" paho-mqtt = "0.12.3" # Ini File parser rust-ini = "0.21" +lazy_static = "1.4" diff --git a/client/bin/src/main.rs b/client/bin/src/main.rs index b9e4955..2d9f96a 100644 --- a/client/bin/src/main.rs +++ b/client/bin/src/main.rs @@ -29,6 +29,7 @@ use ini::Ini; // This declaration will look for a file named `straba.rs` and will // insert its contents inside a module named `straba` under this scope mod straba; +use lazy_static::lazy_static; const IMAGE_SIZE_BYTE: usize = (IMAGE_WIDTH_BYTE * IMAGE_HEIGHT) as usize; /* one byte contains 8 LEDs, one in each bit */ const IMAGE_WIDTH: u32 = 5 * 32; @@ -297,11 +298,46 @@ type UserTopics = RwLock>; ///////////////////////////////////////////////////////////////////////////// +// Define a struct to hold the INI configuration +#[derive(Debug)] +struct Config { + mqttPrefix: String, + mqttIPAddress: String, +} + + +// Function to read the INI file +fn read_ini_file(filename: &str) -> Result { + + let mut config = Config { mqttPrefix: "room/ledboard".to_string(), + mqttIPAddress: String::new() }; + let i = Ini::load_from_file(filename).unwrap(); + for (sec, prop) in i.iter() { + + for (k, v) in prop.iter() + { + println!("{:?} {}:{}", sec, k, v); + if (sec.is_some()) && (sec.unwrap() == "mqtt") + { + if k == "path" + { + config.mqttPrefix = v.trim().to_string(); + } + else if k == "server" + { + config.mqttIPAddress = v.trim().to_string(); + } + } + } + } + Ok(config) +} + // Callback for a successful connection to the broker. // We subscribe to the topic(s) we want here. fn mqtt_on_connect_success(cli: &paho_mqtt::AsyncClient, _msgid: u16) { println!("MQTT | Connection succeeded"); - + // Subscribe to the desired topic(s). cli.subscribe("room/ledboard", paho_mqtt::QOS_0); } @@ -401,18 +437,19 @@ struct Message { string: Option } -fn main_function(ipaddress: String, mqtt: Option, config: Option) -> ExitCode { +fn main_function(ipaddress: String, mqtt: Option, inifile: Option) -> ExitCode { // Read configuration file - if ( (config.is_some()) && (mqtt.is_some()) && (ipaddress == "--mode") ) + if (inifile.is_some()) && (mqtt.is_some()) && (ipaddress == "--mode") { - let i = Ini::load_from_file(config.clone().unwrap()).unwrap(); - for (sec, prop) in i.iter() { - println!("Section: {:?}", sec); - for (k, v) in prop.iter() { - println!("{}:{}", k, v); - } + // Lazy static to load the config file content + lazy_static! { + static ref CONFIG: Config = { + let filenameConfig: String = inifile.clone().unwrap(); + read_ini_file(filenameConfig).expect("Failed to load config file") + }; } + // FIXME stop here return ExitCode::SUCCESS; @@ -473,7 +510,8 @@ fn main_function(ipaddress: String, mqtt: Option, config: Option }); // Define the set of options for the connection - let lwt = paho_mqtt::Message::new("room/ledboard/lwt", "lost connection", 1); + + let lwt = paho_mqtt::Message::new(&format!("{}/lwt", CONFIG.mqttPrefix), "lost connection", 1); // The connect options. Defaults to an MQTT v3.x connection. let conn_opts = paho_mqtt::ConnectOptionsBuilder::new()