errors.hpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416
  1. // Copyright Vladimir Prus 2002-2004.
  2. // Distributed under the Boost Software License, Version 1.0.
  3. // (See accompanying file LICENSE_1_0.txt
  4. // or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_ERRORS_VP_2003_01_02
  6. #define BOOST_ERRORS_VP_2003_01_02
  7. #include <boost/program_options/config.hpp>
  8. #include <string>
  9. #include <stdexcept>
  10. #include <vector>
  11. #include <map>
  12. #if defined(BOOST_MSVC)
  13. # pragma warning (push)
  14. # pragma warning (disable:4275) // non dll-interface class 'std::logic_error' used as base for dll-interface class 'boost::program_options::error'
  15. # pragma warning (disable:4251) // class 'std::vector<_Ty>' needs to have dll-interface to be used by clients of class 'boost::program_options::ambiguous_option'
  16. #endif
  17. namespace boost { namespace program_options {
  18. inline std::string strip_prefixes(const std::string& text)
  19. {
  20. // "--foo-bar" -> "foo-bar"
  21. return text.substr(text.find_first_not_of("-/"));
  22. }
  23. /** Base class for all errors in the library. */
  24. class BOOST_PROGRAM_OPTIONS_DECL error : public std::logic_error {
  25. public:
  26. error(const std::string& xwhat) : std::logic_error(xwhat) {}
  27. };
  28. /** Class thrown when there are too many positional options.
  29. This is a programming error.
  30. */
  31. class BOOST_PROGRAM_OPTIONS_DECL too_many_positional_options_error : public error {
  32. public:
  33. too_many_positional_options_error()
  34. : error("too many positional options have been specified on the command line")
  35. {}
  36. };
  37. /** Class thrown when there are programming error related to style */
  38. class BOOST_PROGRAM_OPTIONS_DECL invalid_command_line_style : public error {
  39. public:
  40. invalid_command_line_style(const std::string& msg)
  41. : error(msg)
  42. {}
  43. };
  44. /** Class thrown if config file can not be read */
  45. class BOOST_PROGRAM_OPTIONS_DECL reading_file : public error {
  46. public:
  47. reading_file(const char* filename)
  48. : error(std::string("can not read options configuration file '").append(filename).append("'"))
  49. {}
  50. };
  51. /** Base class for most exceptions in the library.
  52. *
  53. * Substitutes the values for the parameter name
  54. * placeholders in the template to create the human
  55. * readable error message
  56. *
  57. * Placeholders are surrounded by % signs: %example%
  58. * Poor man's version of boost::format
  59. *
  60. * If a parameter name is absent, perform default substitutions
  61. * instead so ugly placeholders are never left in-place.
  62. *
  63. * Options are displayed in "canonical" form
  64. * This is the most unambiguous form of the
  65. * *parsed* option name and would correspond to
  66. * option_description::format_name()
  67. * i.e. what is shown by print_usage()
  68. *
  69. * The "canonical" form depends on whether the option is
  70. * specified in short or long form, using dashes or slashes
  71. * or without a prefix (from a configuration file)
  72. *
  73. * */
  74. class BOOST_PROGRAM_OPTIONS_DECL error_with_option_name : public error {
  75. protected:
  76. /** can be
  77. * 0 = no prefix (config file options)
  78. * allow_long
  79. * allow_dash_for_short
  80. * allow_slash_for_short
  81. * allow_long_disguise */
  82. int m_option_style;
  83. /** substitutions
  84. * from placeholders to values */
  85. std::map<std::string, std::string> m_substitutions;
  86. typedef std::pair<std::string, std::string> string_pair;
  87. std::map<std::string, string_pair > m_substitution_defaults;
  88. public:
  89. /** template with placeholders */
  90. std::string m_error_template;
  91. error_with_option_name(const std::string& template_,
  92. const std::string& option_name = "",
  93. const std::string& original_token = "",
  94. int option_style = 0);
  95. /** gcc says that throw specification on dtor is loosened
  96. * without this line
  97. * */
  98. ~error_with_option_name() throw() {}
  99. //void dump() const
  100. //{
  101. // std::cerr << "m_substitution_defaults:\n";
  102. // for (std::map<std::string, string_pair>::const_iterator iter = m_substitution_defaults.begin();
  103. // iter != m_substitution_defaults.end(); ++iter)
  104. // std::cerr << "\t" << iter->first << ":" << iter->second.first << "=" << iter->second.second << "\n";
  105. // std::cerr << "m_substitutions:\n";
  106. // for (std::map<std::string, std::string>::const_iterator iter = m_substitutions.begin();
  107. // iter != m_substitutions.end(); ++iter)
  108. // std::cerr << "\t" << iter->first << "=" << iter->second << "\n";
  109. // std::cerr << "m_error_template:\n";
  110. // std::cerr << "\t" << m_error_template << "\n";
  111. // std::cerr << "canonical_option_prefix:[" << get_canonical_option_prefix() << "]\n";
  112. // std::cerr << "canonical_option_name:[" << get_canonical_option_name() <<"]\n";
  113. // std::cerr << "what:[" << what() << "]\n";
  114. //}
  115. /** Substitute
  116. * parameter_name->value to create the error message from
  117. * the error template */
  118. void set_substitute(const std::string& parameter_name, const std::string& value)
  119. { m_substitutions[parameter_name] = value; }
  120. /** If the parameter is missing, then make the
  121. * from->to substitution instead */
  122. void set_substitute_default(const std::string& parameter_name,
  123. const std::string& from,
  124. const std::string& to)
  125. {
  126. m_substitution_defaults[parameter_name] = std::make_pair(from, to);
  127. }
  128. /** Add context to an exception */
  129. void add_context(const std::string& option_name,
  130. const std::string& original_token,
  131. int option_style)
  132. {
  133. set_option_name(option_name);
  134. set_original_token(original_token);
  135. set_prefix(option_style);
  136. }
  137. void set_prefix(int option_style)
  138. { m_option_style = option_style;}
  139. /** Overridden in error_with_no_option_name */
  140. virtual void set_option_name(const std::string& option_name)
  141. { set_substitute("option", option_name);}
  142. std::string get_option_name() const throw()
  143. { return get_canonical_option_name(); }
  144. void set_original_token(const std::string& original_token)
  145. { set_substitute("original_token", original_token);}
  146. /** Creates the error_message on the fly
  147. * Currently a thin wrapper for substitute_placeholders() */
  148. virtual const char* what() const throw();
  149. protected:
  150. /** Used to hold the error text returned by what() */
  151. mutable std::string m_message; // For on-demand formatting in 'what'
  152. /** Makes all substitutions using the template */
  153. virtual void substitute_placeholders(const std::string& error_template) const;
  154. // helper function for substitute_placeholders
  155. void replace_token(const std::string& from, const std::string& to) const;
  156. /** Construct option name in accordance with the appropriate
  157. * prefix style: i.e. long dash or short slash etc */
  158. std::string get_canonical_option_name() const;
  159. std::string get_canonical_option_prefix() const;
  160. };
  161. /** Class thrown when there are several option values, but
  162. user called a method which cannot return them all. */
  163. class BOOST_PROGRAM_OPTIONS_DECL multiple_values : public error_with_option_name {
  164. public:
  165. multiple_values()
  166. : error_with_option_name("option '%canonical_option%' only takes a single argument"){}
  167. ~multiple_values() throw() {}
  168. };
  169. /** Class thrown when there are several occurrences of an
  170. option, but user called a method which cannot return
  171. them all. */
  172. class BOOST_PROGRAM_OPTIONS_DECL multiple_occurrences : public error_with_option_name {
  173. public:
  174. multiple_occurrences()
  175. : error_with_option_name("option '%canonical_option%' cannot be specified more than once"){}
  176. ~multiple_occurrences() throw() {}
  177. };
  178. /** Class thrown when a required/mandatory option is missing */
  179. class BOOST_PROGRAM_OPTIONS_DECL required_option : public error_with_option_name {
  180. public:
  181. // option name is constructed by the option_descriptor and never on the fly
  182. required_option(const std::string& option_name)
  183. : error_with_option_name("the option '%canonical_option%' is required but missing", "", option_name)
  184. {
  185. }
  186. ~required_option() throw() {}
  187. };
  188. /** Base class of unparsable options,
  189. * when the desired option cannot be identified.
  190. *
  191. *
  192. * It makes no sense to have an option name, when we can't match an option to the
  193. * parameter
  194. *
  195. * Having this a part of the error_with_option_name hierachy makes error handling
  196. * a lot easier, even if the name indicates some sort of conceptual dissonance!
  197. *
  198. * */
  199. class BOOST_PROGRAM_OPTIONS_DECL error_with_no_option_name : public error_with_option_name {
  200. public:
  201. error_with_no_option_name(const std::string& template_,
  202. const std::string& original_token = "")
  203. : error_with_option_name(template_, "", original_token)
  204. {
  205. }
  206. /** Does NOT set option name, because no option name makes sense */
  207. virtual void set_option_name(const std::string&) {}
  208. ~error_with_no_option_name() throw() {}
  209. };
  210. /** Class thrown when option name is not recognized. */
  211. class BOOST_PROGRAM_OPTIONS_DECL unknown_option : public error_with_no_option_name {
  212. public:
  213. unknown_option(const std::string& original_token = "")
  214. : error_with_no_option_name("unrecognised option '%canonical_option%'", original_token)
  215. {
  216. }
  217. ~unknown_option() throw() {}
  218. };
  219. /** Class thrown when there's ambiguity amoung several possible options. */
  220. class BOOST_PROGRAM_OPTIONS_DECL ambiguous_option : public error_with_no_option_name {
  221. public:
  222. ambiguous_option(const std::vector<std::string>& xalternatives)
  223. : error_with_no_option_name("option '%canonical_option%' is ambiguous"),
  224. m_alternatives(xalternatives)
  225. {}
  226. ~ambiguous_option() throw() {}
  227. const std::vector<std::string>& alternatives() const throw() {return m_alternatives;}
  228. protected:
  229. /** Makes all substitutions using the template */
  230. virtual void substitute_placeholders(const std::string& error_template) const;
  231. private:
  232. // TODO: copy ctor might throw
  233. std::vector<std::string> m_alternatives;
  234. };
  235. /** Class thrown when there's syntax error either for command
  236. * line or config file options. See derived children for
  237. * concrete classes. */
  238. class BOOST_PROGRAM_OPTIONS_DECL invalid_syntax : public error_with_option_name {
  239. public:
  240. enum kind_t {
  241. long_not_allowed = 30,
  242. long_adjacent_not_allowed,
  243. short_adjacent_not_allowed,
  244. empty_adjacent_parameter,
  245. missing_parameter,
  246. extra_parameter,
  247. unrecognized_line
  248. };
  249. invalid_syntax(kind_t kind,
  250. const std::string& option_name = "",
  251. const std::string& original_token = "",
  252. int option_style = 0):
  253. error_with_option_name(get_template(kind), option_name, original_token, option_style),
  254. m_kind(kind)
  255. {
  256. }
  257. ~invalid_syntax() throw() {}
  258. kind_t kind() const {return m_kind;}
  259. /** Convenience functions for backwards compatibility */
  260. virtual std::string tokens() const {return get_option_name(); }
  261. protected:
  262. /** Used to convert kind_t to a related error text */
  263. std::string get_template(kind_t kind);
  264. kind_t m_kind;
  265. };
  266. class BOOST_PROGRAM_OPTIONS_DECL invalid_config_file_syntax : public invalid_syntax {
  267. public:
  268. invalid_config_file_syntax(const std::string& invalid_line, kind_t kind):
  269. invalid_syntax(kind)
  270. {
  271. m_substitutions["invalid_line"] = invalid_line;
  272. }
  273. ~invalid_config_file_syntax() throw() {}
  274. /** Convenience functions for backwards compatibility */
  275. virtual std::string tokens() const {return m_substitutions.find("invalid_line")->second; }
  276. };
  277. /** Class thrown when there are syntax errors in given command line */
  278. class BOOST_PROGRAM_OPTIONS_DECL invalid_command_line_syntax : public invalid_syntax {
  279. public:
  280. invalid_command_line_syntax(kind_t kind,
  281. const std::string& option_name = "",
  282. const std::string& original_token = "",
  283. int option_style = 0):
  284. invalid_syntax(kind, option_name, original_token, option_style) {}
  285. ~invalid_command_line_syntax() throw() {}
  286. };
  287. /** Class thrown when value of option is incorrect. */
  288. class BOOST_PROGRAM_OPTIONS_DECL validation_error : public error_with_option_name {
  289. public:
  290. enum kind_t {
  291. multiple_values_not_allowed = 30,
  292. at_least_one_value_required,
  293. invalid_bool_value,
  294. invalid_option_value,
  295. invalid_option
  296. };
  297. public:
  298. validation_error(kind_t kind,
  299. const std::string& option_name = "",
  300. const std::string& original_token = "",
  301. int option_style = 0):
  302. error_with_option_name(get_template(kind), option_name, original_token, option_style)
  303. {
  304. }
  305. ~validation_error() throw() {}
  306. protected:
  307. /** Used to convert kind_t to a related error text */
  308. std::string get_template(kind_t kind);
  309. kind_t m_kind;
  310. };
  311. /** Class thrown if there is an invalid option value given */
  312. class BOOST_PROGRAM_OPTIONS_DECL invalid_option_value
  313. : public validation_error
  314. {
  315. public:
  316. invalid_option_value(const std::string& value);
  317. #ifndef BOOST_NO_STD_WSTRING
  318. invalid_option_value(const std::wstring& value);
  319. #endif
  320. };
  321. /** Class thrown if there is an invalid bool value given */
  322. class BOOST_PROGRAM_OPTIONS_DECL invalid_bool_value
  323. : public validation_error
  324. {
  325. public:
  326. invalid_bool_value(const std::string& value);
  327. };
  328. }}
  329. #if defined(BOOST_MSVC)
  330. # pragma warning (pop)
  331. #endif
  332. #endif