diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2015-08-04 04:37:12 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2015-08-04 04:37:12 +0300 |
commit | 0c593583dccd88e90450972e6a1b9e6bc67e0911 (patch) | |
tree | d38de5fb6255fec9424bf9694c1cf3fcfd8b9c39 /utils/block_cmd_parser.hpp | |
parent | test/toolkit.py: fix utility names (diff) | |
download | aes-tools-0c593583dccd88e90450972e6a1b9e6bc67e0911.tar.gz aes-tools-0c593583dccd88e90450972e6a1b9e6bc67e0911.zip |
utils: bugfix & refactoring
Diffstat (limited to 'utils/block_cmd_parser.hpp')
-rw-r--r-- | utils/block_cmd_parser.hpp | 88 |
1 files changed, 88 insertions, 0 deletions
diff --git a/utils/block_cmd_parser.hpp b/utils/block_cmd_parser.hpp new file mode 100644 index 0000000..c191154 --- /dev/null +++ b/utils/block_cmd_parser.hpp @@ -0,0 +1,88 @@ +/** + * \file + * \author Egor Tensin <Egor.Tensin@gmail.com> + * \date 2015 + * \copyright This file is licensed under the terms of the MIT License. + * See LICENSE.txt for details. + */ + +#pragma once + +#include "data_parsers.hpp" + +#include <aesnixx/all.hpp> + +#include <boost/program_options.hpp> + +#include <ostream> +#include <string> +#include <vector> + +namespace +{ + class CommandLineParser + { + public: + CommandLineParser(const char* prog_name) + : prog_name(prog_name) + , options("Options") + { + namespace po = boost::program_options; + + options.add_options() + ("help,h", "show this message and exit") + ("box,b", po::bool_switch(&use_boxes)->default_value(false), "use the \"boxes\" interface") + ("mode,m", po::value<aesni::Mode>(&mode)->required(), "set mode of operation") + ("algorithm,a", po::value<aesni::Algorithm>(&algorithm)->required(), "set algorithm") + ("verbose,v", po::bool_switch(&verbose)->default_value(false), "enable verbose output"); + } + + void parse(int argc, char** argv) + { + namespace po = boost::program_options; + + po::options_description hidden_options; + hidden_options.add_options() + ("positional", po::value<std::vector<std::string>>(&args)); + + po::options_description all_options; + all_options.add(options).add(hidden_options); + + po::positional_options_description positional_options; + positional_options.add("positional", -1); + + po::variables_map vm; + po::store(po::command_line_parser(argc, argv).options(all_options).positional(positional_options).run(), vm); + + if (vm.count("help")) + { + help_flag = true; + return; + } + + po::notify(vm); + } + + bool requested_help() const { return help_flag; } + + aesni::Mode mode; + aesni::Algorithm algorithm; + bool use_boxes; + std::vector<std::string> args; + bool verbose; + + private: + const std::string prog_name; + boost::program_options::options_description options; + + bool help_flag = false; + + friend std::ostream& operator<<(std::ostream&, const CommandLineParser&); + }; + + std::ostream& operator<<(std::ostream& os, const CommandLineParser& cmd_parser) + { + return os << "Usage: " << cmd_parser.prog_name << " [OPTIONS...] [-- KEY [IV] [BLOCK...]...]\n" + << cmd_parser.options << "\n"; + } +} |