blob: 51c1e78871169069287aecdefff224123a75bcaf [file] [log] [blame]
Jeff Thompsona28eed82013-08-22 16:21:10 -07001
Jeff Thompson3d613fd2013-10-15 15:39:04 -07002#ifndef NDNBOOST_MPL_SEQUENCE_TAG_HPP_INCLUDED
3#define NDNBOOST_MPL_SEQUENCE_TAG_HPP_INCLUDED
Jeff Thompsona28eed82013-08-22 16:21:10 -07004
5// Copyright Aleksey Gurtovoy 2000-2004
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: sequence_tag.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
14// $Date: 2008-10-10 23:19:02 -0700 (Fri, 10 Oct 2008) $
15// $Revision: 49267 $
16
17#include <ndnboost/mpl/sequence_tag_fwd.hpp>
18#include <ndnboost/mpl/aux_/has_tag.hpp>
19#include <ndnboost/mpl/aux_/has_begin.hpp>
20#include <ndnboost/mpl/aux_/na_spec.hpp>
21#include <ndnboost/mpl/aux_/is_msvc_eti_arg.hpp>
22#include <ndnboost/mpl/aux_/config/eti.hpp>
23#include <ndnboost/mpl/aux_/yes_no.hpp>
24#include <ndnboost/mpl/aux_/config/workaround.hpp>
25
26namespace ndnboost { namespace mpl {
27
28// agurt, 27/nov/02: have to use a simplistic 'sequence_tag' implementation
29// on MSVC to avoid dreadful "internal structure overflow" error
Jeff Thompson3d613fd2013-10-15 15:39:04 -070030#if NDNBOOST_WORKAROUND(NDNBOOST_MSVC, < 1300) \
31 || defined(NDNBOOST_MPL_CFG_NO_HAS_XXX)
Jeff Thompsona28eed82013-08-22 16:21:10 -070032
33template<
Jeff Thompson3d613fd2013-10-15 15:39:04 -070034 typename NDNBOOST_MPL_AUX_NA_PARAM(Sequence)
Jeff Thompsona28eed82013-08-22 16:21:10 -070035 >
36struct sequence_tag
37{
38 typedef typename Sequence::tag type;
39};
40
Jeff Thompson3d613fd2013-10-15 15:39:04 -070041#elif NDNBOOST_WORKAROUND(NDNBOOST_MSVC, == 1300)
Jeff Thompsona28eed82013-08-22 16:21:10 -070042
43// agurt, 07/feb/03: workaround for what seems to be MSVC 7.0-specific ETI issue
44
45namespace aux {
46
47template< bool >
48struct sequence_tag_impl
49{
50 template< typename Sequence > struct result_
51 {
52 typedef typename Sequence::tag type;
53 };
54};
55
56template<>
57struct sequence_tag_impl<false>
58{
59 template< typename Sequence > struct result_
60 {
61 typedef int type;
62 };
63};
64
65} // namespace aux
66
67template<
Jeff Thompson3d613fd2013-10-15 15:39:04 -070068 typename NDNBOOST_MPL_AUX_NA_PARAM(Sequence)
Jeff Thompsona28eed82013-08-22 16:21:10 -070069 >
70struct sequence_tag
71 : aux::sequence_tag_impl< !aux::is_msvc_eti_arg<Sequence>::value >
72 ::template result_<Sequence>
73{
74};
75
76#else
77
78namespace aux {
79
80template< bool has_tag_, bool has_begin_ >
81struct sequence_tag_impl
82{
83 // agurt 24/nov/02: MSVC 6.5 gets confused in 'sequence_tag_impl<true>'
84 // specialization below, if we name it 'result_' here
85 template< typename Sequence > struct result2_;
86};
87
88# define AUX_CLASS_SEQUENCE_TAG_SPEC(has_tag, has_begin, result_type) \
89template<> struct sequence_tag_impl<has_tag,has_begin> \
90{ \
91 template< typename Sequence > struct result2_ \
92 { \
93 typedef result_type type; \
94 }; \
95}; \
96/**/
97
98AUX_CLASS_SEQUENCE_TAG_SPEC(true, true, typename Sequence::tag)
99AUX_CLASS_SEQUENCE_TAG_SPEC(true, false, typename Sequence::tag)
100AUX_CLASS_SEQUENCE_TAG_SPEC(false, true, nested_begin_end_tag)
101AUX_CLASS_SEQUENCE_TAG_SPEC(false, false, non_sequence_tag)
102
103# undef AUX_CLASS_SEQUENCE_TAG_SPEC
104
105} // namespace aux
106
107template<
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700108 typename NDNBOOST_MPL_AUX_NA_PARAM(Sequence)
Jeff Thompsona28eed82013-08-22 16:21:10 -0700109 >
110struct sequence_tag
111 : aux::sequence_tag_impl<
112 ::ndnboost::mpl::aux::has_tag<Sequence>::value
113 , ::ndnboost::mpl::aux::has_begin<Sequence>::value
114 >::template result2_<Sequence>
115{
116};
117
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700118#endif // NDNBOOST_MSVC
Jeff Thompsona28eed82013-08-22 16:21:10 -0700119
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700120NDNBOOST_MPL_AUX_NA_SPEC(1, sequence_tag)
Jeff Thompsona28eed82013-08-22 16:21:10 -0700121
122}}
123
Jeff Thompson3d613fd2013-10-15 15:39:04 -0700124#endif // NDNBOOST_MPL_SEQUENCE_TAG_HPP_INCLUDED