Packets: first steps for a generic TLV base class
[senf.git] / senf / Packets / GenericTLV.hh
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 public header */
25
26 #ifndef HH_SENF_Packets_GenericTLV_
27 #define HH_SENF_Packets_GenericTLV_ 1
28
29 // Custom includes
30 #include <senf/Packets/Packets.hh>
31 #include <senf/Utils/type_traits.hh>
32
33 //#include "GenericTLV.hh.mpp"
34 ///////////////////////////////hh.p////////////////////////////////////////
35
36 namespace senf {
37  
38     template <class Base>
39     class GenericTLVParserBase : public Base
40     {
41     public:
42         GenericTLVParserBase(senf::PacketParserBase::data_iterator i, senf::PacketParserBase::state_type s) 
43             : Base(i,s) {}
44     
45         senf::PacketParserBase::size_type bytes();
46         void init() const;
47
48         template <class Parser>
49         Parser init();
50         
51         template <class Parser>
52         Parser as();
53         
54         template <class Parser>
55         bool is();
56
57         senf::PacketInterpreterBase::range value() const;
58         
59         template<class ForwardReadableRange>
60         void value(ForwardReadableRange const & val,
61                 typename boost::disable_if<senf::is_pair<ForwardReadableRange> >::type * = 0);
62
63         template<class First, class Second>
64         void value(std::pair<First, Second> const & val,
65                 typename boost::disable_if<boost::is_convertible<First, typename Base::type_t::value_type> >::type * = 0);
66
67         template <class Type, class ForwardReadableRange>
68         void value(std::pair<Type, ForwardReadableRange> const & val,
69                 typename boost::enable_if<boost::is_convertible<Type, typename Base::type_t::value_type> >::type * = 0);        
70
71     private:
72         template<class ForwardReadableRange>
73         void value_(ForwardReadableRange const &range);
74     };
75 }
76
77
78 ///////////////////////////////hh.e////////////////////////////////////////
79 //#include "GenericTLV.cci"
80 #include "GenericTLV.ct"
81 #include "GenericTLV.cti"
82 #endif
83
84 \f
85 // Local Variables:
86 // mode: c++
87 // fill-column: 100
88 // comment-column: 40
89 // c-file-style: "senf"
90 // indent-tabs-mode: nil
91 // ispell-local-dictionary: "american"
92 // compile-command: "scons -u test"
93 // End: