kakoune/src/parameters_parser.cc

68 lines
2.0 KiB
C++
Raw Normal View History

#include "parameters_parser.hh"
namespace Kakoune
{
String generate_switches_doc(const SwitchMap& switches)
{
String res;
for (auto& sw : switches)
res += format(" -{} {}: {}\n", sw.key,
sw.value.takes_arg ? "<arg>" : "",
sw.value.description);
return res;
}
ParametersParser::ParametersParser(ParameterList params,
const ParameterDesc& desc)
2013-02-27 20:51:44 +01:00
: m_params(params),
m_desc(desc)
{
bool only_pos = desc.flags & ParameterDesc::Flags::SwitchesAsPositional;
for (size_t i = 0; i < params.size(); ++i)
{
2014-08-26 23:10:54 +02:00
if (not only_pos and params[i] == "--")
2013-02-27 20:51:44 +01:00
only_pos = true;
else if (not only_pos and not params[i].empty() and params[i][0_byte] == '-')
{
auto it = m_desc.switches.find(params[i].substr(1_byte));
if (it == m_desc.switches.end())
throw unknown_option(params[i]);
2015-09-16 20:57:57 +02:00
if (it->value.takes_arg)
{
2013-02-27 20:51:44 +01:00
++i;
if (i == params.size() or params[i][0_byte] == '-')
2015-09-16 20:57:57 +02:00
throw missing_option_value(it->key);
}
}
else // positional
{
if (desc.flags & ParameterDesc::Flags::SwitchesOnlyAtStart)
only_pos = true;
2013-02-27 20:51:44 +01:00
m_positional_indices.push_back(i);
}
}
size_t count = m_positional_indices.size();
if (count > desc.max_positionals or count < desc.min_positionals)
throw wrong_argument_count();
}
Optional<StringView> ParametersParser::get_switch(StringView name) const
{
auto it = m_desc.switches.find(name);
kak_assert(it != m_desc.switches.end());
for (size_t i = 0; i < m_params.size(); ++i)
{
const auto& param = m_params[i];
if (param[0_byte] == '-' and param.substr(1_byte) == name)
2015-09-16 20:57:57 +02:00
return it->value.takes_arg ? m_params[i+1] : StringView{};
if (param == "--")
break;
}
return {};
}
}