blob: e67a87730826cf0345867ebae484c208126b3302 [file] [log] [blame]
#pragma once
#include <getopt.h>
#include <map>
#include <string>
namespace phosphor::certs::util
{
/**
* @brief Class - Encapsulates parsing command line options and
* populating arguments.
*/
class ArgumentParser
{
public:
ArgumentParser(int argc, char** argv);
ArgumentParser() = delete;
ArgumentParser(const ArgumentParser&) = delete;
ArgumentParser(ArgumentParser&&) = default;
ArgumentParser& operator=(const ArgumentParser&) = delete;
ArgumentParser& operator=(ArgumentParser&&) = default;
~ArgumentParser() = default;
const std::string& operator[](const std::string& opt);
static void usage(char** argv);
static const std::string true_string;
static const std::string empty_string;
private:
std::map<const std::string, std::string> arguments;
static const option options[];
static const char* optionstr;
};
} // namespace phosphor::certs::util