use std::{env, process}; use kitchentimer::{Config, AlarmRoster, run}; fn main() { let args = env::args(); let mut alarm_roster = AlarmRoster::new(); // Parse command line arguments into config and alarm roster. let config = Config::new(args, &mut alarm_roster) .unwrap_or_else(|e| { eprintln!("{}", e); process::exit(1); }); // Read alarm times from stdin if stdin is not a tty. let stdin = std::io::stdin(); if !termion::is_tty(&stdin) { stdin.lock(); if let Err(e) = alarm_roster.from_stdin(stdin) { eprintln!("Error while reading alarm times from stdin. ({})", e); process::exit(1); } } // Run main loop. Returns spawned child process if any. let child = match run(config, alarm_roster) { Ok(child) => child, Err(error) => { eprintln!("Main loop exited with error: {}", error); process::exit(1); }, }; // Wait for remaining spawned process to exit. if let Some(mut child) = child { eprint!("Waiting for spawned process (PID {}) to finish ...", child.id()); match child.wait() { Ok(status) if status.success() => eprintln!(" ok"), // Unix only. Ok(status) if status.code().is_none() => eprintln!(" interrupted ({})", status), Ok(status) => eprintln!(" ok ({})", status), Err(error) => eprintln!(" failed ({})", error), } } }