f30cd9e9a295be8d9a2b38d8a25450ea400e2c77
[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 //-/////////////////////////////////////////////////////////////////////////////////////////////////
32
33 //-/////////////////////////////////////////////////////////////////////////////////////////////////
34 // senf::GenericTLVParserBase<Base>
35
36 template <class Base>
37 prefix_ senf::PacketParserBase::size_type senf::GenericTLVParserBase<Base>::bytes()
38     const
39 {
40     if (Base::Registry::instance().isRegistered( *this))
41         return Base::Registry::instance().bytes( *this);
42     else
43         return senf::bytes(self()) + this->length();
44 }
45
46 template <class Base>
47 prefix_ void senf::GenericTLVParserBase<Base>::init()
48     const
49 {
50     this->defaultInit();
51 }
52
53 template <class Base>
54 template <class Parser>
55 prefix_ Parser senf::GenericTLVParserBase<Base>::as()
56     const
57 {
58     return Parser(this->i(), this->state() );
59 }
60
61 template <class Base>
62 template <class Parser>
63 prefix_ bool senf::GenericTLVParserBase<Base>::is()
64     const
65 {
66     return this->type().value() == Parser::typeId;
67 }
68
69 template <class Base>
70 prefix_ Base & senf::GenericTLVParserBase<Base>::self()
71 {
72     return *static_cast<Base *>(this);
73 }
74
75 template <class Base>
76 prefix_ Base const & senf::GenericTLVParserBase<Base>::self()
77     const
78 {
79     return *static_cast<Base const *>(this);
80 }
81
82 #ifndef DOXYGEN
83
84 template <class Base>
85 template <class ForwardReadableRange>
86 prefix_ void senf::GenericTLVParserBase<Base>::value(
87         ForwardReadableRange const & val,
88         typename boost::disable_if<senf::is_pair<ForwardReadableRange> >::type *)
89 {
90     value_( val);
91 }
92
93 template <class Base>
94 template <class First, class Second>
95 prefix_ void senf::GenericTLVParserBase<Base>::value(
96         std::pair<First, Second> const & val,
97         typename boost::disable_if<boost::is_convertible<First, typename Base::type_t::value_type> >::type *)
98 {
99     value_( val);
100 }
101
102 template <class Base>
103 template <class Type, class ForwardReadableRange>
104 prefix_ void senf::GenericTLVParserBase<Base>::value(
105         std::pair<Type, ForwardReadableRange> const & val,
106         typename boost::enable_if<boost::is_convertible<Type, typename Base::type_t::value_type> >::type *)
107 {
108     this->type() = val.first;
109     value_( val.second);
110 }
111
112 #endif
113
114
115 //-/////////////////////////////////////////////////////////////////////////////////////////////////
116 // senf::detail:GenericTLVParserRegistry_Entry<BaseParser, Parser>
117
118 template <class BaseParser, class Parser>
119 prefix_ void senf::detail::GenericTLVParserRegistry_Entry<BaseParser, Parser>::dump(
120         GenericTLVParserBase<BaseParser> const & parser, std::ostream & os)
121     const
122 {
123     (parser.template as<Parser>()).dump(os);
124 }
125
126 template <class BaseParser, class Parser>
127 prefix_ senf::PacketParserBase::size_type
128 senf::detail::GenericTLVParserRegistry_Entry<BaseParser, Parser>::bytes(
129         GenericTLVParserBase<BaseParser> const & parser)
130     const
131 {
132     return senf::bytes( parser.template as<Parser>());
133 }
134
135 //-/////////////////////////////////////////////////////////////////////////////////////////////////
136 // senf::GenericTLVParserRegistry<BaseParser,Keytype>
137
138 template <class BaseParser, class Keytype>
139 prefix_ bool senf::GenericTLVParserRegistry<BaseParser,Keytype>::isRegistered(
140         GenericTLVParser const & parser)
141     const
142 {
143     typename Map::const_iterator i (map_.find( parser.type()));
144     return i != map_.end();
145 }
146
147 template <class BaseParser, class Keytype>
148 prefix_ bool senf::GenericTLVParserRegistry<BaseParser,Keytype>::isRegistered(Keytype const & key)
149     const
150 {
151     typename Map::const_iterator i (map_.find( key));
152     return i != map_.end();
153 }
154
155 //-/////////////////////////////////////////////////////////////////////////////////////////////////
156 // senf::GenericTLVParserRegistry<BaseParser,Keytype>::RegistrationProxy<PacketParser>
157
158 template <class BaseParser, class Keytype>
159 template <class PacketParser>
160 prefix_ senf::GenericTLVParserRegistry<BaseParser,Keytype>::RegistrationProxy<PacketParser>::RegistrationProxy()
161 {
162     GenericTLVParserRegistry<BaseParser,Keytype>::instance().registerParser<PacketParser>();
163 };
164
165 //-/////////////////////////////////////////////////////////////////////////////////////////////////
166 #undef prefix_
167
168 \f
169 // Local Variables:
170 // mode: c++
171 // fill-column: 100
172 // comment-column: 40
173 // c-file-style: "senf"
174 // indent-tabs-mode: nil
175 // ispell-local-dictionary: "american"
176 // compile-command: "scons -u test"
177 // End: