1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
|
/*
** Copyright (c) 2018 Valve Corporation
** Copyright (c) 2018 LunarG, Inc.
**
** Permission is hereby granted, free of charge, to any person obtaining a
** copy of this software and associated documentation files (the "Software"),
** to deal in the Software without restriction, including without limitation
** the rights to use, copy, modify, merge, publish, distribute, sublicense,
** and/or sell copies of the Software, and to permit persons to whom the
** Software is furnished to do so, subject to the following conditions:
**
** The above copyright notice and this permission notice shall be included in
** all copies or substantial portions of the Software.
**
** THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
** IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
** FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
** AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
** LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
** FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
** DEALINGS IN THE SOFTWARE.
*/
#ifndef GFXRECON_UTIL_ARGUMENT_PARSER_H
#define GFXRECON_UTIL_ARGUMENT_PARSER_H
#include "util/defines.h"
#include <string>
#include <unordered_map>
#include <vector>
GFXRECON_BEGIN_NAMESPACE(gfxrecon)
GFXRECON_BEGIN_NAMESPACE(util)
class ArgumentParser
{
public:
// Options and arguments can be specified in the following way:
// "-c,-b|--binary" where the list is comma-delimited. If an option/argument
// can be defined using two different string values (such as "-b" and "--binary")
// they are further delimited by the pipe "|" symbol.
ArgumentParser(int32_t argc, const char** const argv, const std::string& options, const std::string& arguments);
ArgumentParser(bool first_is_exe_name, const char* args, const std::string& options, const std::string& arguments);
~ArgumentParser() {}
bool IsInvalid() const { return is_invalid_; }
const std::vector<std::string>& GetInvalidArgumentOrOptions() const { return invalid_values_present_; };
bool IsOptionSet(const std::string& option) const;
bool IsArgumentSet(const std::string& argument) const;
const std::string& GetArgumentValue(const std::string& argument) const;
size_t GetPositionalArgumentsCount() const { return positional_arguments_present_.size(); }
const std::vector<std::string>& GetPositionalArguments() const { return positional_arguments_present_; }
private:
void Init(std::vector<std::string> command_line_args, const std::string& options, const std::string& arguments);
bool is_invalid_;
std::vector<std::string> invalid_values_present_;
// For arguments and options, use a map to the index in the vector. This allows
// us to have multiple keys pointing at the same value. For example, if the keys
// "-c", "--count", "--my_count" are all for the same option, then you can set that
// option by using any one of those, and you can query that same option later by using
// any of those values, including one of the values that wasn't used to set it.
std::unordered_map<std::string, uint32_t> options_indices_;
std::vector<bool> options_present_;
std::unordered_map<std::string, uint32_t> arguments_indices_;
std::vector<bool> arguments_present_;
std::vector<std::string> argument_values_;
std::vector<std::string> positional_arguments_present_;
};
GFXRECON_END_NAMESPACE(util)
GFXRECON_END_NAMESPACE(gfxrecon)
#endif // GFXRECON_UTIL_ARGUMENT_PARSER_H
|