af9a6515e010c4cb38f77166a458214c86f2a8ff
[senf.git] / Packets / VariantParser.cti
1 // $Id$
2 //
3 // Copyright (C) 2007 
4 // Fraunhofer Institute for Open Communication Systems (FOKUS) 
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY 
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief VariantParser inline template implementation */
25
26 #include "VariantParser.ih"
27
28 // Custom includes
29 #include "../Utils/senfassert.hh"
30 #include <boost/mpl/size.hpp>
31
32 #define prefix_ inline
33 ///////////////////////////////cti.p///////////////////////////////////////
34
35 ///////////////////////////////////////////////////////////////////////////
36 // senf::VariantParser<VariantPolicy,SENF_PARSE_VARIANT_TPL_ARGS(P)>
37
38 template <class VariantPolicy, SENF_PARSE_VARIANT_TPL_ARGS(class P)>
39 prefix_ senf::VariantParser<VariantPolicy,SENF_PARSE_VARIANT_TPL_ARGS(P)>::
40 VariantParser(data_iterator i, state_type s)
41     : PacketParserBase(i,s)
42 {}
43
44 template <class VariantPolicy, SENF_PARSE_VARIANT_TPL_ARGS(class P)>
45 prefix_ senf::VariantParser<VariantPolicy,SENF_PARSE_VARIANT_TPL_ARGS(P)>::
46 VariantParser(VariantPolicy policy, data_iterator i, state_type s)
47     : PacketParserBase(i,s), VariantPolicy(policy)
48 {}
49
50 template <class VariantPolicy, SENF_PARSE_VARIANT_TPL_ARGS(class P)>
51 prefix_ senf::PacketParserBase::size_type
52 senf::VariantParser<VariantPolicy,SENF_PARSE_VARIANT_TPL_ARGS(P)>::bytes()
53     const
54 {
55     return detail::VariantBytes< VariantParser, boost::mpl::size<parsers>::value - 1 >
56         ::bytes(*this, variant()) + VariantPolicy::bytes(i(),state());
57 }
58
59 template <class VariantPolicy, SENF_PARSE_VARIANT_TPL_ARGS(class P)>
60 prefix_ void
61 senf::VariantParser<VariantPolicy,SENF_PARSE_VARIANT_TPL_ARGS(P)>::init()
62 {
63     VariantPolicy::variant(0,i(),state());
64     get<0>().init();
65 }
66
67 template <class VariantPolicy, SENF_PARSE_VARIANT_TPL_ARGS(class P)>
68 prefix_ unsigned senf::VariantParser<VariantPolicy,SENF_PARSE_VARIANT_TPL_ARGS(P)>::variant()
69     const
70 {
71     return VariantPolicy::variant(i(),state());
72 }
73
74 template <class VariantPolicy, SENF_PARSE_VARIANT_TPL_ARGS(class P)>
75 template <unsigned N>
76 prefix_ typename boost::mpl::at<
77     typename senf::VariantParser<VariantPolicy,SENF_PARSE_VARIANT_TPL_ARGS(P)>::parsers, 
78     boost::mpl::int_<N> >::type
79 senf::VariantParser<VariantPolicy,SENF_PARSE_VARIANT_TPL_ARGS(P)>::get()
80     const
81 {
82     SENF_ASSERT( variant() == N );
83     return typename boost::mpl::at<parsers, boost::mpl::int_<N> >::type(
84         VariantPolicy::begin(i(), state()), state() );
85 }
86
87 /////////////////////////////////////////////////////////////////////////
88 // senf::detail::VariantBytes<Variant,N>
89
90 template <class Variant, unsigned N>
91 prefix_ senf::PacketParserBase::size_type
92 senf::detail::VariantBytes<Variant,N>::bytes(Variant const & v, unsigned n)
93 {
94     if (n == N)
95         return senf::bytes(v.template get<N>());
96     else
97         return VariantBytes<Variant, N-1>::bytes(v, n);
98 }
99
100 template <class Variant>
101 prefix_ senf::PacketParserBase::size_type
102 senf::detail::VariantBytes<Variant,0>::bytes(Variant const & v, unsigned n)
103 {
104     return senf::bytes(v.template get<0>());
105 }
106
107 ///////////////////////////////cti.e///////////////////////////////////////
108 #undef prefix_
109
110 \f
111 // Local Variables:
112 // mode: c++
113 // fill-column: 100
114 // comment-column: 40
115 // c-file-style: "senf"
116 // indent-tabs-mode: nil
117 // ispell-local-dictionary: "american"
118 // compile-command: "scons -u test"
119 // End: