assert.hpp 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439
  1. #ifndef BOOST_MPL_ASSERT_HPP_INCLUDED
  2. #define BOOST_MPL_ASSERT_HPP_INCLUDED
  3. // Copyright Aleksey Gurtovoy 2000-2006
  4. //
  5. // Distributed under the Boost Software License, Version 1.0.
  6. // (See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. //
  9. // See http://www.boost.org/libs/mpl for documentation.
  10. // $Id$
  11. // $Date$
  12. // $Revision$
  13. #include <boost/mpl/not.hpp>
  14. #include <boost/mpl/aux_/value_wknd.hpp>
  15. #include <boost/mpl/aux_/nested_type_wknd.hpp>
  16. #include <boost/mpl/aux_/yes_no.hpp>
  17. #include <boost/mpl/aux_/na.hpp>
  18. #include <boost/mpl/aux_/adl_barrier.hpp>
  19. #include <boost/mpl/aux_/config/nttp.hpp>
  20. #include <boost/mpl/aux_/config/dtp.hpp>
  21. #include <boost/mpl/aux_/config/gcc.hpp>
  22. #include <boost/mpl/aux_/config/msvc.hpp>
  23. #include <boost/mpl/aux_/config/gpu.hpp>
  24. #include <boost/mpl/aux_/config/static_constant.hpp>
  25. #include <boost/mpl/aux_/config/pp_counter.hpp>
  26. #include <boost/mpl/aux_/config/workaround.hpp>
  27. #include <boost/preprocessor/cat.hpp>
  28. #include <boost/config.hpp> // make sure 'size_t' is placed into 'std'
  29. #include <cstddef>
  30. #if BOOST_WORKAROUND(BOOST_MSVC, == 1700)
  31. #include <boost/mpl/if.hpp>
  32. #endif
  33. #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x610)) \
  34. || (BOOST_MPL_CFG_GCC != 0) \
  35. || BOOST_WORKAROUND(__IBMCPP__, <= 600)
  36. # define BOOST_MPL_CFG_ASSERT_USE_RELATION_NAMES
  37. #endif
  38. #if BOOST_WORKAROUND(__MWERKS__, < 0x3202) \
  39. || BOOST_WORKAROUND(__EDG_VERSION__, <= 238) \
  40. || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x610)) \
  41. || BOOST_WORKAROUND(__DMC__, BOOST_TESTED_AT(0x840))
  42. # define BOOST_MPL_CFG_ASSERT_BROKEN_POINTER_TO_POINTER_TO_MEMBER
  43. #endif
  44. // agurt, 10/nov/06: use enums for Borland (which cannot cope with static constants)
  45. // and GCC (which issues "unused variable" warnings when static constants are used
  46. // at a function scope)
  47. #if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x610)) \
  48. || (BOOST_MPL_CFG_GCC != 0) || (BOOST_MPL_CFG_GPU != 0)
  49. # define BOOST_MPL_AUX_ASSERT_CONSTANT(T, expr) enum { expr }
  50. #else
  51. # define BOOST_MPL_AUX_ASSERT_CONSTANT(T, expr) BOOST_STATIC_CONSTANT(T, expr)
  52. #endif
  53. BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_OPEN
  54. struct failed {};
  55. // agurt, 24/aug/04: MSVC 7.1 workaround here and below: return/accept
  56. // 'assert<false>' by reference; can't apply it unconditionally -- apparently it
  57. // degrades the quality of GCC diagnostics
  58. #if BOOST_WORKAROUND(BOOST_MSVC, == 1310)
  59. # define AUX778076_ASSERT_ARG(x) x&
  60. #else
  61. # define AUX778076_ASSERT_ARG(x) x
  62. #endif
  63. template< bool C > struct assert { typedef void* type; };
  64. template<> struct assert<false> { typedef AUX778076_ASSERT_ARG(assert) type; };
  65. template< bool C >
  66. int assertion_failed( typename assert<C>::type );
  67. template< bool C >
  68. struct assertion
  69. {
  70. static int failed( assert<false> );
  71. };
  72. template<>
  73. struct assertion<true>
  74. {
  75. static int failed( void* );
  76. };
  77. struct assert_
  78. {
  79. #if !defined(BOOST_MPL_CFG_NO_DEFAULT_PARAMETERS_IN_NESTED_TEMPLATES)
  80. template< typename T1, typename T2 = na, typename T3 = na, typename T4 = na > struct types {};
  81. #endif
  82. static assert_ const arg;
  83. enum relations { equal = 1, not_equal, greater, greater_equal, less, less_equal };
  84. };
  85. #if !defined(BOOST_MPL_CFG_ASSERT_USE_RELATION_NAMES)
  86. bool operator==( failed, failed );
  87. bool operator!=( failed, failed );
  88. bool operator>( failed, failed );
  89. bool operator>=( failed, failed );
  90. bool operator<( failed, failed );
  91. bool operator<=( failed, failed );
  92. #if defined(__EDG_VERSION__)
  93. template< bool (*)(failed, failed), long x, long y > struct assert_relation {};
  94. # define BOOST_MPL_AUX_ASSERT_RELATION(x, y, r) assert_relation<r,x,y>
  95. #else
  96. template< BOOST_MPL_AUX_NTTP_DECL(long, x), BOOST_MPL_AUX_NTTP_DECL(long, y), bool (*)(failed, failed) >
  97. struct assert_relation {};
  98. # define BOOST_MPL_AUX_ASSERT_RELATION(x, y, r) assert_relation<x,y,r>
  99. #endif
  100. #else // BOOST_MPL_CFG_ASSERT_USE_RELATION_NAMES
  101. boost::mpl::aux::weighted_tag<1>::type operator==( assert_, assert_ );
  102. boost::mpl::aux::weighted_tag<2>::type operator!=( assert_, assert_ );
  103. boost::mpl::aux::weighted_tag<3>::type operator>( assert_, assert_ );
  104. boost::mpl::aux::weighted_tag<4>::type operator>=( assert_, assert_ );
  105. boost::mpl::aux::weighted_tag<5>::type operator<( assert_, assert_ );
  106. boost::mpl::aux::weighted_tag<6>::type operator<=( assert_, assert_ );
  107. template< assert_::relations r, long x, long y > struct assert_relation {};
  108. #endif
  109. #if BOOST_WORKAROUND(BOOST_MSVC, == 1700)
  110. template<class Pred>
  111. struct extract_assert_pred;
  112. template<class Pred>
  113. struct extract_assert_pred<void(Pred)> { typedef Pred type; };
  114. template<class Pred>
  115. struct eval_assert {
  116. typedef typename extract_assert_pred<Pred>::type P;
  117. typedef typename P::type p_type;
  118. typedef typename ::boost::mpl::if_c<p_type::value,
  119. AUX778076_ASSERT_ARG(assert<false>),
  120. failed ************ P::************
  121. >::type type;
  122. };
  123. template<class Pred>
  124. struct eval_assert_not {
  125. typedef typename extract_assert_pred<Pred>::type P;
  126. typedef typename P::type p_type;
  127. typedef typename ::boost::mpl::if_c<!p_type::value,
  128. AUX778076_ASSERT_ARG(assert<false>),
  129. failed ************ ::boost::mpl::not_<P>::************
  130. >::type type;
  131. };
  132. template< typename T >
  133. T make_assert_arg();
  134. #elif !defined(BOOST_MPL_CFG_ASSERT_BROKEN_POINTER_TO_POINTER_TO_MEMBER)
  135. template< bool > struct assert_arg_pred_impl { typedef int type; };
  136. template<> struct assert_arg_pred_impl<true> { typedef void* type; };
  137. template< typename P > struct assert_arg_pred
  138. {
  139. typedef typename P::type p_type;
  140. typedef typename assert_arg_pred_impl< p_type::value >::type type;
  141. };
  142. template< typename P > struct assert_arg_pred_not
  143. {
  144. typedef typename P::type p_type;
  145. BOOST_MPL_AUX_ASSERT_CONSTANT( bool, p = !p_type::value );
  146. typedef typename assert_arg_pred_impl<p>::type type;
  147. };
  148. template< typename Pred >
  149. failed ************ (Pred::************
  150. assert_arg( void (*)(Pred), typename assert_arg_pred<Pred>::type )
  151. );
  152. template< typename Pred >
  153. failed ************ (boost::mpl::not_<Pred>::************
  154. assert_not_arg( void (*)(Pred), typename assert_arg_pred_not<Pred>::type )
  155. );
  156. template< typename Pred >
  157. AUX778076_ASSERT_ARG(assert<false>)
  158. assert_arg( void (*)(Pred), typename assert_arg_pred_not<Pred>::type );
  159. template< typename Pred >
  160. AUX778076_ASSERT_ARG(assert<false>)
  161. assert_not_arg( void (*)(Pred), typename assert_arg_pred<Pred>::type );
  162. #else // BOOST_MPL_CFG_ASSERT_BROKEN_POINTER_TO_POINTER_TO_MEMBER
  163. template< bool c, typename Pred > struct assert_arg_type_impl
  164. {
  165. typedef failed ************ Pred::* mwcw83_wknd;
  166. typedef mwcw83_wknd ************* type;
  167. };
  168. template< typename Pred > struct assert_arg_type_impl<true,Pred>
  169. {
  170. typedef AUX778076_ASSERT_ARG(assert<false>) type;
  171. };
  172. template< typename Pred > struct assert_arg_type
  173. : assert_arg_type_impl< BOOST_MPL_AUX_VALUE_WKND(BOOST_MPL_AUX_NESTED_TYPE_WKND(Pred))::value, Pred >
  174. {
  175. };
  176. template< typename Pred >
  177. typename assert_arg_type<Pred>::type
  178. assert_arg(void (*)(Pred), int);
  179. template< typename Pred >
  180. typename assert_arg_type< boost::mpl::not_<Pred> >::type
  181. assert_not_arg(void (*)(Pred), int);
  182. # if !defined(BOOST_MPL_CFG_ASSERT_USE_RELATION_NAMES)
  183. template< long x, long y, bool (*r)(failed, failed) >
  184. typename assert_arg_type_impl< false,BOOST_MPL_AUX_ASSERT_RELATION(x,y,r) >::type
  185. assert_rel_arg( BOOST_MPL_AUX_ASSERT_RELATION(x,y,r) );
  186. # else
  187. template< assert_::relations r, long x, long y >
  188. typename assert_arg_type_impl< false,assert_relation<r,x,y> >::type
  189. assert_rel_arg( assert_relation<r,x,y> );
  190. # endif
  191. #endif // BOOST_MPL_CFG_ASSERT_BROKEN_POINTER_TO_POINTER_TO_MEMBER
  192. #undef AUX778076_ASSERT_ARG
  193. BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_CLOSE
  194. #if BOOST_WORKAROUND(BOOST_MSVC, == 1700)
  195. // BOOST_MPL_ASSERT((pred<x,...>))
  196. #define BOOST_MPL_ASSERT(pred) \
  197. BOOST_MPL_AUX_ASSERT_CONSTANT( \
  198. std::size_t \
  199. , BOOST_PP_CAT(mpl_assertion_in_line_,BOOST_MPL_AUX_PP_COUNTER()) = sizeof( \
  200. boost::mpl::assertion_failed<false>( \
  201. boost::mpl::make_assert_arg< \
  202. typename boost::mpl::eval_assert<void pred>::type \
  203. >() \
  204. ) \
  205. ) \
  206. ) \
  207. /**/
  208. // BOOST_MPL_ASSERT_NOT((pred<x,...>))
  209. #define BOOST_MPL_ASSERT_NOT(pred) \
  210. BOOST_MPL_AUX_ASSERT_CONSTANT( \
  211. std::size_t \
  212. , BOOST_PP_CAT(mpl_assertion_in_line_,BOOST_MPL_AUX_PP_COUNTER()) = sizeof( \
  213. boost::mpl::assertion_failed<false>( \
  214. boost::mpl::make_assert_arg< \
  215. typename boost::mpl::eval_assert_not<void pred>::type \
  216. >() \
  217. ) \
  218. ) \
  219. ) \
  220. /**/
  221. #else
  222. // BOOST_MPL_ASSERT((pred<x,...>))
  223. #define BOOST_MPL_ASSERT(pred) \
  224. BOOST_MPL_AUX_ASSERT_CONSTANT( \
  225. std::size_t \
  226. , BOOST_PP_CAT(mpl_assertion_in_line_,BOOST_MPL_AUX_PP_COUNTER()) = sizeof( \
  227. boost::mpl::assertion_failed<false>( \
  228. boost::mpl::assert_arg( (void (*) pred)0, 1 ) \
  229. ) \
  230. ) \
  231. ) \
  232. /**/
  233. // BOOST_MPL_ASSERT_NOT((pred<x,...>))
  234. #if BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
  235. # define BOOST_MPL_ASSERT_NOT(pred) \
  236. enum { \
  237. BOOST_PP_CAT(mpl_assertion_in_line_,BOOST_MPL_AUX_PP_COUNTER()) = sizeof( \
  238. boost::mpl::assertion<false>::failed( \
  239. boost::mpl::assert_not_arg( (void (*) pred)0, 1 ) \
  240. ) \
  241. ) \
  242. }\
  243. /**/
  244. #else
  245. # define BOOST_MPL_ASSERT_NOT(pred) \
  246. BOOST_MPL_AUX_ASSERT_CONSTANT( \
  247. std::size_t \
  248. , BOOST_PP_CAT(mpl_assertion_in_line_,BOOST_MPL_AUX_PP_COUNTER()) = sizeof( \
  249. boost::mpl::assertion_failed<false>( \
  250. boost::mpl::assert_not_arg( (void (*) pred)0, 1 ) \
  251. ) \
  252. ) \
  253. ) \
  254. /**/
  255. #endif
  256. #endif
  257. // BOOST_MPL_ASSERT_RELATION(x, ==|!=|<=|<|>=|>, y)
  258. #if defined(BOOST_MPL_CFG_ASSERT_USE_RELATION_NAMES)
  259. # if !defined(BOOST_MPL_CFG_ASSERT_BROKEN_POINTER_TO_POINTER_TO_MEMBER)
  260. // agurt, 9/nov/06: 'enum' below is a workaround for gcc 4.0.4/4.1.1 bugs #29522 and #29518
  261. # define BOOST_MPL_ASSERT_RELATION_IMPL(counter, x, rel, y) \
  262. enum { BOOST_PP_CAT(mpl_assert_rel_value,counter) = (x rel y) }; \
  263. BOOST_MPL_AUX_ASSERT_CONSTANT( \
  264. std::size_t \
  265. , BOOST_PP_CAT(mpl_assertion_in_line_,counter) = sizeof( \
  266. boost::mpl::assertion_failed<BOOST_PP_CAT(mpl_assert_rel_value,counter)>( \
  267. (boost::mpl::failed ************ ( boost::mpl::assert_relation< \
  268. boost::mpl::assert_::relations( sizeof( \
  269. boost::mpl::assert_::arg rel boost::mpl::assert_::arg \
  270. ) ) \
  271. , x \
  272. , y \
  273. >::************)) 0 ) \
  274. ) \
  275. ) \
  276. /**/
  277. # else
  278. # define BOOST_MPL_ASSERT_RELATION_IMPL(counter, x, rel, y) \
  279. BOOST_MPL_AUX_ASSERT_CONSTANT( \
  280. std::size_t \
  281. , BOOST_PP_CAT(mpl_assert_rel,counter) = sizeof( \
  282. boost::mpl::assert_::arg rel boost::mpl::assert_::arg \
  283. ) \
  284. ); \
  285. BOOST_MPL_AUX_ASSERT_CONSTANT( bool, BOOST_PP_CAT(mpl_assert_rel_value,counter) = (x rel y) ); \
  286. BOOST_MPL_AUX_ASSERT_CONSTANT( \
  287. std::size_t \
  288. , BOOST_PP_CAT(mpl_assertion_in_line_,counter) = sizeof( \
  289. boost::mpl::assertion_failed<BOOST_PP_CAT(mpl_assert_rel_value,counter)>( \
  290. boost::mpl::assert_rel_arg( boost::mpl::assert_relation< \
  291. boost::mpl::assert_::relations(BOOST_PP_CAT(mpl_assert_rel,counter)) \
  292. , x \
  293. , y \
  294. >() ) \
  295. ) \
  296. ) \
  297. ) \
  298. /**/
  299. # endif
  300. # define BOOST_MPL_ASSERT_RELATION(x, rel, y) \
  301. BOOST_MPL_ASSERT_RELATION_IMPL(BOOST_MPL_AUX_PP_COUNTER(), x, rel, y) \
  302. /**/
  303. #else // !BOOST_MPL_CFG_ASSERT_USE_RELATION_NAMES
  304. # if defined(BOOST_MPL_CFG_ASSERT_BROKEN_POINTER_TO_POINTER_TO_MEMBER)
  305. # define BOOST_MPL_ASSERT_RELATION(x, rel, y) \
  306. BOOST_MPL_AUX_ASSERT_CONSTANT( \
  307. std::size_t \
  308. , BOOST_PP_CAT(mpl_assertion_in_line_,BOOST_MPL_AUX_PP_COUNTER()) = sizeof( \
  309. boost::mpl::assertion_failed<(x rel y)>( boost::mpl::assert_rel_arg( \
  310. boost::mpl::BOOST_MPL_AUX_ASSERT_RELATION(x,y,(&boost::mpl::operator rel))() \
  311. ) ) \
  312. ) \
  313. ) \
  314. /**/
  315. # else
  316. # define BOOST_MPL_ASSERT_RELATION(x, rel, y) \
  317. BOOST_MPL_AUX_ASSERT_CONSTANT( \
  318. std::size_t \
  319. , BOOST_PP_CAT(mpl_assertion_in_line_,BOOST_MPL_AUX_PP_COUNTER()) = sizeof( \
  320. boost::mpl::assertion_failed<(x rel y)>( (boost::mpl::failed ************ ( \
  321. boost::mpl::BOOST_MPL_AUX_ASSERT_RELATION(x,y,(&boost::mpl::operator rel))::************))0 ) \
  322. ) \
  323. ) \
  324. /**/
  325. # endif
  326. #endif
  327. // BOOST_MPL_ASSERT_MSG( (pred<x,...>::value), USER_PROVIDED_MESSAGE, (types<x,...>) )
  328. #if BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3202))
  329. # define BOOST_MPL_ASSERT_MSG_IMPL( counter, c, msg, types_ ) \
  330. struct msg; \
  331. typedef struct BOOST_PP_CAT(msg,counter) : boost::mpl::assert_ \
  332. { \
  333. using boost::mpl::assert_::types; \
  334. static boost::mpl::failed ************ (msg::************ assert_arg()) types_ \
  335. { return 0; } \
  336. } BOOST_PP_CAT(mpl_assert_arg,counter); \
  337. BOOST_MPL_AUX_ASSERT_CONSTANT( \
  338. std::size_t \
  339. , BOOST_PP_CAT(mpl_assertion_in_line_,counter) = sizeof( \
  340. boost::mpl::assertion<(c)>::failed( BOOST_PP_CAT(mpl_assert_arg,counter)::assert_arg() ) \
  341. ) \
  342. ) \
  343. /**/
  344. #else
  345. # define BOOST_MPL_ASSERT_MSG_IMPL( counter, c, msg, types_ ) \
  346. struct msg; \
  347. typedef struct BOOST_PP_CAT(msg,counter) : boost::mpl::assert_ \
  348. { \
  349. static boost::mpl::failed ************ (msg::************ assert_arg()) types_ \
  350. { return 0; } \
  351. } BOOST_PP_CAT(mpl_assert_arg,counter); \
  352. BOOST_MPL_AUX_ASSERT_CONSTANT( \
  353. std::size_t \
  354. , BOOST_PP_CAT(mpl_assertion_in_line_,counter) = sizeof( \
  355. boost::mpl::assertion_failed<(c)>( BOOST_PP_CAT(mpl_assert_arg,counter)::assert_arg() ) \
  356. ) \
  357. ) \
  358. /**/
  359. #endif
  360. #define BOOST_MPL_ASSERT_MSG( c, msg, types_ ) \
  361. BOOST_MPL_ASSERT_MSG_IMPL( BOOST_MPL_AUX_PP_COUNTER(), c, msg, types_ ) \
  362. /**/
  363. #endif // BOOST_MPL_ASSERT_HPP_INCLUDED