Packets/GenericTLV: fix for dynamic size length fields (doh)
[senf.git] / senf / Packets / GenericTLV.cti
1 // $Id$
2 //
3 // Copyright (C) 2009
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Thorsten Horstmann <tho@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 GenericTLV inline template implementation */
25
26 //#include "GenericTLV.ih"
27
28 // Custom includes
29
30 #define prefix_ inline
31 ///////////////////////////////cti.p///////////////////////////////////////
32
33 template <class Base>
34 prefix_ senf::PacketParserBase::size_type senf::GenericTLVParserBase<Base>::bytes()
35 {
36     return senf::bytes(self()) + this->length();
37 }
38
39 template <class Base>
40 prefix_ void senf::GenericTLVParserBase<Base>::init()
41     const
42 {
43     this->defaultInit();
44 }
45
46 template <class Base>
47 template <class Parser>
48 prefix_ Parser senf::GenericTLVParserBase<Base>::as()
49 {
50     return Parser(this->i(), this->state() );
51 }
52
53 template <class Base>
54 template <class Parser>
55 prefix_ bool senf::GenericTLVParserBase<Base>::is()
56 {
57     return this->type().value() == Parser::TYPEID;
58 }
59
60 template <class Base>
61 prefix_ Base & senf::GenericTLVParserBase<Base>::self()
62 {
63     return *static_cast<Base *>(this);
64 }
65
66 template <class Base>
67 prefix_ Base const & senf::GenericTLVParserBase<Base>::self()
68     const
69 {
70     return *static_cast<Base const *>(this);
71 }
72
73 #ifndef DOXYGEN
74
75 template <class Base>
76 template <class ForwardReadableRange>
77 prefix_ void senf::GenericTLVParserBase<Base>::value(
78         ForwardReadableRange const & val,
79         typename boost::disable_if<senf::is_pair<ForwardReadableRange> >::type *)
80
81     value_( val); 
82 }
83
84 template <class Base>
85 template <class First, class Second>
86 prefix_ void senf::GenericTLVParserBase<Base>::value(
87         std::pair<First, Second> const & val,
88         typename boost::disable_if<boost::is_convertible<First, typename Base::type_t::value_type> >::type *)
89
90     value_( val); 
91 }
92
93 template <class Base>
94 template <class Type, class ForwardReadableRange>
95 prefix_ void senf::GenericTLVParserBase<Base>::value(
96         std::pair<Type, ForwardReadableRange> const & val,
97         typename boost::enable_if<boost::is_convertible<Type, typename Base::type_t::value_type> >::type *)
98
99     this->type() = val.first;
100     value_( val.second); 
101 }
102
103 #endif
104
105 ///////////////////////////////cti.e///////////////////////////////////////
106 #undef prefix_
107
108 \f
109 // Local Variables:
110 // mode: c++
111 // fill-column: 100
112 // comment-column: 40
113 // c-file-style: "senf"
114 // indent-tabs-mode: nil
115 // ispell-local-dictionary: "american"
116 // compile-command: "scons -u test"
117 // End: