value_semantic.hpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435
  1. // Copyright Vladimir Prus 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_VALUE_SEMANTIC_HPP_VP_2004_02_24
  6. #define BOOST_VALUE_SEMANTIC_HPP_VP_2004_02_24
  7. #include <boost/program_options/config.hpp>
  8. #include <boost/program_options/errors.hpp>
  9. #include <boost/any.hpp>
  10. #include <boost/function/function1.hpp>
  11. #include <boost/lexical_cast.hpp>
  12. #include <string>
  13. #include <vector>
  14. #include <typeinfo>
  15. #include <limits>
  16. namespace boost { namespace program_options {
  17. /** Class which specifies how the option's value is to be parsed
  18. and converted into C++ types.
  19. */
  20. class BOOST_PROGRAM_OPTIONS_DECL value_semantic {
  21. public:
  22. /** Returns the name of the option. The name is only meaningful
  23. for automatic help message.
  24. */
  25. virtual std::string name() const = 0;
  26. /** The minimum number of tokens for this option that
  27. should be present on the command line. */
  28. virtual unsigned min_tokens() const = 0;
  29. /** The maximum number of tokens for this option that
  30. should be present on the command line. */
  31. virtual unsigned max_tokens() const = 0;
  32. /** Returns true if the option should only take adjacent token,
  33. not one from further command-line arguments.
  34. */
  35. virtual bool adjacent_tokens_only() const = 0;
  36. /** Returns true if values from different sources should be composed.
  37. Otherwise, value from the first source is used and values from
  38. other sources are discarded.
  39. */
  40. virtual bool is_composing() const = 0;
  41. /** Returns true if value must be given. Non-optional value
  42. */
  43. virtual bool is_required() const = 0;
  44. /** Parses a group of tokens that specify a value of option.
  45. Stores the result in 'value_store', using whatever representation
  46. is desired. May be be called several times if value of the same
  47. option is specified more than once.
  48. */
  49. virtual void parse(boost::any& value_store,
  50. const std::vector<std::string>& new_tokens,
  51. bool utf8) const
  52. = 0;
  53. /** Called to assign default value to 'value_store'. Returns
  54. true if default value is assigned, and false if no default
  55. value exists. */
  56. virtual bool apply_default(boost::any& value_store) const = 0;
  57. /** Called when final value of an option is determined.
  58. */
  59. virtual void notify(const boost::any& value_store) const = 0;
  60. virtual ~value_semantic() {}
  61. };
  62. /** Helper class which perform necessary character conversions in the
  63. 'parse' method and forwards the data further.
  64. */
  65. template<class charT>
  66. class value_semantic_codecvt_helper {
  67. // Nothing here. Specializations to follow.
  68. };
  69. /** Helper conversion class for values that accept ascii
  70. strings as input.
  71. Overrides the 'parse' method and defines new 'xparse'
  72. method taking std::string. Depending on whether input
  73. to parse is ascii or UTF8, will pass it to xparse unmodified,
  74. or with UTF8->ascii conversion.
  75. */
  76. template<>
  77. class BOOST_PROGRAM_OPTIONS_DECL
  78. value_semantic_codecvt_helper<char> : public value_semantic {
  79. private: // base overrides
  80. void parse(boost::any& value_store,
  81. const std::vector<std::string>& new_tokens,
  82. bool utf8) const;
  83. protected: // interface for derived classes.
  84. virtual void xparse(boost::any& value_store,
  85. const std::vector<std::string>& new_tokens)
  86. const = 0;
  87. };
  88. /** Helper conversion class for values that accept ascii
  89. strings as input.
  90. Overrides the 'parse' method and defines new 'xparse'
  91. method taking std::wstring. Depending on whether input
  92. to parse is ascii or UTF8, will recode input to Unicode, or
  93. pass it unmodified.
  94. */
  95. template<>
  96. class BOOST_PROGRAM_OPTIONS_DECL
  97. value_semantic_codecvt_helper<wchar_t> : public value_semantic {
  98. private: // base overrides
  99. void parse(boost::any& value_store,
  100. const std::vector<std::string>& new_tokens,
  101. bool utf8) const;
  102. protected: // interface for derived classes.
  103. #if !defined(BOOST_NO_STD_WSTRING)
  104. virtual void xparse(boost::any& value_store,
  105. const std::vector<std::wstring>& new_tokens)
  106. const = 0;
  107. #endif
  108. };
  109. /** Class which specifies a simple handling of a value: the value will
  110. have string type and only one token is allowed. */
  111. class BOOST_PROGRAM_OPTIONS_DECL
  112. untyped_value : public value_semantic_codecvt_helper<char> {
  113. public:
  114. untyped_value(bool zero_tokens = false)
  115. : m_zero_tokens(zero_tokens)
  116. {}
  117. std::string name() const;
  118. unsigned min_tokens() const;
  119. unsigned max_tokens() const;
  120. bool adjacent_tokens_only() const { return false; }
  121. bool is_composing() const { return false; }
  122. bool is_required() const { return false; }
  123. /** If 'value_store' is already initialized, or new_tokens
  124. has more than one elements, throws. Otherwise, assigns
  125. the first string from 'new_tokens' to 'value_store', without
  126. any modifications.
  127. */
  128. void xparse(boost::any& value_store,
  129. const std::vector<std::string>& new_tokens) const;
  130. /** Does nothing. */
  131. bool apply_default(boost::any&) const { return false; }
  132. /** Does nothing. */
  133. void notify(const boost::any&) const {}
  134. private:
  135. bool m_zero_tokens;
  136. };
  137. #ifndef BOOST_NO_RTTI
  138. /** Base class for all option that have a fixed type, and are
  139. willing to announce this type to the outside world.
  140. Any 'value_semantics' for which you want to find out the
  141. type can be dynamic_cast-ed to typed_value_base. If conversion
  142. succeeds, the 'type' method can be called.
  143. */
  144. class typed_value_base
  145. {
  146. public:
  147. // Returns the type of the value described by this
  148. // object.
  149. virtual const std::type_info& value_type() const = 0;
  150. // Not really needed, since deletion from this
  151. // class is silly, but just in case.
  152. virtual ~typed_value_base() {}
  153. };
  154. #endif
  155. /** Class which handles value of a specific type. */
  156. template<class T, class charT = char>
  157. class typed_value : public value_semantic_codecvt_helper<charT>
  158. #ifndef BOOST_NO_RTTI
  159. , public typed_value_base
  160. #endif
  161. {
  162. public:
  163. /** Ctor. The 'store_to' parameter tells where to store
  164. the value when it's known. The parameter can be NULL. */
  165. typed_value(T* store_to)
  166. : m_store_to(store_to), m_composing(false),
  167. m_implicit(false), m_multitoken(false),
  168. m_zero_tokens(false), m_required(false)
  169. {}
  170. /** Specifies default value, which will be used
  171. if none is explicitly specified. The type 'T' should
  172. provide operator<< for ostream.
  173. */
  174. typed_value* default_value(const T& v)
  175. {
  176. m_default_value = boost::any(v);
  177. m_default_value_as_text = boost::lexical_cast<std::string>(v);
  178. return this;
  179. }
  180. /** Specifies default value, which will be used
  181. if none is explicitly specified. Unlike the above overload,
  182. the type 'T' need not provide operator<< for ostream,
  183. but textual representation of default value must be provided
  184. by the user.
  185. */
  186. typed_value* default_value(const T& v, const std::string& textual)
  187. {
  188. m_default_value = boost::any(v);
  189. m_default_value_as_text = textual;
  190. return this;
  191. }
  192. /** Specifies an implicit value, which will be used
  193. if the option is given, but without an adjacent value.
  194. Using this implies that an explicit value is optional, but if
  195. given, must be strictly adjacent to the option, i.e.: '-ovalue'
  196. or '--option=value'. Giving '-o' or '--option' will cause the
  197. implicit value to be applied.
  198. */
  199. typed_value* implicit_value(const T &v)
  200. {
  201. m_implicit_value = boost::any(v);
  202. m_implicit_value_as_text =
  203. boost::lexical_cast<std::string>(v);
  204. return this;
  205. }
  206. /** Specifies the name used to to the value in help message. */
  207. typed_value* value_name(const std::string& name)
  208. {
  209. m_value_name = name;
  210. return this;
  211. }
  212. /** Specifies an implicit value, which will be used
  213. if the option is given, but without an adjacent value.
  214. Using this implies that an explicit value is optional, but if
  215. given, must be strictly adjacent to the option, i.e.: '-ovalue'
  216. or '--option=value'. Giving '-o' or '--option' will cause the
  217. implicit value to be applied.
  218. Unlike the above overload, the type 'T' need not provide
  219. operator<< for ostream, but textual representation of default
  220. value must be provided by the user.
  221. */
  222. typed_value* implicit_value(const T &v, const std::string& textual)
  223. {
  224. m_implicit_value = boost::any(v);
  225. m_implicit_value_as_text = textual;
  226. return this;
  227. }
  228. /** Specifies a function to be called when the final value
  229. is determined. */
  230. typed_value* notifier(function1<void, const T&> f)
  231. {
  232. m_notifier = f;
  233. return this;
  234. }
  235. /** Specifies that the value is composing. See the 'is_composing'
  236. method for explanation.
  237. */
  238. typed_value* composing()
  239. {
  240. m_composing = true;
  241. return this;
  242. }
  243. /** Specifies that the value can span multiple tokens.
  244. */
  245. typed_value* multitoken()
  246. {
  247. m_multitoken = true;
  248. return this;
  249. }
  250. /** Specifies that no tokens may be provided as the value of
  251. this option, which means that only presense of the option
  252. is significant. For such option to be useful, either the
  253. 'validate' function should be specialized, or the
  254. 'implicit_value' method should be also used. In most
  255. cases, you can use the 'bool_switch' function instead of
  256. using this method. */
  257. typed_value* zero_tokens()
  258. {
  259. m_zero_tokens = true;
  260. return this;
  261. }
  262. /** Specifies that the value must occur. */
  263. typed_value* required()
  264. {
  265. m_required = true;
  266. return this;
  267. }
  268. public: // value semantic overrides
  269. std::string name() const;
  270. bool is_composing() const { return m_composing; }
  271. unsigned min_tokens() const
  272. {
  273. if (m_zero_tokens || !m_implicit_value.empty()) {
  274. return 0;
  275. } else {
  276. return 1;
  277. }
  278. }
  279. unsigned max_tokens() const {
  280. if (m_multitoken) {
  281. return std::numeric_limits<unsigned>::max BOOST_PREVENT_MACRO_SUBSTITUTION();
  282. } else if (m_zero_tokens) {
  283. return 0;
  284. } else {
  285. return 1;
  286. }
  287. }
  288. bool adjacent_tokens_only() const { return !m_implicit_value.empty(); }
  289. bool is_required() const { return m_required; }
  290. /** Creates an instance of the 'validator' class and calls
  291. its operator() to perform the actual conversion. */
  292. void xparse(boost::any& value_store,
  293. const std::vector< std::basic_string<charT> >& new_tokens)
  294. const;
  295. /** If default value was specified via previous call to
  296. 'default_value', stores that value into 'value_store'.
  297. Returns true if default value was stored.
  298. */
  299. virtual bool apply_default(boost::any& value_store) const
  300. {
  301. if (m_default_value.empty()) {
  302. return false;
  303. } else {
  304. value_store = m_default_value;
  305. return true;
  306. }
  307. }
  308. /** If an address of variable to store value was specified
  309. when creating *this, stores the value there. Otherwise,
  310. does nothing. */
  311. void notify(const boost::any& value_store) const;
  312. public: // typed_value_base overrides
  313. #ifndef BOOST_NO_RTTI
  314. const std::type_info& value_type() const
  315. {
  316. return typeid(T);
  317. }
  318. #endif
  319. private:
  320. T* m_store_to;
  321. // Default value is stored as boost::any and not
  322. // as boost::optional to avoid unnecessary instantiations.
  323. std::string m_value_name;
  324. boost::any m_default_value;
  325. std::string m_default_value_as_text;
  326. boost::any m_implicit_value;
  327. std::string m_implicit_value_as_text;
  328. bool m_composing, m_implicit, m_multitoken, m_zero_tokens, m_required;
  329. boost::function1<void, const T&> m_notifier;
  330. };
  331. /** Creates a typed_value<T> instance. This function is the primary
  332. method to create value_semantic instance for a specific type, which
  333. can later be passed to 'option_description' constructor.
  334. The second overload is used when it's additionally desired to store the
  335. value of option into program variable.
  336. */
  337. template<class T>
  338. typed_value<T>*
  339. value();
  340. /** @overload
  341. */
  342. template<class T>
  343. typed_value<T>*
  344. value(T* v);
  345. /** Creates a typed_value<T> instance. This function is the primary
  346. method to create value_semantic instance for a specific type, which
  347. can later be passed to 'option_description' constructor.
  348. */
  349. template<class T>
  350. typed_value<T, wchar_t>*
  351. wvalue();
  352. /** @overload
  353. */
  354. template<class T>
  355. typed_value<T, wchar_t>*
  356. wvalue(T* v);
  357. /** Works the same way as the 'value<bool>' function, but the created
  358. value_semantic won't accept any explicit value. So, if the option
  359. is present on the command line, the value will be 'true'.
  360. */
  361. BOOST_PROGRAM_OPTIONS_DECL typed_value<bool>*
  362. bool_switch();
  363. /** @overload
  364. */
  365. BOOST_PROGRAM_OPTIONS_DECL typed_value<bool>*
  366. bool_switch(bool* v);
  367. }}
  368. #include "boost/program_options/detail/value_semantic.hpp"
  369. #endif