2016-06-14 23:32:35 -04:00
|
|
|
#pragma once
|
|
|
|
|
2016-12-05 14:41:00 -05:00
|
|
|
#include <map>
|
|
|
|
|
2016-06-14 23:32:35 -04:00
|
|
|
#include "common.hpp"
|
2016-11-25 07:55:15 -05:00
|
|
|
#include "errors.hpp"
|
2016-12-05 14:41:00 -05:00
|
|
|
#include "utils/factory.hpp"
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
namespace command_line {
|
2016-10-10 14:22:47 -04:00
|
|
|
DEFINE_ERROR(argument_error);
|
|
|
|
DEFINE_ERROR(value_error);
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
class option;
|
|
|
|
using choices = vector<string>;
|
|
|
|
using options = vector<option>;
|
2016-12-05 14:41:00 -05:00
|
|
|
using values = std::map<string, string>;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
// class definition : option {{{
|
|
|
|
|
|
|
|
class option {
|
|
|
|
public:
|
|
|
|
string flag;
|
|
|
|
string flag_long;
|
|
|
|
string desc;
|
|
|
|
string token;
|
2016-10-24 19:55:59 -04:00
|
|
|
const choices values;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-25 02:42:31 -05:00
|
|
|
explicit option(string flag, string flag_long, string desc, string token = "", const choices c = {})
|
2016-10-25 14:14:44 -04:00
|
|
|
: flag(flag), flag_long(flag_long), desc(desc), token(token), values(c) {}
|
2016-06-14 23:32:35 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
// }}}
|
|
|
|
// class definition : parser {{{
|
|
|
|
|
|
|
|
class parser {
|
|
|
|
public:
|
2016-11-25 02:42:31 -05:00
|
|
|
explicit parser(const string& synopsis, const options& opts) : m_synopsis(synopsis), m_opts(opts) {}
|
2016-06-14 23:32:35 -04:00
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
void usage() const;
|
|
|
|
|
|
|
|
void process_input(const vector<string>& values);
|
|
|
|
|
|
|
|
bool has(const string& option) const;
|
|
|
|
string get(string opt) const;
|
2016-11-25 07:55:15 -05:00
|
|
|
bool compare(string opt, const string& val) const;
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
protected:
|
2016-11-25 07:55:15 -05:00
|
|
|
auto is_short(const string& option, const string& opt_short) const;
|
|
|
|
auto is_long(const string& option, const string& opt_long) const;
|
|
|
|
auto is(const string& option, string opt_short, string opt_long) const;
|
2016-11-02 15:22:45 -04:00
|
|
|
|
2016-11-25 07:55:15 -05:00
|
|
|
auto parse_value(string input, const string& input_next, choices values) const;
|
|
|
|
void parse(const string& input, const string& input_next = "");
|
2016-06-14 23:32:35 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
string m_synopsis;
|
|
|
|
options m_opts;
|
|
|
|
values m_optvalues;
|
|
|
|
bool m_skipnext = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
// }}}
|
|
|
|
}
|
|
|
|
|
2016-11-02 15:22:45 -04:00
|
|
|
using cliparser = command_line::parser;
|
|
|
|
using clioption = command_line::option;
|
|
|
|
using clioptions = command_line::options;
|
|
|
|
|
2016-10-24 19:55:59 -04:00
|
|
|
namespace {
|
|
|
|
/**
|
|
|
|
* Configure injection module
|
|
|
|
*/
|
2016-12-05 14:41:00 -05:00
|
|
|
inline unique_ptr<cliparser> make_command_line(string scriptname, const clioptions& opts) {
|
|
|
|
return factory_util::unique<cliparser>("Usage: " + scriptname + " bar_name [OPTION...]", opts);
|
2016-10-24 19:55:59 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-19 00:22:44 -05:00
|
|
|
POLYBAR_NS_END
|