panorama/src/main.rs

83 lines
1.9 KiB
Rust
Raw Normal View History

2021-02-12 08:12:43 +00:00
#[macro_use]
2021-02-12 12:32:17 +00:00
extern crate anyhow;
#[macro_use]
2021-02-12 08:12:43 +00:00
extern crate crossterm;
2021-02-12 12:32:17 +00:00
#[macro_use]
extern crate log;
#[macro_use]
extern crate serde;
2021-02-12 08:12:43 +00:00
mod config;
2021-02-12 12:32:17 +00:00
mod mail;
2021-02-12 08:12:43 +00:00
mod ui;
use std::fs::File;
use std::io::Read;
use std::path::PathBuf;
2021-02-12 08:12:43 +00:00
use anyhow::Result;
2021-02-12 12:32:17 +00:00
use futures::future::TryFutureExt;
use structopt::StructOpt;
use tokio::sync::{mpsc, oneshot};
use crate::config::Config;
2021-02-12 08:12:43 +00:00
2021-02-12 08:54:19 +00:00
type ExitSender = oneshot::Sender<()>;
2021-02-12 08:12:43 +00:00
#[derive(Debug, StructOpt)]
2021-02-12 13:52:46 +00:00
#[structopt(author, about)]
struct Opt {
/// The path to the log file. By default, does not log.
#[structopt(long = "log-file")]
log_file: Option<PathBuf>,
}
2021-02-12 08:54:19 +00:00
#[tokio::main]
async fn main() -> Result<()> {
let opt = Opt::from_args();
setup_logger(&opt)?;
2021-02-12 08:12:43 +00:00
let config: Config = {
let mut config_file = File::open("config.toml")?;
let mut contents = Vec::new();
config_file.read_to_end(&mut contents)?;
toml::from_slice(&contents)?
};
2021-02-12 08:54:19 +00:00
let (exit_tx, exit_rx) = oneshot::channel::<()>();
let (mail_tx, mail_rx) = mpsc::unbounded_channel();
2021-02-12 08:12:43 +00:00
tokio::spawn(mail::run_mail(config.clone(), mail_rx).unwrap_or_else(report_err));
2021-02-12 13:21:00 +00:00
let mut stdout = std::io::stdout();
2021-02-12 12:32:17 +00:00
tokio::spawn(ui::run_ui(stdout, exit_tx).unwrap_or_else(report_err));
2021-02-12 08:12:43 +00:00
2021-02-12 08:54:19 +00:00
exit_rx.await?;
2021-02-12 08:12:43 +00:00
Ok(())
}
2021-02-12 12:32:17 +00:00
fn report_err(err: anyhow::Error) {
error!("error: {:?}", err);
}
fn setup_logger(opt: &Opt) -> Result<()> {
let mut fern = fern::Dispatch::new()
2021-02-12 12:32:17 +00:00
.format(|out, message, record| {
out.finish(format_args!(
"{}[{}][{}] {}",
chrono::Local::now().format("[%Y-%m-%d][%H:%M:%S]"),
record.target(),
record.level(),
message
))
})
.level(log::LevelFilter::Debug);
if let Some(path) = &opt.log_file {
fern = fern.chain(fern::log_file(path)?);
}
fern.apply()?;
2021-02-12 12:32:17 +00:00
Ok(())
}