pomc/src/main.rs

170 lines
4.5 KiB
Rust

use std::time::Duration;
use clap::{Parser, Subcommand};
use zbus::{Connection, fdo};
#[derive(Debug, Parser)]
#[clap(name = "pomc", version)]
struct Pomc {
#[clap(subcommand)]
command: Command,
}
#[derive(Debug, Subcommand)]
enum Command {
/// Start the pomodoro timer
Start,
/// Pause the pomodoro timer
Pause,
/// Stop the pomodoro timer
Stop,
/// Skip the current timer
Skip,
/// Retrieve the current iteration of the pomodoro
GetIteration,
/// Get remaining timer duration (MM:SS)
GetRemaining,
/// Get whether the timer is running
IsRunning,
/// Get whether the current timer is a break
IsOnBreak,
}
#[async_std::main]
async fn main() {
let args = Pomc::parse();
let connection = Connection::session().await.expect("Failed to open dbus connection, is dbus running?");
match match args.command {
Command::Start => start(&connection).await,
Command::Pause => pause(&connection).await,
Command::Stop => stop(&connection).await,
Command::Skip => skip(&connection).await,
Command::GetIteration => get_iteration(&connection).await,
Command::GetRemaining => get_remaining(&connection).await,
Command::IsRunning => is_running(&connection).await,
Command::IsOnBreak => is_on_break(&connection).await,
} {
Ok(()) => std::process::exit(0),
Err(e) => {
match e {
fdo::Error::ServiceUnknown(_) => eprintln!("Error: Failed to find pomd dbus interface, is pomd running?"),
_ => eprintln!("Error calling pomd command: {}", e)
}
std::process::exit(1)
}
}
}
async fn start(connection: &Connection) -> Result<(), fdo::Error> {
connection
.call_method(
Some("dev.exvacuum.pomd"),
"/dev/exvacuum/pomd",
Some("dev.exvacuum.pomd"),
"Start",
&(),
)
.await?;
Ok(())
}
async fn pause(connection: &Connection) -> Result<(), fdo::Error> {
connection
.call_method(
Some("dev.exvacuum.pomd"),
"/dev/exvacuum/pomd",
Some("dev.exvacuum.pomd"),
"Pause",
&(),
)
.await?;
Ok(())
}
async fn stop(connection: &Connection) -> Result<(), fdo::Error> {
connection
.call_method(
Some("dev.exvacuum.pomd"),
"/dev/exvacuum/pomd",
Some("dev.exvacuum.pomd"),
"Stop",
&(),
)
.await?;
Ok(())
}
async fn skip(connection: &Connection) -> Result<(), fdo::Error> {
connection
.call_method(
Some("dev.exvacuum.pomd"),
"/dev/exvacuum/pomd",
Some("dev.exvacuum.pomd"),
"Skip",
&(),
)
.await?;
Ok(())
}
async fn get_iteration(connection: &Connection) -> Result<(), fdo::Error> {
let m = connection
.call_method(
Some("dev.exvacuum.pomd"),
"/dev/exvacuum/pomd",
Some("dev.exvacuum.pomd"),
"GetIteration",
&(),
)
.await?;
let iteration: u8 = m.body().deserialize()?;
println!("{}", iteration + 1);
Ok(())
}
async fn get_remaining(connection: &Connection) -> Result<(), fdo::Error> {
let m = connection
.call_method(
Some("dev.exvacuum.pomd"),
"/dev/exvacuum/pomd",
Some("dev.exvacuum.pomd"),
"GetRemaining",
&(),
)
.await?;
let remaining: Duration = m.body().deserialize()?;
let remaining_secs = remaining.as_secs();
println!("{:02}:{:02}", remaining_secs / 60, remaining_secs % 60);
Ok(())
}
async fn is_running(connection: &Connection) -> Result<(), fdo::Error> {
let m = connection
.call_method(
Some("dev.exvacuum.pomd"),
"/dev/exvacuum/pomd",
Some("dev.exvacuum.pomd"),
"IsRunning",
&(),
)
.await?;
let is_running: bool = m.body().deserialize()?;
println!("{}", is_running as u8);
Ok(())
}
async fn is_on_break(connection: &Connection) -> Result<(), fdo::Error> {
let m = connection
.call_method(
Some("dev.exvacuum.pomd"),
"/dev/exvacuum/pomd",
Some("dev.exvacuum.pomd"),
"IsOnBreak",
&(),
)
.await?;
let is_on_break: bool = m.body().deserialize()?;
println!("{}", is_on_break as u8);
Ok(())
}