2021-05-28 11:58:40 +02: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 10:52:51 +02:00
|
|
|
#![allow(clippy::needless_return)]
|
|
|
|
|
2021-08-19 18:16:54 +02:00
|
|
|
use opentally::cli;
|
2021-05-28 11:58:40 +02:00
|
|
|
|
2021-08-19 18:16:54 +02:00
|
|
|
use clap::Clap;
|
2021-05-28 11:58:40 +02:00
|
|
|
|
2021-05-28 14:37:07 +02:00
|
|
|
/// Open-source election vote counting
|
2021-05-28 12:42:01 +02:00
|
|
|
#[derive(Clap)]
|
2021-06-03 13:35:25 +02:00
|
|
|
#[clap(name="OpenTally", version=opentally::VERSION)]
|
2021-05-28 12:42:01 +02:00
|
|
|
struct Opts {
|
|
|
|
#[clap(subcommand)]
|
|
|
|
command: Command,
|
|
|
|
}
|
|
|
|
|
2021-10-27 10:52:51 +02:00
|
|
|
#[allow(clippy::large_enum_variant)]
|
2021-05-28 12:42:01 +02:00
|
|
|
#[derive(Clap)]
|
|
|
|
enum Command {
|
2021-08-19 18:16:54 +02:00
|
|
|
Convert(cli::convert::SubcmdOptions),
|
2021-10-27 10:52:51 +02:00
|
|
|
Stv(cli::stv::SubcmdOptions),
|
2021-05-28 12:42:01 +02:00
|
|
|
}
|
2021-05-28 11:58:40 +02:00
|
|
|
|
|
|
|
fn main() {
|
2021-07-31 07:24:23 +02:00
|
|
|
match main_() {
|
|
|
|
Ok(_) => {}
|
|
|
|
Err(code) => {
|
|
|
|
std::process::exit(code);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main_() -> Result<(), i32> {
|
2021-05-28 12:42:01 +02:00
|
|
|
// Read arguments
|
|
|
|
let opts: Opts = Opts::parse();
|
2021-06-11 13:23:08 +02:00
|
|
|
|
2021-08-19 18:16:54 +02:00
|
|
|
return match opts.command {
|
|
|
|
Command::Convert(cmd_opts) => cli::convert::main(cmd_opts),
|
2021-10-27 10:52:51 +02:00
|
|
|
Command::Stv(cmd_opts) => cli::stv::main(cmd_opts),
|
2021-05-28 19:01:07 +02:00
|
|
|
};
|
|
|
|
}
|