Zealot/src/main.rs

54 lines
1.3 KiB
Rust
Raw Normal View History

use clap::{Parser, Subcommand};
use log4rs;
2022-08-31 16:14:41 -04:00
use config::Config;
use transcoder::repository::Repository;
use transcoder::transcoder::Transcoder;
2022-08-31 16:14:41 -04:00
mod cmd;
mod settings;
2022-08-31 16:14:41 -04:00
mod transcoder;
mod util;
2022-08-31 16:14:41 -04:00
#[derive(Parser)]
#[clap(author, version, about, long_about = None)]
struct Cli {
#[clap(subcommand)]
command: Option<Commands>,
}
#[derive(Subcommand)]
enum Commands {
/// displays version info about this program
Configure {},
}
2022-08-31 16:14:41 -04:00
fn main() {
// set the configuration file path depending on the OS
let mut config_path: &str = "/etc/zealot/config.toml";
if cfg!(windows) {
config_path = "C:\\Program Files\\Zealot\\config.toml";
}
// initialize the log4rs logger
log4rs::init_file("./log4rs.yaml", Default::default()).unwrap();
// initialize the clap CLI
let cli = Cli::parse();
match &cli.command {
// sub-commands will be handled here
Some(Commands::Configure {}) => cmd::core::configure_command(config_path),
// run the main program without any commands
None => {
// create and initialize our config and repository objects
let c: Config = settings::load_config();
let r: Repository = Repository::new(&shellexpand::tilde(&c.get_string("transcoder.repository").unwrap()));
2022-08-31 16:14:41 -04:00
// create and start the video transcoder object
let t: Transcoder = Transcoder::new(c, r);
t.start();
},
}
2022-08-31 16:14:41 -04:00
}