2007-10-21 00:52:09 +00:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2001-2007 Joel de Guzman
|
|
|
|
Copyright (c) 2007 Dan Marsden
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
==============================================================================*/
|
|
|
|
#if !defined(BOOST_FUSION_ADAPT_ASSOC_STRUCT_20070508_2207)
|
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_STRUCT_20070508_2207
|
|
|
|
|
|
|
|
#include <boost/fusion/support/tag_of_fwd.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/extension.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/struct_iterator.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/is_view_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/is_sequence_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/category_of_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/begin_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/end_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/size_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/at_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/value_at_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/has_key_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/at_key_impl.hpp>
|
|
|
|
#include <boost/fusion/adapted/struct/detail/value_at_key_impl.hpp>
|
|
|
|
|
|
|
|
#include <boost/preprocessor/cat.hpp>
|
|
|
|
#include <boost/preprocessor/punctuation/comma_if.hpp>
|
|
|
|
#include <boost/preprocessor/seq/for_each_i.hpp>
|
|
|
|
#include <boost/preprocessor/tuple/elem.hpp>
|
|
|
|
#include <boost/preprocessor/repetition/enum_params_with_a_default.hpp>
|
|
|
|
#include <boost/preprocessor/repetition/enum_params.hpp>
|
|
|
|
#include <boost/preprocessor/cat.hpp>
|
|
|
|
#include <boost/mpl/int.hpp>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
namespace boost { namespace fusion { namespace extension {
|
|
|
|
template<typename Struct, typename Key>
|
|
|
|
struct struct_assoc_member;
|
|
|
|
}}}
|
|
|
|
|
|
|
|
|
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_STRUCT(name, bseq) \
|
|
|
|
BOOST_FUSION_ADAPT_ASSOC_STRUCT_I( \
|
|
|
|
name, BOOST_PP_CAT(BOOST_FUSION_ADAPT_ASSOC_STRUCT_X bseq, 0)) \
|
|
|
|
/***/
|
|
|
|
|
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_STRUCT_X(x, y, z) ((x, y, z)) BOOST_FUSION_ADAPT_ASSOC_STRUCT_Y
|
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_STRUCT_Y(x, y, z) ((x, y, z)) BOOST_FUSION_ADAPT_ASSOC_STRUCT_X
|
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_STRUCT_X0
|
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_STRUCT_Y0
|
|
|
|
|
|
|
|
// BOOST_FUSION_ADAPT_ASSOC_STRUCT_I generates the overarching structure and uses
|
|
|
|
// SEQ_FOR_EACH_I to generate the "linear" substructures.
|
|
|
|
// Thanks to Paul Mensonides for the PP macro help
|
|
|
|
|
Merged revisions 42067-42179 via svnmerge from
https://svn.boost.org/svn/boost/trunk
........
r42067 | johnmaddock | 2007-12-15 04:32:18 -0800 (Sat, 15 Dec 2007) | 1 line
MSVC warning suppression.
........
r42069 | bemandawes | 2007-12-15 06:26:16 -0800 (Sat, 15 Dec 2007) | 1 line
Correct misspelling of library name
........
r42074 | johnmaddock | 2007-12-15 09:10:03 -0800 (Sat, 15 Dec 2007) | 1 line
Fix error messages so they work with Boost.Format.
........
r42076 | johnmaddock | 2007-12-15 09:36:31 -0800 (Sat, 15 Dec 2007) | 1 line
Trivial patches to silence MSVC warnings.
........
r42078 | johnmaddock | 2007-12-15 10:29:29 -0800 (Sat, 15 Dec 2007) | 1 line
Disable long double tests if there's no long double support.
........
r42080 | johnmaddock | 2007-12-15 10:49:13 -0800 (Sat, 15 Dec 2007) | 1 line
Yet another MSVC warning suppression.
........
r42082 | bgubenko | 2007-12-15 10:53:01 -0800 (Sat, 15 Dec 2007) | 1 line
mark up Boost.Test tests for Linux ia64 gcc; make Boost.Interprocess unsupported on Linux ia64 gcc and PA-RISC
........
r42086 | anthonyw | 2007-12-15 14:34:30 -0800 (Sat, 15 Dec 2007) | 1 line
added timed_wait overloads that take a duration
........
r42087 | anthonyw | 2007-12-15 14:36:43 -0800 (Sat, 15 Dec 2007) | 1 line
explicit move functions for threads, with a test
........
r42105 | andreas_huber69 | 2007-12-16 06:58:24 -0800 (Sun, 16 Dec 2007) | 1 line
Removed markup for now passing Sandia tests.
........
r42112 | bemandawes | 2007-12-16 14:39:32 -0800 (Sun, 16 Dec 2007) | 1 line
Add intel-win-10.0 as required
........
r42116 | djowel | 2007-12-17 01:27:42 -0800 (Mon, 17 Dec 2007) | 1 line
fixed documentation bug
........
r42117 | anthonyw | 2007-12-17 03:24:13 -0800 (Mon, 17 Dec 2007) | 1 line
Updated move function test to be fair to Borland
........
r42118 | anthonyw | 2007-12-17 04:52:50 -0800 (Mon, 17 Dec 2007) | 1 line
boost::move support for locks
........
r42119 | chris_kohlhoff | 2007-12-17 05:04:30 -0800 (Mon, 17 Dec 2007) | 2 lines
Fixes for older HP-UX.
........
r42120 | chris_kohlhoff | 2007-12-17 05:08:10 -0800 (Mon, 17 Dec 2007) | 2 lines
Bump version number.
........
r42121 | chris_kohlhoff | 2007-12-17 05:17:46 -0800 (Mon, 17 Dec 2007) | 2 lines
Documentation fixes.
........
r42127 | bgubenko | 2007-12-17 10:06:11 -0800 (Mon, 17 Dec 2007) | 1 line
markup test library test prg_exec_fail2 for PA-RISC
........
r42138 | johnmaddock | 2007-12-18 08:37:23 -0800 (Tue, 18 Dec 2007) | 1 line
Fixes #1525.
........
r42141 | marshall | 2007-12-18 10:33:55 -0800 (Tue, 18 Dec 2007) | 1 line
Patches to fixe #1423 and #1473
........
r42145 | fmhess | 2007-12-18 12:14:01 -0800 (Tue, 18 Dec 2007) | 4 lines
Prevented "classname"/"methodname"/etc. elements inside "type" elements
inside "static-constant" elements from getting dropped.
........
r42164 | djowel | 2007-12-19 02:33:14 -0800 (Wed, 19 Dec 2007) | 1 line
bug fix for end_impl.
........
r42165 | djowel | 2007-12-19 02:33:39 -0800 (Wed, 19 Dec 2007) | 1 line
bug fix for end_impl. (test)
........
r42166 | anthonyw | 2007-12-19 02:39:45 -0800 (Wed, 19 Dec 2007) | 1 line
Updated thread ID, and added tests
........
r42167 | djowel | 2007-12-19 02:42:04 -0800 (Wed, 19 Dec 2007) | 1 line
tweakbug fix for end_impl (tweak).
........
r42168 | anthonyw | 2007-12-19 02:45:01 -0800 (Wed, 19 Dec 2007) | 1 line
Implement hardware_concurrency for pthread
........
r42169 | johnmaddock | 2007-12-19 08:41:54 -0800 (Wed, 19 Dec 2007) | 1 line
Fix graph title.
........
[SVN r42185]
2007-12-19 22:46:16 +00:00
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_STRUCT_I(name, seq) \
|
2007-10-21 00:52:09 +00:00
|
|
|
namespace boost { namespace fusion { namespace traits \
|
|
|
|
{ \
|
|
|
|
template <> \
|
|
|
|
struct tag_of<name> \
|
|
|
|
{ \
|
|
|
|
typedef struct_tag type; \
|
|
|
|
}; \
|
|
|
|
}}} \
|
|
|
|
namespace boost { namespace fusion { namespace extension \
|
|
|
|
{ \
|
|
|
|
template <> \
|
|
|
|
struct struct_size<name> : mpl::int_<BOOST_PP_SEQ_SIZE(seq)> {}; \
|
Merged revisions 42067-42179 via svnmerge from
https://svn.boost.org/svn/boost/trunk
........
r42067 | johnmaddock | 2007-12-15 04:32:18 -0800 (Sat, 15 Dec 2007) | 1 line
MSVC warning suppression.
........
r42069 | bemandawes | 2007-12-15 06:26:16 -0800 (Sat, 15 Dec 2007) | 1 line
Correct misspelling of library name
........
r42074 | johnmaddock | 2007-12-15 09:10:03 -0800 (Sat, 15 Dec 2007) | 1 line
Fix error messages so they work with Boost.Format.
........
r42076 | johnmaddock | 2007-12-15 09:36:31 -0800 (Sat, 15 Dec 2007) | 1 line
Trivial patches to silence MSVC warnings.
........
r42078 | johnmaddock | 2007-12-15 10:29:29 -0800 (Sat, 15 Dec 2007) | 1 line
Disable long double tests if there's no long double support.
........
r42080 | johnmaddock | 2007-12-15 10:49:13 -0800 (Sat, 15 Dec 2007) | 1 line
Yet another MSVC warning suppression.
........
r42082 | bgubenko | 2007-12-15 10:53:01 -0800 (Sat, 15 Dec 2007) | 1 line
mark up Boost.Test tests for Linux ia64 gcc; make Boost.Interprocess unsupported on Linux ia64 gcc and PA-RISC
........
r42086 | anthonyw | 2007-12-15 14:34:30 -0800 (Sat, 15 Dec 2007) | 1 line
added timed_wait overloads that take a duration
........
r42087 | anthonyw | 2007-12-15 14:36:43 -0800 (Sat, 15 Dec 2007) | 1 line
explicit move functions for threads, with a test
........
r42105 | andreas_huber69 | 2007-12-16 06:58:24 -0800 (Sun, 16 Dec 2007) | 1 line
Removed markup for now passing Sandia tests.
........
r42112 | bemandawes | 2007-12-16 14:39:32 -0800 (Sun, 16 Dec 2007) | 1 line
Add intel-win-10.0 as required
........
r42116 | djowel | 2007-12-17 01:27:42 -0800 (Mon, 17 Dec 2007) | 1 line
fixed documentation bug
........
r42117 | anthonyw | 2007-12-17 03:24:13 -0800 (Mon, 17 Dec 2007) | 1 line
Updated move function test to be fair to Borland
........
r42118 | anthonyw | 2007-12-17 04:52:50 -0800 (Mon, 17 Dec 2007) | 1 line
boost::move support for locks
........
r42119 | chris_kohlhoff | 2007-12-17 05:04:30 -0800 (Mon, 17 Dec 2007) | 2 lines
Fixes for older HP-UX.
........
r42120 | chris_kohlhoff | 2007-12-17 05:08:10 -0800 (Mon, 17 Dec 2007) | 2 lines
Bump version number.
........
r42121 | chris_kohlhoff | 2007-12-17 05:17:46 -0800 (Mon, 17 Dec 2007) | 2 lines
Documentation fixes.
........
r42127 | bgubenko | 2007-12-17 10:06:11 -0800 (Mon, 17 Dec 2007) | 1 line
markup test library test prg_exec_fail2 for PA-RISC
........
r42138 | johnmaddock | 2007-12-18 08:37:23 -0800 (Tue, 18 Dec 2007) | 1 line
Fixes #1525.
........
r42141 | marshall | 2007-12-18 10:33:55 -0800 (Tue, 18 Dec 2007) | 1 line
Patches to fixe #1423 and #1473
........
r42145 | fmhess | 2007-12-18 12:14:01 -0800 (Tue, 18 Dec 2007) | 4 lines
Prevented "classname"/"methodname"/etc. elements inside "type" elements
inside "static-constant" elements from getting dropped.
........
r42164 | djowel | 2007-12-19 02:33:14 -0800 (Wed, 19 Dec 2007) | 1 line
bug fix for end_impl.
........
r42165 | djowel | 2007-12-19 02:33:39 -0800 (Wed, 19 Dec 2007) | 1 line
bug fix for end_impl. (test)
........
r42166 | anthonyw | 2007-12-19 02:39:45 -0800 (Wed, 19 Dec 2007) | 1 line
Updated thread ID, and added tests
........
r42167 | djowel | 2007-12-19 02:42:04 -0800 (Wed, 19 Dec 2007) | 1 line
tweakbug fix for end_impl (tweak).
........
r42168 | anthonyw | 2007-12-19 02:45:01 -0800 (Wed, 19 Dec 2007) | 1 line
Implement hardware_concurrency for pthread
........
r42169 | johnmaddock | 2007-12-19 08:41:54 -0800 (Wed, 19 Dec 2007) | 1 line
Fix graph title.
........
[SVN r42185]
2007-12-19 22:46:16 +00:00
|
|
|
BOOST_PP_SEQ_FOR_EACH_I(BOOST_FUSION_ADAPT_ASSOC_STRUCT_C, name, seq) \
|
2007-10-21 00:52:09 +00:00
|
|
|
}}} \
|
|
|
|
/***/
|
|
|
|
|
Merged revisions 42067-42179 via svnmerge from
https://svn.boost.org/svn/boost/trunk
........
r42067 | johnmaddock | 2007-12-15 04:32:18 -0800 (Sat, 15 Dec 2007) | 1 line
MSVC warning suppression.
........
r42069 | bemandawes | 2007-12-15 06:26:16 -0800 (Sat, 15 Dec 2007) | 1 line
Correct misspelling of library name
........
r42074 | johnmaddock | 2007-12-15 09:10:03 -0800 (Sat, 15 Dec 2007) | 1 line
Fix error messages so they work with Boost.Format.
........
r42076 | johnmaddock | 2007-12-15 09:36:31 -0800 (Sat, 15 Dec 2007) | 1 line
Trivial patches to silence MSVC warnings.
........
r42078 | johnmaddock | 2007-12-15 10:29:29 -0800 (Sat, 15 Dec 2007) | 1 line
Disable long double tests if there's no long double support.
........
r42080 | johnmaddock | 2007-12-15 10:49:13 -0800 (Sat, 15 Dec 2007) | 1 line
Yet another MSVC warning suppression.
........
r42082 | bgubenko | 2007-12-15 10:53:01 -0800 (Sat, 15 Dec 2007) | 1 line
mark up Boost.Test tests for Linux ia64 gcc; make Boost.Interprocess unsupported on Linux ia64 gcc and PA-RISC
........
r42086 | anthonyw | 2007-12-15 14:34:30 -0800 (Sat, 15 Dec 2007) | 1 line
added timed_wait overloads that take a duration
........
r42087 | anthonyw | 2007-12-15 14:36:43 -0800 (Sat, 15 Dec 2007) | 1 line
explicit move functions for threads, with a test
........
r42105 | andreas_huber69 | 2007-12-16 06:58:24 -0800 (Sun, 16 Dec 2007) | 1 line
Removed markup for now passing Sandia tests.
........
r42112 | bemandawes | 2007-12-16 14:39:32 -0800 (Sun, 16 Dec 2007) | 1 line
Add intel-win-10.0 as required
........
r42116 | djowel | 2007-12-17 01:27:42 -0800 (Mon, 17 Dec 2007) | 1 line
fixed documentation bug
........
r42117 | anthonyw | 2007-12-17 03:24:13 -0800 (Mon, 17 Dec 2007) | 1 line
Updated move function test to be fair to Borland
........
r42118 | anthonyw | 2007-12-17 04:52:50 -0800 (Mon, 17 Dec 2007) | 1 line
boost::move support for locks
........
r42119 | chris_kohlhoff | 2007-12-17 05:04:30 -0800 (Mon, 17 Dec 2007) | 2 lines
Fixes for older HP-UX.
........
r42120 | chris_kohlhoff | 2007-12-17 05:08:10 -0800 (Mon, 17 Dec 2007) | 2 lines
Bump version number.
........
r42121 | chris_kohlhoff | 2007-12-17 05:17:46 -0800 (Mon, 17 Dec 2007) | 2 lines
Documentation fixes.
........
r42127 | bgubenko | 2007-12-17 10:06:11 -0800 (Mon, 17 Dec 2007) | 1 line
markup test library test prg_exec_fail2 for PA-RISC
........
r42138 | johnmaddock | 2007-12-18 08:37:23 -0800 (Tue, 18 Dec 2007) | 1 line
Fixes #1525.
........
r42141 | marshall | 2007-12-18 10:33:55 -0800 (Tue, 18 Dec 2007) | 1 line
Patches to fixe #1423 and #1473
........
r42145 | fmhess | 2007-12-18 12:14:01 -0800 (Tue, 18 Dec 2007) | 4 lines
Prevented "classname"/"methodname"/etc. elements inside "type" elements
inside "static-constant" elements from getting dropped.
........
r42164 | djowel | 2007-12-19 02:33:14 -0800 (Wed, 19 Dec 2007) | 1 line
bug fix for end_impl.
........
r42165 | djowel | 2007-12-19 02:33:39 -0800 (Wed, 19 Dec 2007) | 1 line
bug fix for end_impl. (test)
........
r42166 | anthonyw | 2007-12-19 02:39:45 -0800 (Wed, 19 Dec 2007) | 1 line
Updated thread ID, and added tests
........
r42167 | djowel | 2007-12-19 02:42:04 -0800 (Wed, 19 Dec 2007) | 1 line
tweakbug fix for end_impl (tweak).
........
r42168 | anthonyw | 2007-12-19 02:45:01 -0800 (Wed, 19 Dec 2007) | 1 line
Implement hardware_concurrency for pthread
........
r42169 | johnmaddock | 2007-12-19 08:41:54 -0800 (Wed, 19 Dec 2007) | 1 line
Fix graph title.
........
[SVN r42185]
2007-12-19 22:46:16 +00:00
|
|
|
#define BOOST_FUSION_ADAPT_ASSOC_STRUCT_C(r, name, i, xy) \
|
2007-10-21 00:52:09 +00:00
|
|
|
template <> \
|
|
|
|
struct struct_member<name, i> \
|
|
|
|
{ \
|
|
|
|
typedef BOOST_PP_TUPLE_ELEM(3, 0, xy) type; \
|
|
|
|
static type& call(name& struct_) \
|
|
|
|
{ \
|
|
|
|
return struct_.BOOST_PP_TUPLE_ELEM(3, 1, xy); \
|
|
|
|
}; \
|
|
|
|
}; \
|
|
|
|
template<> \
|
|
|
|
struct struct_assoc_member<name, BOOST_PP_TUPLE_ELEM(3, 2, xy)> \
|
|
|
|
{ \
|
|
|
|
typedef BOOST_PP_TUPLE_ELEM(3, 0, xy) type; \
|
|
|
|
static type& call(name& struct_) \
|
|
|
|
{ \
|
|
|
|
return struct_.BOOST_PP_TUPLE_ELEM(3, 1, xy); \
|
|
|
|
}; \
|
|
|
|
};
|
|
|
|
/***/
|
|
|
|
|
|
|
|
#endif
|