any.hpp 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325
  1. // See http://www.boost.org/libs/any for Documentation.
  2. #ifndef BOOST_ANY_INCLUDED
  3. #define BOOST_ANY_INCLUDED
  4. #if defined(_MSC_VER)
  5. # pragma once
  6. #endif
  7. // what: variant type boost::any
  8. // who: contributed by Kevlin Henney,
  9. // with features contributed and bugs found by
  10. // Antony Polukhin, Ed Brey, Mark Rodgers,
  11. // Peter Dimov, and James Curran
  12. // when: July 2001, April 2013 - May 2013
  13. #include <algorithm>
  14. #include "boost/config.hpp"
  15. #include <boost/type_index.hpp>
  16. #include <boost/type_traits/remove_reference.hpp>
  17. #include <boost/type_traits/decay.hpp>
  18. #include <boost/type_traits/remove_cv.hpp>
  19. #include <boost/type_traits/add_reference.hpp>
  20. #include <boost/type_traits/is_reference.hpp>
  21. #include <boost/type_traits/is_const.hpp>
  22. #include <boost/throw_exception.hpp>
  23. #include <boost/static_assert.hpp>
  24. #include <boost/utility/enable_if.hpp>
  25. #include <boost/type_traits/is_same.hpp>
  26. #include <boost/type_traits/is_const.hpp>
  27. #include <boost/mpl/if.hpp>
  28. namespace boost
  29. {
  30. class any
  31. {
  32. public: // structors
  33. any() BOOST_NOEXCEPT
  34. : content(0)
  35. {
  36. }
  37. template<typename ValueType>
  38. any(const ValueType & value)
  39. : content(new holder<
  40. BOOST_DEDUCED_TYPENAME remove_cv<BOOST_DEDUCED_TYPENAME decay<const ValueType>::type>::type
  41. >(value))
  42. {
  43. }
  44. any(const any & other)
  45. : content(other.content ? other.content->clone() : 0)
  46. {
  47. }
  48. #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
  49. // Move constructor
  50. any(any&& other) BOOST_NOEXCEPT
  51. : content(other.content)
  52. {
  53. other.content = 0;
  54. }
  55. // Perfect forwarding of ValueType
  56. template<typename ValueType>
  57. any(ValueType&& value
  58. , typename boost::disable_if<boost::is_same<any&, ValueType> >::type* = 0 // disable if value has type `any&`
  59. , typename boost::disable_if<boost::is_const<ValueType> >::type* = 0) // disable if value has type `const ValueType&&`
  60. : content(new holder< typename decay<ValueType>::type >(static_cast<ValueType&&>(value)))
  61. {
  62. }
  63. #endif
  64. ~any() BOOST_NOEXCEPT
  65. {
  66. delete content;
  67. }
  68. public: // modifiers
  69. any & swap(any & rhs) BOOST_NOEXCEPT
  70. {
  71. std::swap(content, rhs.content);
  72. return *this;
  73. }
  74. #ifdef BOOST_NO_CXX11_RVALUE_REFERENCES
  75. template<typename ValueType>
  76. any & operator=(const ValueType & rhs)
  77. {
  78. any(rhs).swap(*this);
  79. return *this;
  80. }
  81. any & operator=(any rhs)
  82. {
  83. any(rhs).swap(*this);
  84. return *this;
  85. }
  86. #else
  87. any & operator=(const any& rhs)
  88. {
  89. any(rhs).swap(*this);
  90. return *this;
  91. }
  92. // move assignement
  93. any & operator=(any&& rhs) BOOST_NOEXCEPT
  94. {
  95. rhs.swap(*this);
  96. any().swap(rhs);
  97. return *this;
  98. }
  99. // Perfect forwarding of ValueType
  100. template <class ValueType>
  101. any & operator=(ValueType&& rhs)
  102. {
  103. any(static_cast<ValueType&&>(rhs)).swap(*this);
  104. return *this;
  105. }
  106. #endif
  107. public: // queries
  108. bool empty() const BOOST_NOEXCEPT
  109. {
  110. return !content;
  111. }
  112. void clear() BOOST_NOEXCEPT
  113. {
  114. any().swap(*this);
  115. }
  116. const boost::typeindex::type_info& type() const BOOST_NOEXCEPT
  117. {
  118. return content ? content->type() : boost::typeindex::type_id<void>().type_info();
  119. }
  120. #ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
  121. private: // types
  122. #else
  123. public: // types (public so any_cast can be non-friend)
  124. #endif
  125. class placeholder
  126. {
  127. public: // structors
  128. virtual ~placeholder()
  129. {
  130. }
  131. public: // queries
  132. virtual const boost::typeindex::type_info& type() const BOOST_NOEXCEPT = 0;
  133. virtual placeholder * clone() const = 0;
  134. };
  135. template<typename ValueType>
  136. class holder : public placeholder
  137. {
  138. public: // structors
  139. holder(const ValueType & value)
  140. : held(value)
  141. {
  142. }
  143. #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
  144. holder(ValueType&& value)
  145. : held(static_cast< ValueType&& >(value))
  146. {
  147. }
  148. #endif
  149. public: // queries
  150. virtual const boost::typeindex::type_info& type() const BOOST_NOEXCEPT
  151. {
  152. return boost::typeindex::type_id<ValueType>().type_info();
  153. }
  154. virtual placeholder * clone() const
  155. {
  156. return new holder(held);
  157. }
  158. public: // representation
  159. ValueType held;
  160. private: // intentionally left unimplemented
  161. holder & operator=(const holder &);
  162. };
  163. #ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
  164. private: // representation
  165. template<typename ValueType>
  166. friend ValueType * any_cast(any *) BOOST_NOEXCEPT;
  167. template<typename ValueType>
  168. friend ValueType * unsafe_any_cast(any *) BOOST_NOEXCEPT;
  169. #else
  170. public: // representation (public so any_cast can be non-friend)
  171. #endif
  172. placeholder * content;
  173. };
  174. inline void swap(any & lhs, any & rhs) BOOST_NOEXCEPT
  175. {
  176. lhs.swap(rhs);
  177. }
  178. class BOOST_SYMBOL_VISIBLE bad_any_cast :
  179. #ifndef BOOST_NO_RTTI
  180. public std::bad_cast
  181. #else
  182. public std::exception
  183. #endif
  184. {
  185. public:
  186. virtual const char * what() const BOOST_NOEXCEPT_OR_NOTHROW
  187. {
  188. return "boost::bad_any_cast: "
  189. "failed conversion using boost::any_cast";
  190. }
  191. };
  192. template<typename ValueType>
  193. ValueType * any_cast(any * operand) BOOST_NOEXCEPT
  194. {
  195. return operand && operand->type() == boost::typeindex::type_id<ValueType>()
  196. ? &static_cast<any::holder<BOOST_DEDUCED_TYPENAME remove_cv<ValueType>::type> *>(operand->content)->held
  197. : 0;
  198. }
  199. template<typename ValueType>
  200. inline const ValueType * any_cast(const any * operand) BOOST_NOEXCEPT
  201. {
  202. return any_cast<ValueType>(const_cast<any *>(operand));
  203. }
  204. template<typename ValueType>
  205. ValueType any_cast(any & operand)
  206. {
  207. typedef BOOST_DEDUCED_TYPENAME remove_reference<ValueType>::type nonref;
  208. nonref * result = any_cast<nonref>(&operand);
  209. if(!result)
  210. boost::throw_exception(bad_any_cast());
  211. // Attempt to avoid construction of a temporary object in cases when
  212. // `ValueType` is not a reference. Example:
  213. // `static_cast<std::string>(*result);`
  214. // which is equal to `std::string(*result);`
  215. typedef BOOST_DEDUCED_TYPENAME boost::mpl::if_<
  216. boost::is_reference<ValueType>,
  217. ValueType,
  218. BOOST_DEDUCED_TYPENAME boost::add_reference<ValueType>::type
  219. >::type ref_type;
  220. return static_cast<ref_type>(*result);
  221. }
  222. template<typename ValueType>
  223. inline ValueType any_cast(const any & operand)
  224. {
  225. typedef BOOST_DEDUCED_TYPENAME remove_reference<ValueType>::type nonref;
  226. return any_cast<const nonref &>(const_cast<any &>(operand));
  227. }
  228. #ifndef BOOST_NO_CXX11_RVALUE_REFERENCES
  229. template<typename ValueType>
  230. inline ValueType any_cast(any&& operand)
  231. {
  232. BOOST_STATIC_ASSERT_MSG(
  233. boost::is_rvalue_reference<ValueType&&>::value /*true if ValueType is rvalue or just a value*/
  234. || boost::is_const< typename boost::remove_reference<ValueType>::type >::value,
  235. "boost::any_cast shall not be used for getting nonconst references to temporary objects"
  236. );
  237. return any_cast<ValueType>(operand);
  238. }
  239. #endif
  240. // Note: The "unsafe" versions of any_cast are not part of the
  241. // public interface and may be removed at any time. They are
  242. // required where we know what type is stored in the any and can't
  243. // use typeid() comparison, e.g., when our types may travel across
  244. // different shared libraries.
  245. template<typename ValueType>
  246. inline ValueType * unsafe_any_cast(any * operand) BOOST_NOEXCEPT
  247. {
  248. return &static_cast<any::holder<ValueType> *>(operand->content)->held;
  249. }
  250. template<typename ValueType>
  251. inline const ValueType * unsafe_any_cast(const any * operand) BOOST_NOEXCEPT
  252. {
  253. return unsafe_any_cast<ValueType>(const_cast<any *>(operand));
  254. }
  255. }
  256. // Copyright Kevlin Henney, 2000, 2001, 2002. All rights reserved.
  257. //
  258. // Distributed under the Boost Software License, Version 1.0. (See
  259. // accompanying file LICENSE_1_0.txt or copy at
  260. // http://www.boost.org/LICENSE_1_0.txt)
  261. #endif