2012-12-07 14:27:10 +01:00
|
|
|
#ifndef parameters_parser_hh_INCLUDED
|
|
|
|
#define parameters_parser_hh_INCLUDED
|
|
|
|
|
|
|
|
#include "exception.hh"
|
2014-06-06 00:49:52 +02:00
|
|
|
#include "id_map.hh"
|
2013-04-09 20:05:40 +02:00
|
|
|
#include "memoryview.hh"
|
|
|
|
#include "string.hh"
|
2012-12-07 14:27:10 +01:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
using ParameterList = memoryview<String>;
|
|
|
|
|
2014-01-23 20:36:07 +01:00
|
|
|
struct parameter_error : public runtime_error
|
|
|
|
{
|
|
|
|
using runtime_error::runtime_error;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct unknown_option : public parameter_error
|
2012-12-07 14:27:10 +01:00
|
|
|
{
|
|
|
|
unknown_option(const String& name)
|
2014-01-23 20:36:07 +01:00
|
|
|
: parameter_error("unknown option '" + name + "'") {}
|
2012-12-07 14:27:10 +01:00
|
|
|
};
|
|
|
|
|
2014-01-23 20:36:07 +01:00
|
|
|
struct missing_option_value: public parameter_error
|
2012-12-07 14:27:10 +01:00
|
|
|
{
|
|
|
|
missing_option_value(const String& name)
|
2014-01-23 20:36:07 +01:00
|
|
|
: parameter_error("missing value for option '" + name + "'") {}
|
2012-12-07 14:27:10 +01:00
|
|
|
};
|
|
|
|
|
2014-01-23 20:36:07 +01:00
|
|
|
struct wrong_argument_count : public parameter_error
|
2013-03-27 14:27:12 +01:00
|
|
|
{
|
2014-01-23 20:36:07 +01:00
|
|
|
wrong_argument_count() : parameter_error("wrong argument count") {}
|
2013-03-27 14:27:12 +01:00
|
|
|
};
|
|
|
|
|
2014-02-11 23:23:44 +01:00
|
|
|
struct SwitchDesc
|
2014-02-11 23:16:17 +01:00
|
|
|
{
|
|
|
|
bool takes_arg;
|
|
|
|
String description;
|
|
|
|
};
|
|
|
|
|
2014-06-06 00:49:52 +02:00
|
|
|
using SwitchMap = id_map<SwitchDesc>;
|
2014-02-11 23:16:17 +01:00
|
|
|
|
2014-02-11 23:23:44 +01:00
|
|
|
String generate_switches_doc(const SwitchMap& opts);
|
2013-03-27 14:27:12 +01:00
|
|
|
|
2014-02-08 02:02:58 +01:00
|
|
|
struct ParameterDesc
|
2012-12-07 14:27:10 +01:00
|
|
|
{
|
2013-04-02 14:22:55 +02:00
|
|
|
enum class Flags
|
|
|
|
{
|
|
|
|
None = 0,
|
2014-02-11 23:23:44 +01:00
|
|
|
SwitchesOnlyAtStart = 1,
|
2014-03-20 20:50:42 +01:00
|
|
|
SwitchesAsPositional = 2,
|
2013-04-02 14:22:55 +02:00
|
|
|
};
|
|
|
|
friend constexpr Flags operator|(Flags lhs, Flags rhs)
|
|
|
|
{
|
|
|
|
return (Flags)((int) lhs | (int) rhs);
|
|
|
|
}
|
|
|
|
friend constexpr bool operator&(Flags lhs, Flags rhs)
|
|
|
|
{
|
|
|
|
return ((int) lhs & (int) rhs) != 0;
|
|
|
|
}
|
|
|
|
|
2014-02-08 02:02:58 +01:00
|
|
|
ParameterDesc() = default;
|
2014-02-11 23:23:44 +01:00
|
|
|
ParameterDesc(SwitchMap switches, Flags flags = Flags::None,
|
2014-02-08 02:02:58 +01:00
|
|
|
size_t min_positionals = 0, size_t max_positionals = -1)
|
2014-02-11 23:23:44 +01:00
|
|
|
: switches(std::move(switches)), flags(flags),
|
2014-02-08 02:02:58 +01:00
|
|
|
min_positionals(min_positionals), max_positionals(max_positionals) {}
|
|
|
|
|
2014-02-11 23:23:44 +01:00
|
|
|
SwitchMap switches;
|
2014-02-08 02:02:58 +01:00
|
|
|
Flags flags = Flags::None;
|
|
|
|
size_t min_positionals = 0;
|
|
|
|
size_t max_positionals = -1;
|
|
|
|
};
|
|
|
|
|
|
|
|
// ParametersParser provides tools to parse command parameters.
|
|
|
|
// There are 3 types of parameters:
|
|
|
|
// * unnamed options, which are accessed by position (ignoring named ones)
|
|
|
|
// * named boolean options, which are enabled using '-name' syntax
|
|
|
|
// * named string options, which are defined using '-name value' syntax
|
|
|
|
struct ParametersParser
|
|
|
|
{
|
2012-12-07 14:27:10 +01:00
|
|
|
// the options defines named options, if they map to true, then
|
|
|
|
// they are understood as string options, else they are understood as
|
|
|
|
// boolean option.
|
2014-02-08 02:02:58 +01:00
|
|
|
ParametersParser(ParameterList params, const ParameterDesc& desc);
|
2012-12-07 14:27:10 +01:00
|
|
|
|
|
|
|
// check if a named option (either string or boolean) is specified
|
|
|
|
bool has_option(const String& name) const;
|
|
|
|
|
|
|
|
// get a string option value, returns an empty string if the option
|
|
|
|
// is not defined
|
|
|
|
const String& option_value(const String& name) const;
|
|
|
|
|
|
|
|
// positional parameters count
|
|
|
|
size_t positional_count() const;
|
|
|
|
|
|
|
|
struct iterator
|
|
|
|
{
|
|
|
|
public:
|
2014-01-09 20:50:01 +01:00
|
|
|
using value_type = String;
|
|
|
|
using pointer = const value_type*;
|
|
|
|
using reference = const value_type&;
|
|
|
|
using difference_type = size_t;
|
|
|
|
using iterator_category = std::forward_iterator_tag;
|
2012-12-07 14:27:10 +01:00
|
|
|
|
|
|
|
iterator(const ParametersParser& parser, size_t index)
|
|
|
|
: m_parser(parser), m_index(index) {}
|
|
|
|
|
|
|
|
const String& operator*() const
|
|
|
|
{
|
2013-02-27 20:51:44 +01:00
|
|
|
return m_parser.m_params[m_parser.m_positional_indices[m_index]];
|
2012-12-07 14:27:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const String* operator->() const
|
|
|
|
{
|
2013-02-27 20:51:44 +01:00
|
|
|
return &m_parser.m_params[m_parser.m_positional_indices[m_index]];
|
2012-12-07 14:27:10 +01:00
|
|
|
}
|
|
|
|
|
2013-02-27 20:51:44 +01:00
|
|
|
iterator& operator++() { ++m_index; return *this; }
|
2012-12-07 14:27:10 +01:00
|
|
|
|
|
|
|
bool operator==(const iterator& other) const
|
|
|
|
{
|
2013-04-09 20:04:11 +02:00
|
|
|
kak_assert(&m_parser == &other.m_parser);
|
2013-02-27 20:51:44 +01:00
|
|
|
return m_index == other.m_index;
|
2012-12-07 14:27:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator!=(const iterator& other) const
|
|
|
|
{
|
2013-04-09 20:04:11 +02:00
|
|
|
kak_assert(&m_parser == &other.m_parser);
|
2013-02-27 20:51:44 +01:00
|
|
|
return m_index != other.m_index;
|
2012-12-07 14:27:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool operator<(const iterator& other) const
|
|
|
|
{
|
2013-04-09 20:04:11 +02:00
|
|
|
kak_assert(&m_parser == &other.m_parser);
|
2012-12-07 14:27:10 +01:00
|
|
|
return m_index < other.m_index;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const ParametersParser& m_parser;
|
|
|
|
size_t m_index;
|
|
|
|
};
|
|
|
|
|
|
|
|
// access positional parameter by index
|
|
|
|
const String& operator[] (size_t index) const;
|
|
|
|
// positional parameter begin
|
|
|
|
iterator begin() const;
|
|
|
|
// positional parameter end
|
|
|
|
iterator end() const;
|
|
|
|
|
|
|
|
private:
|
2014-02-08 02:02:58 +01:00
|
|
|
ParameterList m_params;
|
|
|
|
std::vector<size_t> m_positional_indices;
|
|
|
|
const ParameterDesc& m_desc;
|
2012-12-07 14:27:10 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // parameters_parser_hh_INCLUDED
|
|
|
|
|