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