2015-06-10 21:28:52 +10:00
|
|
|
/*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*
|
|
|
|
* Copyright 2013 Danny Robson <danny@nerdcruft.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "cmdopt.hpp"
|
|
|
|
|
|
|
|
#include "debug.hpp"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <cstring>
|
|
|
|
|
|
|
|
using util::cmdopt::option::base;
|
|
|
|
using util::cmdopt::option::bytes;
|
|
|
|
using util::cmdopt::option::count;
|
2015-06-30 22:04:54 +10:00
|
|
|
using util::cmdopt::option::null;
|
|
|
|
using util::cmdopt::option::present;
|
2015-06-10 21:28:52 +10:00
|
|
|
using util::cmdopt::option::value;
|
|
|
|
using util::cmdopt::parser;
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
base::base (std::string _name):
|
2015-06-30 22:04:54 +10:00
|
|
|
m_name (_name),
|
|
|
|
m_required (false),
|
|
|
|
m_seen (false)
|
2015-06-10 21:28:52 +10:00
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
base::~base ()
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
base::execute (void)
|
|
|
|
{
|
|
|
|
throw invalid_null (m_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
base::execute (const char *restrict)
|
|
|
|
{
|
|
|
|
throw invalid_value (m_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
base::start (void)
|
2015-06-30 22:04:54 +10:00
|
|
|
{
|
|
|
|
m_seen = false;
|
|
|
|
}
|
2015-06-10 21:28:52 +10:00
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
base::finish (void)
|
2015-06-30 22:04:54 +10:00
|
|
|
{
|
|
|
|
if (m_required && !m_seen)
|
|
|
|
throw invalid_required (m_name);
|
|
|
|
}
|
2015-06-10 21:28:52 +10:00
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
std::string
|
|
|
|
base::name (void) const
|
|
|
|
{
|
|
|
|
return m_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-30 22:04:54 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
bool
|
|
|
|
base::required (void) const
|
|
|
|
{
|
|
|
|
return m_required;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
bool
|
|
|
|
base::required (bool _required)
|
|
|
|
{
|
|
|
|
return m_required = _required;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
bool
|
|
|
|
base::seen (void) const
|
|
|
|
{
|
|
|
|
return m_seen;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
bool
|
|
|
|
base::seen (bool _seen)
|
|
|
|
{
|
|
|
|
return m_seen = _seen;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-10 21:28:52 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
2015-06-30 22:06:10 +10:00
|
|
|
null::null (std::string _name):
|
|
|
|
base (std::move (_name))
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
null::execute (void)
|
|
|
|
{
|
|
|
|
seen (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
null::execute (const char *restrict)
|
|
|
|
{
|
|
|
|
seen (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-30 22:07:02 +10:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
present::present (std::string _name, bool &_data):
|
|
|
|
base (std::move (_name)),
|
|
|
|
m_data (_data)
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
present::execute (void)
|
|
|
|
{
|
|
|
|
seen (true);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void
|
|
|
|
present::finish (void)
|
|
|
|
{
|
|
|
|
m_data = seen ();
|
|
|
|
base::finish ();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-06-30 22:06:10 +10:00
|
|
|
//-----------------------------------------------------------------------------
|
2015-06-10 21:28:52 +10:00
|
|
|
namespace util { namespace cmdopt { namespace option {
|
|
|
|
template class value<uint16_t>;
|
|
|
|
template class value<uint32_t>;
|
|
|
|
template class value<uint64_t>;
|
|
|
|
} } }
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
template <typename T>
|
2015-06-15 17:47:18 +10:00
|
|
|
count<T>::count (std::string _name, T &_data):
|
|
|
|
value<T> (std::move (_name), _data)
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
template <typename T>
|
2015-06-10 21:28:52 +10:00
|
|
|
void
|
|
|
|
count<T>::execute (void)
|
|
|
|
{
|
2015-06-15 17:47:18 +10:00
|
|
|
++this->data ();
|
2015-06-30 22:04:54 +10:00
|
|
|
this->seen (true);
|
2015-06-10 21:28:52 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
namespace util { namespace cmdopt { namespace option {
|
|
|
|
template class count<unsigned>;
|
|
|
|
} } }
|
|
|
|
|
|
|
|
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
int
|
|
|
|
parser::scan (int argc, char *const *argv)
|
|
|
|
{
|
|
|
|
CHECK_GE (argc, 0);
|
|
|
|
CHECK (argv);
|
|
|
|
|
2015-06-30 22:04:54 +10:00
|
|
|
for (auto &j: m_options)
|
|
|
|
j->start ();
|
|
|
|
|
2015-06-10 21:28:52 +10:00
|
|
|
// start iterating after our program's name
|
|
|
|
int i = 1;
|
|
|
|
while (i < argc) {
|
|
|
|
auto len = strlen (argv[i]);
|
|
|
|
|
|
|
|
// bail if there's no potential for an option
|
|
|
|
if (len < 2 || argv[i][0] != '-')
|
|
|
|
return i;
|
|
|
|
|
|
|
|
// parse longopt
|
|
|
|
auto inc = argv[i][1] == '-'
|
|
|
|
? parse_long (i, argc, argv)
|
|
|
|
: parse_short (i, argc, argv);
|
|
|
|
|
|
|
|
CHECK_GT (inc, 0);
|
|
|
|
i += inc;
|
|
|
|
}
|
|
|
|
|
2015-06-30 22:04:54 +10:00
|
|
|
for (auto &j: m_options)
|
|
|
|
j->finish ();
|
|
|
|
|
2015-06-10 21:28:52 +10:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
int
|
|
|
|
parser::parse_long (int pos, int argc, char *const *argv)
|
|
|
|
{
|
|
|
|
CHECK_LT (pos, argc);
|
|
|
|
CHECK_GE (pos, 0);
|
|
|
|
CHECK_GE (argc, 0);
|
|
|
|
CHECK (argv);
|
|
|
|
|
|
|
|
CHECK_EQ (argv[pos][0], '-');
|
|
|
|
CHECK_EQ (argv[pos][1], '-');
|
|
|
|
|
|
|
|
// break first atom into components and extract the key
|
|
|
|
const char *start = argv[pos] + 2;
|
|
|
|
const char *eq = strchr (start, '=');
|
|
|
|
const char *last = start + strlen (start);
|
|
|
|
|
|
|
|
std::string key { start, eq ? eq : last };
|
|
|
|
|
|
|
|
// find the handler
|
|
|
|
auto handle_pos = std::find_if (m_long.begin (),
|
|
|
|
m_long.end (),
|
|
|
|
[&] (auto i) { return std::get<0> (i) == key; });
|
|
|
|
if (handle_pos == m_long.end ())
|
|
|
|
throw invalid_key (key);
|
|
|
|
|
|
|
|
auto &handler = std::get<1> (*handle_pos);
|
|
|
|
|
|
|
|
// maybe grab a value from the next atom and dispatch
|
|
|
|
if (!eq) {
|
|
|
|
// check the next atom for the value
|
|
|
|
if (pos + 1 < argc)
|
|
|
|
if (argv[pos + 1][0] != '-') {
|
|
|
|
handler.execute (argv[pos+1]);
|
|
|
|
return 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
handler.execute ();
|
|
|
|
} else {
|
|
|
|
handler.execute (eq+1);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
int
|
|
|
|
parser::parse_short (int pos, int argc, char *const *argv)
|
|
|
|
{
|
|
|
|
CHECK_LT (pos, argc);
|
|
|
|
CHECK_GE (pos, 0);
|
|
|
|
CHECK_GE (argc, 0);
|
|
|
|
CHECK (argv);
|
|
|
|
|
|
|
|
CHECK_EQ (argv[pos][0], '-');
|
|
|
|
CHECK_NEQ (argv[pos][1], '-');
|
|
|
|
|
|
|
|
// we have a run of no-value keys
|
|
|
|
auto len = strlen (argv[pos]);
|
|
|
|
if (len > 2 || pos + 1 == argc || argv[pos+1][0] == '-') {
|
|
|
|
for (size_t i = 1; i < len; ++i) {
|
|
|
|
auto letter = argv[pos][i];
|
|
|
|
|
|
|
|
auto hpos = std::find_if (m_short.begin (),
|
|
|
|
m_short.end (),
|
|
|
|
[letter] (auto j) { return std::get<0> (j) == letter; });
|
|
|
|
if (hpos == m_short.end ())
|
|
|
|
throw invalid_key (std::to_string (letter));
|
|
|
|
std::get<1> (*hpos).execute ();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// we have a value following
|
|
|
|
auto letter = argv[pos][1];
|
|
|
|
auto hpos = std::find_if (m_short.begin (),
|
|
|
|
m_short.end (),
|
|
|
|
[letter] (auto i) { return std::get<0> (i) == letter; });
|
|
|
|
if (hpos == m_short.end ())
|
|
|
|
throw invalid_key (std::to_string (letter));
|
|
|
|
std::get<1> (*hpos).execute (argv[pos+1]);
|
|
|
|
|
|
|
|
return 2;
|
|
|
|
}
|