OpenTally/src/main.rs

57 lines
1.5 KiB
Rust
Raw Normal View History

2021-05-28 19:58:40 +10:00
/* OpenTally: Open-source election vote counting
* Copyright © 2021 Lee Yingtong Li (RunasSudo)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
2021-10-27 19:52:51 +11:00
#![allow(clippy::needless_return)]
use opentally::cli;
2021-05-28 19:58:40 +10:00
2022-06-18 22:36:00 +10:00
use clap::Parser;
2021-05-28 19:58:40 +10:00
2021-05-28 22:37:07 +10:00
/// Open-source election vote counting
2022-06-18 22:36:00 +10:00
#[derive(Parser)]
#[clap(name="OpenTally", version=opentally::VERSION)]
struct Opts {
#[clap(subcommand)]
command: Command,
}
2021-10-27 19:52:51 +11:00
#[allow(clippy::large_enum_variant)]
2022-06-18 22:36:00 +10:00
#[derive(Parser)]
enum Command {
Convert(cli::convert::SubcmdOptions),
2021-10-27 19:52:51 +11:00
Stv(cli::stv::SubcmdOptions),
}
2021-05-28 19:58:40 +10:00
fn main() {
2021-07-31 15:24:23 +10:00
match main_() {
Ok(_) => {}
Err(code) => {
std::process::exit(code);
}
}
}
fn main_() -> Result<(), i32> {
// Read arguments
let opts: Opts = Opts::parse();
return match opts.command {
Command::Convert(cmd_opts) => cli::convert::main(cmd_opts),
2021-10-27 19:52:51 +11:00
Command::Stv(cmd_opts) => cli::stv::main(cmd_opts),
2021-05-29 03:01:07 +10:00
};
}