From a62a6f8b9afbae4e2f86c089561aea0fb6bb666f Mon Sep 17 00:00:00 2001 From: candifloss Date: Tue, 17 Sep 2024 12:17:05 +0530 Subject: [PATCH] comments --- src/main.rs | 4 ++-- src/notification.rs | 26 +++++++++++++++----------- 2 files changed, 17 insertions(+), 13 deletions(-) diff --git a/src/main.rs b/src/main.rs index 4eaa96e..948c60d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,7 +7,7 @@ use zbus::{Connection, Result}; const SERVER_NAME: &str = "SNot"; const VENDOR: &str = "candifloss.cc"; const VERSION: &str = "0.1.0"; -const SPEC_VERSION: &str = "0.1.0"; +const SPEC_VERSION: &str = "1.0"; #[tokio::main] async fn main() -> Result<()> { @@ -27,7 +27,7 @@ async fn main() -> Result<()> { // Respond with server information let response = (SERVER_NAME, VENDOR, VERSION, SPEC_VERSION); // (name, vendor, version, spec_version) connection.reply(&msg, &response).await?; - println!("Request received: {member}\n\tName: {SERVER_NAME}\n\tVendor: {VENDOR}\n\tVersion: {VERSION}\n\tSpec_version: {SPEC_VERSION}"); + println!("Request received: {member}\n\tName: {SERVER_NAME},\tVendor: {VENDOR},\tVersion: {VERSION},\tSpec_version: {SPEC_VERSION}"); } "GetCapabilities" => { // Respond with supported capabilities diff --git a/src/notification.rs b/src/notification.rs index 02102b3..f7b5640 100644 --- a/src/notification.rs +++ b/src/notification.rs @@ -3,18 +3,20 @@ use zbus::{message::Body, Result}; use zvariant::OwnedValue; pub struct Notification { - app_name: String, - replace_id: u32, - icon: String, - summary: String, - body: String, - actions: Vec, - hints: HashMap, - expir_timeout: i32, + // A notificaion object + app_name: String, // The application that sent the notification + replace_id: u32, // (Optional) ID of an existing notification to be updated, replaced by this + icon: String, // See icon specifications: https://specifications.freedesktop.org/notification-spec/latest/icons-and-images.html + summary: String, // Notification title + body: String, // Notification content/body + actions: Vec, // Action requests that can be sent back to the client - + hints: HashMap, // Extra useful data - notif type, urgency, sound file, icon data, etc. + expir_timeout: i32, // Seconds till this notif expires. Optional } impl Notification { pub fn urgency(&self) -> String { + // Obtain urgency match self.hints.get("urgency") { Some(value) => { // Attempt to convert OwnedValue to u8 @@ -22,18 +24,20 @@ impl Notification { Ok(0) => "Low".to_string(), Ok(1) => "Normal".to_string(), Ok(2) => "Critical".to_string(), - _ => "Unknown".to_string(), + _ => "Other".to_string(), // There are no accepted values other that these 3 } } - None => "Unknown".to_string(), + None => "Unknown".to_string(), // This possibly never occurs, or something might be wrong } } } pub fn to_notif(msg_body: &Body) -> Result { + // Convert the DBus message body into Notification let (app_name, replace_id, icon, summary, body, actions, hints, expir_timeout) = - msg_body.deserialize()?; + msg_body.deserialize()?; // Deserialized into a tuple Ok(Notification { + // Make a Notification object from the obtained tuple app_name, replace_id, icon,