72 lines
1.7 KiB
C++
72 lines
1.7 KiB
C++
/*
|
|
* Copyright (C) 2024 Nicolás Ortega Froysa <nicolas@ortegas.org>
|
|
* Nicolás Ortega Froysa <nicolas@ortegas.org>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <cstdlib>
|
|
#include <exception>
|
|
#include <iostream>
|
|
#include <string>
|
|
|
|
#include "arg_parse.hpp"
|
|
#include "cmd.hpp"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
enum cmd_id id;
|
|
int ret = EXIT_SUCCESS;
|
|
|
|
if(argc < 2) {
|
|
std::cerr << "Invalid number of arguments. Use 'help' sub-command." << std::endl;
|
|
print_usage();
|
|
return EXIT_FAILURE;
|
|
}
|
|
|
|
id = parse_args(argv[1]);
|
|
|
|
try {
|
|
switch(id) {
|
|
case CMD_ADD:
|
|
ret = cmd_add();
|
|
break;
|
|
case CMD_LIST:
|
|
ret = cmd_list(argc - 1, argv + 1);
|
|
break;
|
|
case CMD_DEL:
|
|
ret = cmd_delete(argc - 2, argv + 2);
|
|
break;
|
|
case CMD_INFO:
|
|
ret = cmd_info(std::stoi(argv[2]));
|
|
break;
|
|
case CMD_HELP:
|
|
print_help();
|
|
break;
|
|
case CMD_VERSION:
|
|
print_version();
|
|
break;
|
|
default:
|
|
std::cerr << "No such command '" << argv[1] << "'. Use 'help' sub-command." << std::endl;
|
|
print_usage();
|
|
ret = EXIT_FAILURE;
|
|
break;
|
|
}
|
|
} catch(const std::exception &e) {
|
|
std::cerr << e.what() << std::endl;
|
|
ret = EXIT_FAILURE;
|
|
}
|
|
|
|
return ret;
|
|
}
|