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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354
|
#include <wibble/commandline/engine.h>
#include <ostream>
using namespace std;
namespace wibble {
namespace commandline {
void Engine::addWithoutAna(Option* o)
{
const vector<char>& shorts = o->shortNames;
for (vector<char>::const_iterator i = shorts.begin(); i != shorts.end(); i++)
{
map<char, Option*>::iterator j = m_short.find(*i);
if (j != m_short.end())
throw exception::Consistency("building commandline parser",
string("short option ") + *i + " is already mapped to " + j->second->name());
m_short[*i] = o;
}
const vector<string>& longs = o->longNames;
for (vector<string>::const_iterator i = longs.begin(); i != longs.end(); i++)
{
map<string, Option*>::iterator j = m_long.find(*i);
if (j != m_long.end())
throw exception::Consistency("building commandline parser",
string("long option ") + *i + " is already mapped to " + j->second->name());
m_long[*i] = o;
}
}
void Engine::addWithoutAna(const std::vector<Option*>& o)
{
for (std::vector<Option*>::const_iterator i = o.begin();
i != o.end(); ++i)
addWithoutAna(*i);
}
void Engine::add(const std::string& alias, Engine* o)
{
map<string, Engine*>::iterator a = m_aliases.find(alias);
if (a != m_aliases.end())
throw exception::Consistency("command " + alias + " has already been set to " + a->second->name());
m_aliases[alias] = o;
}
void Engine::rebuild()
{
// Clear the engine tables
m_short.clear();
m_long.clear();
// Add the options from the groups
for (std::vector<OptionGroup*>::const_iterator i = m_groups.begin();
i != m_groups.end(); ++i)
addWithoutAna((*i)->options);
// Add the stray options
addWithoutAna(m_options);
// Add the commands
m_aliases.clear();
for (vector<Engine*>::const_iterator i = m_commands.begin();
i != m_commands.end(); ++i)
{
add((*i)->primaryAlias, *i);
for (vector<string>::const_iterator j = (*i)->aliases.begin();
j != (*i)->aliases.end(); ++j)
add(*j, *i);
}
}
std::pair<ArgList::iterator, bool> Engine::parseFirstIfKnown(ArgList& list, ArgList::iterator begin)
{
std::string& opt = *begin;
if (opt[1] != '-')
{
// Short option
char c = opt[1];
// Loopup the option engine
map<char, Option*>::const_iterator engine = m_short.find(c);
if (engine == m_short.end())
return make_pair(begin, false);
// Parse the arguments, if any
ArgList::iterator next = begin; ++next;
engine->second->parse(list, next);
// Dispose of the parsed argument
if (opt[2] == 0)
{
// Remove what's left of the switch cluster as well
list.eraseAndAdvance(begin);
} else {
// Else only remove the character from the switch
opt.erase(opt.begin() + 1);
}
} else {
// Long option
// Split option and argument from "--foo=bar"
size_t sep = opt.find('=');
string name, arg;
if (sep == string::npos)
{
// No argument
name = opt.substr(2);
} else {
name = opt.substr(2, sep - 2);
arg = opt.substr(sep + 1);
}
map<string, Option*>::const_iterator engine = m_long.find(name);
if (engine == m_long.end())
return make_pair(begin, false);
engine->second->parse(arg);
// Remove the parsed element
list.eraseAndAdvance(begin);
}
return make_pair(begin, true);
}
ArgList::iterator Engine::parseKnownSwitches(ArgList& list, ArgList::iterator begin)
{
// Parse the first items, until it works
while (1)
{
if (begin == list.end())
return begin;
if (!list.isSwitch(begin))
break;
pair<ArgList::iterator, bool> res = parseFirstIfKnown(list, begin);
if (!res.second)
break;
begin = res.first;
}
// Parse the next items
for (ArgList::iterator cur = begin; cur != list.end(); )
{
// Skip non-switches
if (!list.isSwitch(cur))
{
++cur;
continue;
}
pair<ArgList::iterator, bool> res = parseFirstIfKnown(list, cur);
if (!res.second)
// If the switch is not handled, move past it
++cur;
else
cur = res.first;
}
return begin;
}
Option* Engine::add(Option* o)
{
m_options.push_back(o);
return o;
}
OptionGroup* Engine::add(OptionGroup* group)
{
m_groups.push_back(group);
return group;
}
Engine* Engine::add(Engine* o)
{
m_commands.push_back(o);
return o;
}
#if 0
ArgList::iterator OptionEngine::parseConsecutiveSwitches(ArgList& list, ArgList::iterator begin)
{
while (begin != list.end() && list.isSwitch(*begin))
{
pair<ArgList::iterator, bool> res = parseFirstIfKnown(list, begin);
if (!res.second)
{
if ((*begin)[1] != '-')
throw exception::BadOption(string("unknown short option ") + *begin);
else
throw exception::BadOption(string("unknown long option ") + *begin);
}
begin = res.first;
}
return begin;
}
#endif
#if 0
ArgList::iterator Engine::parse(ArgList& list, ArgList::iterator begin)
{
rebuild();
bool foundNonSwitches = false;
ArgList::iterator firstNonSwitch;
while (begin != list.end())
{
// Parse a row of switches
begin = parseConsecutiveSwitches(list, begin);
// End of switches?
if (begin == list.end())
break;
// If the end is the "--" marker, take it out of the list as well
if (*begin == "--")
{
list.eraseAndAdvance(begin);
break;
}
if (!foundNonSwitches)
{
// Mark the start of non-switches if we haven't done it already
firstNonSwitch = begin;
foundNonSwitches = true;
}
// Skip past the non switches
while (begin != list.end() && !list.isSwitch(begin))
++begin;
}
return foundNonSwitches ? firstNonSwitch : begin;
}
#endif
ArgList::iterator Engine::parse(ArgList& list, ArgList::iterator begin)
{
rebuild();
// Parse and remove known switches
begin = parseKnownSwitches(list, begin);
m_found_command = 0;
// Check if we have to handle commands
if (!m_commands.empty())
{
// Look for the first non-switch in the list
ArgList::iterator cmd = begin;
while (cmd != list.end() && list.isSwitch(cmd))
++cmd;
if (cmd != list.end())
{
// A command has been found, ensure that we can handle it
map<string, Engine*>::iterator a = m_aliases.find(*cmd);
if (a == m_aliases.end())
throw exception::BadOption("unknown command " + *cmd);
// Remove the command from the list
if (cmd == begin)
++begin;
list.erase(cmd);
// We found a valid command, let's enable subcommand parsing
m_found_command = a->second;
}
}
if (!m_found_command)
{
// If we don't have any more subcommands to parse, then ensure that
// there are no switches left to process
for (ArgList::iterator i = begin; i != list.end(); ++i)
{
if (*i == "--")
{
// Remove '--' and stop looking for switches
if (begin == i)
{
begin++;
list.erase(i);
}
break;
}
if (list.isSwitch(i))
throw exception::BadOption(string("unknown option ") + *i);
}
m_found_command = 0;
return begin;
} else {
// Else, invoke the subcommand engine on the list
return m_found_command->parse(list, begin);
}
}
void Engine::dump(std::ostream& out, const std::string& pfx)
{
rebuild();
out << pfx << "Engine " << name() << ": " << endl;
if (!m_commands.empty())
{
out << pfx << " " << m_commands.size() << " commands:" << endl;
for (std::vector<Engine*>::const_iterator i = m_commands.begin();
i != m_commands.end(); ++i)
(*i)->dump(out, pfx + " ");
}
if (!m_aliases.empty())
{
out << pfx << " Command parse table:" << endl;
for (std::map<std::string, Engine*>::const_iterator i = m_aliases.begin();
i != m_aliases.end(); ++i)
out << pfx << " " << i->first << " -> " << i->second->name() << endl;
}
if (!m_groups.empty())
{
out << pfx << " " << m_groups.size() << " OptionGroups:" << endl;
for (std::vector<OptionGroup*>::const_iterator i = m_groups.begin();
i != m_groups.end(); ++i)
out << pfx << " " << (*i)->description << endl;
}
if (!m_options.empty())
{
out << pfx << " " << m_options.size() << " Options:" << endl;
for (std::vector<Option*>::const_iterator i = m_options.begin();
i != m_options.end(); ++i)
out << pfx << " " << (*i)->fullUsage() << endl;
}
if (!m_short.empty())
{
out << pfx << " Short options parse table:" << endl;
for (std::map<char, Option*>::const_iterator i = m_short.begin();
i != m_short.end(); ++i)
out << pfx << " " << i->first << " -> " << i->second->fullUsage() << endl;
}
if (!m_long.empty())
{
out << pfx << " Long options parse table:" << endl;
for (std::map<std::string, Option*>::const_iterator i = m_long.begin();
i != m_long.end(); ++i)
out << pfx << " " << i->first << " -> " << i->second->fullUsage() << endl;
}
}
}
}
// vim:set ts=4 sw=4:
|