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