ROSE  0.11.145.0
CommandLineBoost.h
1 // WARNING: Changes to this file must be contributed back to Sawyer or else they will
2 // be clobbered by the next update from Sawyer. The Sawyer repository is at
3 // https://github.com/matzke1/sawyer.
4 
5 
6 
7 
8 #ifndef Sawyer_CommandLine_Boost_H
9 #define Sawyer_CommandLine_Boost_H
10 
11 #include <Sawyer/CommandLine.h>
12 #include <Sawyer/Sawyer.h>
13 
14 namespace Sawyer {
15 namespace CommandLine {
16 
27 namespace Boost {
28 
36 template<class T>
37 struct value {};
38 
46 
49 
51  explicit options_description(const std::string &title): sg(title) {}
52 
61  options_description& operator()(const std::string &switchName, const value<std::string>&, const std::string &doc);
62  options_description& operator()(const std::string &switchName, const value<int>&, const std::string &doc);
63  options_description& operator()(const std::string &switchName, const value<long int>&, const std::string &doc);
64  options_description& operator()(const std::string &switchName, const value<std::vector<int> >&, const std::string &doc);
65  options_description& operator()(const std::string &switchName, const value< std::vector<std::string> >&,
66  const std::string &doc);
67  options_description& operator()(const std::string &switchName, const std::string &doc);
75  return *this;
76  }
77 
85 
91  void print() const;
92 };
93 
95 std::ostream& operator<<(std::ostream &out, const options_description &x);
96 
99  int argc;
100  char **argv;
106  command_line_parser(int argc, char *argv[]): argc(argc), argv(argv) {
107  parser.errorStream(Sawyer::Message::mlog[Sawyer::Message::FATAL]); // use error messages instead of exceptions
108  }
109 
124 
129  return parser.parse(argc, argv).apply();
130  }
131 };
132 
137 struct parsed_values { // not a boost::program_options type
142 
144  explicit parsed_values(const Sawyer::CommandLine::ParsedValues &pv): pv(pv) {}
145 
149  template<class T>
150  T as() {
151  return as_helper(T());
152  }
153 
154 private:
155  template<class T>
156  T as_helper(const T&) {
157  ASSERT_forbid(pv.empty());
158  return pv.back().as<T>();
159  }
160 
161  template<class T>
162  std::vector<T> as_helper(const std::vector<T>&) {
163  std::vector<T> retval;
164  BOOST_FOREACH (const Sawyer::CommandLine::ParsedValue &v, pv) {
166  BOOST_FOREACH (const Sawyer::CommandLine::ParsedValue &elmt, elmts)
167  retval.push_back(elmt.as<T>());
168  }
169  return retval;
170  }
173 };
174 
180  size_t count(const std::string &swName) const;
181 
183  parsed_values operator[](const std::string &swName) const;
184 };
185 
187 void store(const Sawyer::CommandLine::ParserResult &results, variables_map &output);
188 
194 void notify(variables_map&);
195 
196 } // namespace
197 
198 } // namespace
199 } // namespace
200 
201 #endif
std::vector< ParsedValue > ParsedValues
A vector of parsed values.
Sawyer::CommandLine::ParsedValues pv
Wrapped ParsedValues.
T as() const
Convenient any_cast.
options_description()
Construct an empty switch group without documentation.
The result from parsing a command line.
Replacement for basic use of boost::program_options::options_description.
command_line_parser & options(const options_description &)
Insert specified switch declarations.
A collection of related switch declarations.
command_line_parser & allow_unregistered()
Add predefined switches.
std::ostream & operator<<(std::ostream &out, const options_description &x)
Print documentation for a few switches.
Facility mlog
Facility used by Sawyer components.
T as()
Convert parsed value to another type.
Messages that indicate an abnormal situation from which the program was unable to recover...
Definition: Message.h:332
void store(const Sawyer::CommandLine::ParserResult &results, variables_map &output)
Transfer parser results to map.
Name space for the entire library.
Definition: FeasiblePath.h:767
options_description & operator()(const std::string &switchName, const value< std::string > &, const std::string &doc)
Declare a switch of specified type.
command_line_parser(int argc, char *argv[])
Construct a parser.
int argc
Argument count saved by c'tor to be available during parsing.
Information about a parsed switch value.
The parser for a program command line.
options_description & add(const options_description &other)
Insert other switches into this group.
Sawyer::CommandLine::ParserResult run()
Parse command-line.
void notify(variables_map &)
Transfer map to C++ variables.
char ** argv
Arguments saved by c'tor to be available during parsing.
Sawyer::CommandLine::Parser parser
Wrapped parser.
options_description & add_options()
Boost intermediate type for adding more switches.
Sawyer::CommandLine::ParserResult pr
Wrapped ParserResult.
const ParserResult & apply() const
Saves parsed values in switch-specified locations.
std::list< ParsedValue > ValueList
Value type for list ParsedValue.
ParserResult parse(int argc, char *argv[])
Parse program arguments.
Sawyer::CommandLine::SwitchGroup sg
The underlying Sawyer mechanism.
Replacement for basic use of boost::program_options::value.
options_description(const std::string &title)
Construct an empty switch group having a title.
void print() const
Print switch documentation.
Wrapper around Sawyer's CommandLine class.
Parser & errorStream(const Message::SProxy &stream)
Specifies a message stream to which errors are sent.
Wrapper around parsed values.
parsed_values(const Sawyer::CommandLine::ParsedValues &pv)
Wrap ParsedValues.