blob: b3d5deb0dca30e505cb54dc9ba1139722aaf39c3 [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
Jeff Thompson3d613fd2013-10-15 15:39:04 -07002#ifndef NDNBOOST_MPL_ASSERT_HPP_INCLUDED
3#define NDNBOOST_MPL_ASSERT_HPP_INCLUDED
Jeff Thompsona28eed82013-08-22 16:21:10 -07004
5// Copyright Aleksey Gurtovoy 2000-2006
6//
7// Distributed under the Boost Software License, Version 1.0.
8// (See accompanying file LICENSE_1_0.txt or copy at
9// http://www.boost.org/LICENSE_1_0.txt)
10//
11// See http://www.boost.org/libs/mpl for documentation.
12
13// $Id: assert.hpp 84442 2013-05-23 14:38:22Z steven_watanabe $
14// $Date: 2013-05-23 07:38:22 -0700 (Thu, 23 May 2013) $
15// $Revision: 84442 $
16
17#include <ndnboost/mpl/not.hpp>
18#include <ndnboost/mpl/aux_/value_wknd.hpp>
19#include <ndnboost/mpl/aux_/nested_type_wknd.hpp>
20#include <ndnboost/mpl/aux_/yes_no.hpp>
21#include <ndnboost/mpl/aux_/na.hpp>
22#include <ndnboost/mpl/aux_/adl_barrier.hpp>
23
24#include <ndnboost/mpl/aux_/config/nttp.hpp>
25#include <ndnboost/mpl/aux_/config/dtp.hpp>
26#include <ndnboost/mpl/aux_/config/gcc.hpp>
27#include <ndnboost/mpl/aux_/config/msvc.hpp>
28#include <ndnboost/mpl/aux_/config/static_constant.hpp>
29#include <ndnboost/mpl/aux_/config/pp_counter.hpp>
30#include <ndnboost/mpl/aux_/config/workaround.hpp>
31
32#include <ndnboost/preprocessor/cat.hpp>
33
34#include <ndnboost/config.hpp> // make sure 'size_t' is placed into 'std'
35#include <cstddef>
36
Jeff Thompson3d613fd2013-10-15 15:39:04 -070037#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, == 1700)
Jeff Thompsona28eed82013-08-22 16:21:10 -070038#include <ndnboost/mpl/if.hpp>
39#endif
40
Jeff Thompson3d613fd2013-10-15 15:39:04 -070041#if NDNBOOST_WORKAROUND(__BORLANDC__, NDNBOOST_TESTED_AT(0x610)) \
42 || (NDNBOOST_MPL_CFG_GCC != 0) \
43 || NDNBOOST_WORKAROUND(__IBMCPP__, <= 600)
44# define NDNBOOST_MPL_CFG_ASSERT_USE_RELATION_NAMES
Jeff Thompsona28eed82013-08-22 16:21:10 -070045#endif
46
Jeff Thompson3d613fd2013-10-15 15:39:04 -070047#if NDNBOOST_WORKAROUND(__MWERKS__, < 0x3202) \
48 || NDNBOOST_WORKAROUND(__EDG_VERSION__, <= 238) \
49 || NDNBOOST_WORKAROUND(__BORLANDC__, NDNBOOST_TESTED_AT(0x610)) \
50 || NDNBOOST_WORKAROUND(__DMC__, NDNBOOST_TESTED_AT(0x840))
51# define NDNBOOST_MPL_CFG_ASSERT_BROKEN_POINTER_TO_POINTER_TO_MEMBER
Jeff Thompsona28eed82013-08-22 16:21:10 -070052#endif
53
54// agurt, 10/nov/06: use enums for Borland (which cannot cope with static constants)
55// and GCC (which issues "unused variable" warnings when static constants are used
56// at a function scope)
Jeff Thompson3d613fd2013-10-15 15:39:04 -070057#if NDNBOOST_WORKAROUND(__BORLANDC__, NDNBOOST_TESTED_AT(0x610)) \
58 || (NDNBOOST_MPL_CFG_GCC != 0)
59# define NDNBOOST_MPL_AUX_ASSERT_CONSTANT(T, expr) enum { expr }
Jeff Thompsona28eed82013-08-22 16:21:10 -070060#else
Jeff Thompson3d613fd2013-10-15 15:39:04 -070061# define NDNBOOST_MPL_AUX_ASSERT_CONSTANT(T, expr) NDNBOOST_STATIC_CONSTANT(T, expr)
Jeff Thompsona28eed82013-08-22 16:21:10 -070062#endif
63
64
Jeff Thompson3d613fd2013-10-15 15:39:04 -070065NDNBOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_OPEN
Jeff Thompsona28eed82013-08-22 16:21:10 -070066
67struct failed {};
68
69// agurt, 24/aug/04: MSVC 7.1 workaround here and below: return/accept
70// 'assert<false>' by reference; can't apply it unconditionally -- apparently it
71// degrades the quality of GCC diagnostics
Jeff Thompson3d613fd2013-10-15 15:39:04 -070072#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, == 1310)
Jeff Thompsona28eed82013-08-22 16:21:10 -070073# define AUX778076_ASSERT_ARG(x) x&
74#else
75# define AUX778076_ASSERT_ARG(x) x
76#endif
77
78template< bool C > struct assert { typedef void* type; };
79template<> struct assert<false> { typedef AUX778076_ASSERT_ARG(assert) type; };
80
81template< bool C >
82int assertion_failed( typename assert<C>::type );
83
84template< bool C >
85struct assertion
86{
87 static int failed( assert<false> );
88};
89
90template<>
91struct assertion<true>
92{
93 static int failed( void* );
94};
95
96struct assert_
97{
Jeff Thompson3d613fd2013-10-15 15:39:04 -070098#if !defined(NDNBOOST_MPL_CFG_NO_DEFAULT_PARAMETERS_IN_NESTED_TEMPLATES)
Jeff Thompsona28eed82013-08-22 16:21:10 -070099 template< typename T1, typename T2 = na, typename T3 = na, typename T4 = na > struct types {};
100#endif
101 static assert_ const arg;
102 enum relations { equal = 1, not_equal, greater, greater_equal, less, less_equal };
103};
104
105
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700106#if !defined(NDNBOOST_MPL_CFG_ASSERT_USE_RELATION_NAMES)
Jeff Thompsona28eed82013-08-22 16:21:10 -0700107
108bool operator==( failed, failed );
109bool operator!=( failed, failed );
110bool operator>( failed, failed );
111bool operator>=( failed, failed );
112bool operator<( failed, failed );
113bool operator<=( failed, failed );
114
115#if defined(__EDG_VERSION__)
116template< bool (*)(failed, failed), long x, long y > struct assert_relation {};
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700117# define NDNBOOST_MPL_AUX_ASSERT_RELATION(x, y, r) assert_relation<r,x,y>
Jeff Thompsona28eed82013-08-22 16:21:10 -0700118#else
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700119template< NDNBOOST_MPL_AUX_NTTP_DECL(long, x), NDNBOOST_MPL_AUX_NTTP_DECL(long, y), bool (*)(failed, failed) >
Jeff Thompsona28eed82013-08-22 16:21:10 -0700120struct assert_relation {};
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700121# define NDNBOOST_MPL_AUX_ASSERT_RELATION(x, y, r) assert_relation<x,y,r>
Jeff Thompsona28eed82013-08-22 16:21:10 -0700122#endif
123
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700124#else // NDNBOOST_MPL_CFG_ASSERT_USE_RELATION_NAMES
Jeff Thompsona28eed82013-08-22 16:21:10 -0700125
126ndnboost::mpl::aux::weighted_tag<1>::type operator==( assert_, assert_ );
127ndnboost::mpl::aux::weighted_tag<2>::type operator!=( assert_, assert_ );
128ndnboost::mpl::aux::weighted_tag<3>::type operator>( assert_, assert_ );
129ndnboost::mpl::aux::weighted_tag<4>::type operator>=( assert_, assert_ );
130ndnboost::mpl::aux::weighted_tag<5>::type operator<( assert_, assert_ );
131ndnboost::mpl::aux::weighted_tag<6>::type operator<=( assert_, assert_ );
132
133template< assert_::relations r, long x, long y > struct assert_relation {};
134
135#endif
136
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700137#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, >= 1700)
Jeff Thompsona28eed82013-08-22 16:21:10 -0700138
139template<class Pred>
140struct extract_assert_pred;
141
142template<class Pred>
143struct extract_assert_pred<void(Pred)> { typedef Pred type; };
144
145template<class Pred>
146struct eval_assert {
147 typedef typename extract_assert_pred<Pred>::type P;
148 typedef typename P::type p_type;
149 typedef typename ::ndnboost::mpl::if_c<p_type::value,
150 AUX778076_ASSERT_ARG(assert<false>),
151 failed ************ P::************
152 >::type type;
153};
154
155template<class Pred>
156struct eval_assert_not {
157 typedef typename extract_assert_pred<Pred>::type P;
158 typedef typename P::type p_type;
159 typedef typename ::ndnboost::mpl::if_c<!p_type::value,
160 AUX778076_ASSERT_ARG(assert<false>),
161 failed ************ ::ndnboost::mpl::not_<P>::************
162 >::type type;
163};
164
165template< typename T >
166T make_assert_arg();
167
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700168#elif !defined(NDNBOOST_MPL_CFG_ASSERT_BROKEN_POINTER_TO_POINTER_TO_MEMBER)
Jeff Thompsona28eed82013-08-22 16:21:10 -0700169
170template< bool > struct assert_arg_pred_impl { typedef int type; };
171template<> struct assert_arg_pred_impl<true> { typedef void* type; };
172
173template< typename P > struct assert_arg_pred
174{
175 typedef typename P::type p_type;
176 typedef typename assert_arg_pred_impl< p_type::value >::type type;
177};
178
179template< typename P > struct assert_arg_pred_not
180{
181 typedef typename P::type p_type;
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700182 NDNBOOST_MPL_AUX_ASSERT_CONSTANT( bool, p = !p_type::value );
Jeff Thompsona28eed82013-08-22 16:21:10 -0700183 typedef typename assert_arg_pred_impl<p>::type type;
184};
185
186template< typename Pred >
187failed ************ (Pred::************
188 assert_arg( void (*)(Pred), typename assert_arg_pred<Pred>::type )
189 );
190
191template< typename Pred >
192failed ************ (ndnboost::mpl::not_<Pred>::************
193 assert_not_arg( void (*)(Pred), typename assert_arg_pred_not<Pred>::type )
194 );
195
196template< typename Pred >
197AUX778076_ASSERT_ARG(assert<false>)
198assert_arg( void (*)(Pred), typename assert_arg_pred_not<Pred>::type );
199
200template< typename Pred >
201AUX778076_ASSERT_ARG(assert<false>)
202assert_not_arg( void (*)(Pred), typename assert_arg_pred<Pred>::type );
203
204
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700205#else // NDNBOOST_MPL_CFG_ASSERT_BROKEN_POINTER_TO_POINTER_TO_MEMBER
Jeff Thompsona28eed82013-08-22 16:21:10 -0700206
207template< bool c, typename Pred > struct assert_arg_type_impl
208{
209 typedef failed ************ Pred::* mwcw83_wknd;
210 typedef mwcw83_wknd ************* type;
211};
212
213template< typename Pred > struct assert_arg_type_impl<true,Pred>
214{
215 typedef AUX778076_ASSERT_ARG(assert<false>) type;
216};
217
218template< typename Pred > struct assert_arg_type
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700219 : assert_arg_type_impl< NDNBOOST_MPL_AUX_VALUE_WKND(NDNBOOST_MPL_AUX_NESTED_TYPE_WKND(Pred))::value, Pred >
Jeff Thompsona28eed82013-08-22 16:21:10 -0700220{
221};
222
223template< typename Pred >
224typename assert_arg_type<Pred>::type
225assert_arg(void (*)(Pred), int);
226
227template< typename Pred >
228typename assert_arg_type< ndnboost::mpl::not_<Pred> >::type
229assert_not_arg(void (*)(Pred), int);
230
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700231# if !defined(NDNBOOST_MPL_CFG_ASSERT_USE_RELATION_NAMES)
Jeff Thompsona28eed82013-08-22 16:21:10 -0700232template< long x, long y, bool (*r)(failed, failed) >
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700233typename assert_arg_type_impl< false,NDNBOOST_MPL_AUX_ASSERT_RELATION(x,y,r) >::type
234assert_rel_arg( NDNBOOST_MPL_AUX_ASSERT_RELATION(x,y,r) );
Jeff Thompsona28eed82013-08-22 16:21:10 -0700235# else
236template< assert_::relations r, long x, long y >
237typename assert_arg_type_impl< false,assert_relation<r,x,y> >::type
238assert_rel_arg( assert_relation<r,x,y> );
239# endif
240
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700241#endif // NDNBOOST_MPL_CFG_ASSERT_BROKEN_POINTER_TO_POINTER_TO_MEMBER
Jeff Thompsona28eed82013-08-22 16:21:10 -0700242
243#undef AUX778076_ASSERT_ARG
244
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700245NDNBOOST_MPL_AUX_ADL_BARRIER_NAMESPACE_CLOSE
Jeff Thompsona28eed82013-08-22 16:21:10 -0700246
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700247#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, == 1700)
Jeff Thompsona28eed82013-08-22 16:21:10 -0700248
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700249// NDNBOOST_MPL_ASSERT((pred<x,...>))
Jeff Thompsona28eed82013-08-22 16:21:10 -0700250
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700251#define NDNBOOST_MPL_ASSERT(pred) \
252NDNBOOST_MPL_AUX_ASSERT_CONSTANT( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700253 std::size_t \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700254 , NDNBOOST_PP_CAT(mpl_assertion_in_line_,NDNBOOST_MPL_AUX_PP_COUNTER()) = sizeof( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700255 ndnboost::mpl::assertion_failed<false>( \
256 ndnboost::mpl::make_assert_arg< \
257 typename ndnboost::mpl::eval_assert<void pred>::type \
258 >() \
259 ) \
260 ) \
261 ) \
262/**/
263
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700264// NDNBOOST_MPL_ASSERT_NOT((pred<x,...>))
Jeff Thompsona28eed82013-08-22 16:21:10 -0700265
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700266#define NDNBOOST_MPL_ASSERT_NOT(pred) \
267NDNBOOST_MPL_AUX_ASSERT_CONSTANT( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700268 std::size_t \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700269 , NDNBOOST_PP_CAT(mpl_assertion_in_line_,NDNBOOST_MPL_AUX_PP_COUNTER()) = sizeof( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700270 ndnboost::mpl::assertion_failed<false>( \
271 ndnboost::mpl::make_assert_arg< \
272 typename ndnboost::mpl::eval_assert_not<void pred>::type \
273 >() \
274 ) \
275 ) \
276 ) \
277/**/
278
279#else
280
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700281// NDNBOOST_MPL_ASSERT((pred<x,...>))
Jeff Thompsona28eed82013-08-22 16:21:10 -0700282
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700283#define NDNBOOST_MPL_ASSERT(pred) \
284NDNBOOST_MPL_AUX_ASSERT_CONSTANT( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700285 std::size_t \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700286 , NDNBOOST_PP_CAT(mpl_assertion_in_line_,NDNBOOST_MPL_AUX_PP_COUNTER()) = sizeof( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700287 ndnboost::mpl::assertion_failed<false>( \
288 ndnboost::mpl::assert_arg( (void (*) pred)0, 1 ) \
289 ) \
290 ) \
291 ) \
292/**/
293
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700294// NDNBOOST_MPL_ASSERT_NOT((pred<x,...>))
Jeff Thompsona28eed82013-08-22 16:21:10 -0700295
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700296#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, <= 1300)
297# define NDNBOOST_MPL_ASSERT_NOT(pred) \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700298enum { \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700299 NDNBOOST_PP_CAT(mpl_assertion_in_line_,NDNBOOST_MPL_AUX_PP_COUNTER()) = sizeof( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700300 ndnboost::mpl::assertion<false>::failed( \
301 ndnboost::mpl::assert_not_arg( (void (*) pred)0, 1 ) \
302 ) \
303 ) \
304}\
305/**/
306#else
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700307# define NDNBOOST_MPL_ASSERT_NOT(pred) \
308NDNBOOST_MPL_AUX_ASSERT_CONSTANT( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700309 std::size_t \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700310 , NDNBOOST_PP_CAT(mpl_assertion_in_line_,NDNBOOST_MPL_AUX_PP_COUNTER()) = sizeof( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700311 ndnboost::mpl::assertion_failed<false>( \
312 ndnboost::mpl::assert_not_arg( (void (*) pred)0, 1 ) \
313 ) \
314 ) \
315 ) \
316/**/
317#endif
318
319#endif
320
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700321// NDNBOOST_MPL_ASSERT_RELATION(x, ==|!=|<=|<|>=|>, y)
Jeff Thompsona28eed82013-08-22 16:21:10 -0700322
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700323#if defined(NDNBOOST_MPL_CFG_ASSERT_USE_RELATION_NAMES)
Jeff Thompsona28eed82013-08-22 16:21:10 -0700324
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700325# if !defined(NDNBOOST_MPL_CFG_ASSERT_BROKEN_POINTER_TO_POINTER_TO_MEMBER)
Jeff Thompsona28eed82013-08-22 16:21:10 -0700326// agurt, 9/nov/06: 'enum' below is a workaround for gcc 4.0.4/4.1.1 bugs #29522 and #29518
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700327# define NDNBOOST_MPL_ASSERT_RELATION_IMPL(counter, x, rel, y) \
328enum { NDNBOOST_PP_CAT(mpl_assert_rel_value,counter) = (x rel y) }; \
329NDNBOOST_MPL_AUX_ASSERT_CONSTANT( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700330 std::size_t \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700331 , NDNBOOST_PP_CAT(mpl_assertion_in_line_,counter) = sizeof( \
332 ndnboost::mpl::assertion_failed<NDNBOOST_PP_CAT(mpl_assert_rel_value,counter)>( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700333 (ndnboost::mpl::failed ************ ( ndnboost::mpl::assert_relation< \
334 ndnboost::mpl::assert_::relations( sizeof( \
335 ndnboost::mpl::assert_::arg rel ndnboost::mpl::assert_::arg \
336 ) ) \
337 , x \
338 , y \
339 >::************)) 0 ) \
340 ) \
341 ) \
342/**/
343# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700344# define NDNBOOST_MPL_ASSERT_RELATION_IMPL(counter, x, rel, y) \
345NDNBOOST_MPL_AUX_ASSERT_CONSTANT( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700346 std::size_t \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700347 , NDNBOOST_PP_CAT(mpl_assert_rel,counter) = sizeof( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700348 ndnboost::mpl::assert_::arg rel ndnboost::mpl::assert_::arg \
349 ) \
350 ); \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700351NDNBOOST_MPL_AUX_ASSERT_CONSTANT( bool, NDNBOOST_PP_CAT(mpl_assert_rel_value,counter) = (x rel y) ); \
352NDNBOOST_MPL_AUX_ASSERT_CONSTANT( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700353 std::size_t \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700354 , NDNBOOST_PP_CAT(mpl_assertion_in_line_,counter) = sizeof( \
355 ndnboost::mpl::assertion_failed<NDNBOOST_PP_CAT(mpl_assert_rel_value,counter)>( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700356 ndnboost::mpl::assert_rel_arg( ndnboost::mpl::assert_relation< \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700357 ndnboost::mpl::assert_::relations(NDNBOOST_PP_CAT(mpl_assert_rel,counter)) \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700358 , x \
359 , y \
360 >() ) \
361 ) \
362 ) \
363 ) \
364/**/
365# endif
366
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700367# define NDNBOOST_MPL_ASSERT_RELATION(x, rel, y) \
368NDNBOOST_MPL_ASSERT_RELATION_IMPL(NDNBOOST_MPL_AUX_PP_COUNTER(), x, rel, y) \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700369/**/
370
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700371#else // !NDNBOOST_MPL_CFG_ASSERT_USE_RELATION_NAMES
Jeff Thompsona28eed82013-08-22 16:21:10 -0700372
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700373# if defined(NDNBOOST_MPL_CFG_ASSERT_BROKEN_POINTER_TO_POINTER_TO_MEMBER)
374# define NDNBOOST_MPL_ASSERT_RELATION(x, rel, y) \
375NDNBOOST_MPL_AUX_ASSERT_CONSTANT( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700376 std::size_t \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700377 , NDNBOOST_PP_CAT(mpl_assertion_in_line_,NDNBOOST_MPL_AUX_PP_COUNTER()) = sizeof( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700378 ndnboost::mpl::assertion_failed<(x rel y)>( ndnboost::mpl::assert_rel_arg( \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700379 ndnboost::mpl::NDNBOOST_MPL_AUX_ASSERT_RELATION(x,y,(&ndnboost::mpl::operator rel))() \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700380 ) ) \
381 ) \
382 ) \
383/**/
384# else
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700385# define NDNBOOST_MPL_ASSERT_RELATION(x, rel, y) \
386NDNBOOST_MPL_AUX_ASSERT_CONSTANT( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700387 std::size_t \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700388 , NDNBOOST_PP_CAT(mpl_assertion_in_line_,NDNBOOST_MPL_AUX_PP_COUNTER()) = sizeof( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700389 ndnboost::mpl::assertion_failed<(x rel y)>( (ndnboost::mpl::failed ************ ( \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700390 ndnboost::mpl::NDNBOOST_MPL_AUX_ASSERT_RELATION(x,y,(&ndnboost::mpl::operator rel))::************))0 ) \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700391 ) \
392 ) \
393/**/
394# endif
395
396#endif
397
398
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700399// NDNBOOST_MPL_ASSERT_MSG( (pred<x,...>::value), USER_PROVIDED_MESSAGE, (types<x,...>) )
Jeff Thompsona28eed82013-08-22 16:21:10 -0700400
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700401#if NDNBOOST_WORKAROUND(__MWERKS__, NDNBOOST_TESTED_AT(0x3202))
402# define NDNBOOST_MPL_ASSERT_MSG_IMPL( counter, c, msg, types_ ) \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700403struct msg; \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700404typedef struct NDNBOOST_PP_CAT(msg,counter) : ndnboost::mpl::assert_ \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700405{ \
406 using ndnboost::mpl::assert_::types; \
407 static ndnboost::mpl::failed ************ (msg::************ assert_arg()) types_ \
408 { return 0; } \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700409} NDNBOOST_PP_CAT(mpl_assert_arg,counter); \
410NDNBOOST_MPL_AUX_ASSERT_CONSTANT( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700411 std::size_t \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700412 , NDNBOOST_PP_CAT(mpl_assertion_in_line_,counter) = sizeof( \
413 ndnboost::mpl::assertion<(c)>::failed( NDNBOOST_PP_CAT(mpl_assert_arg,counter)::assert_arg() ) \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700414 ) \
415 ) \
416/**/
417#else
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700418# define NDNBOOST_MPL_ASSERT_MSG_IMPL( counter, c, msg, types_ ) \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700419struct msg; \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700420typedef struct NDNBOOST_PP_CAT(msg,counter) : ndnboost::mpl::assert_ \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700421{ \
422 static ndnboost::mpl::failed ************ (msg::************ assert_arg()) types_ \
423 { return 0; } \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700424} NDNBOOST_PP_CAT(mpl_assert_arg,counter); \
425NDNBOOST_MPL_AUX_ASSERT_CONSTANT( \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700426 std::size_t \
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700427 , NDNBOOST_PP_CAT(mpl_assertion_in_line_,counter) = sizeof( \
428 ndnboost::mpl::assertion_failed<(c)>( NDNBOOST_PP_CAT(mpl_assert_arg,counter)::assert_arg() ) \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700429 ) \
430 ) \
431/**/
432#endif
433
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700434#define NDNBOOST_MPL_ASSERT_MSG( c, msg, types_ ) \
435NDNBOOST_MPL_ASSERT_MSG_IMPL( NDNBOOST_MPL_AUX_PP_COUNTER(), c, msg, types_ ) \
Jeff Thompsona28eed82013-08-22 16:21:10 -0700436/**/
437
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700438#endif // NDNBOOST_MPL_ASSERT_HPP_INCLUDED