Really fix termination status for boost unit tests
[senf.git] / Packets / PacketRegistry.ih
1 // $Id$
2 //
3 // Copyright (C) 2006 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.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 #ifndef IH_PacketRegistryImpl_
24 #define IH_PacketRegistryImpl_ 1
25
26 // Custom includes
27 #include "Packet.hh"
28 #include "DataPacket.hh"
29 #include "typeidvalue.hh"
30
31 ///////////////////////////////ih.p////////////////////////////////////////
32
33 namespace satcom {
34 namespace pkf {
35 namespace impl {
36
37     struct PkReg_Entry {
38         virtual void registerInterpreter(Packet const * p, 
39                                          Packet::iterator b, Packet::iterator e) = 0;
40         virtual Packet::ptr reinterpret(Packet * p) = 0;
41     };
42
43     template <class OtherPacket>
44     struct PkReg_EntryImpl
45         : public PkReg_Entry
46     {
47         virtual void registerInterpreter(Packet const * p, Packet::iterator b, Packet::iterator e);
48         virtual Packet::ptr reinterpret(Packet * p);
49     };
50
51
52     template <class KeyType>
53     class PacketRegistryImpl : private boost::noncopyable
54     {
55     public:
56         ///////////////////////////////////////////////////////////////////////////
57         // Types
58         
59         typedef KeyType key_t;
60
61         typedef impl::PkReg_Entry Entry;
62         
63         ///////////////////////////////////////////////////////////////////////////
64         ///\name Structors and default members
65         ///@{
66
67         // default default constructor
68         // no copy constructor
69         // no copy assignment
70         // default destructor
71         // no conversion constructors
72
73         ///@}
74         ///////////////////////////////////////////////////////////////////////////
75
76         template <class OtherPacket>
77         void registerPacket(key_t key);
78
79         key_t key(satcom::lib::TypeIdValue const & type);
80
81         Entry * lookup(key_t key);
82
83     protected:
84
85     private:
86         template <class OtherPacket>
87         static void registerInterpreter(Packet * p, Packet::iterator b, Packet::iterator e);
88
89         typedef boost::shared_ptr<Entry> Entry_ptr;
90         typedef std::map<key_t, Entry_ptr> PacketMap;
91         typedef std::map<satcom::lib::TypeIdValue, key_t> ReversePacketMap;
92
93         PacketMap registry_;
94         ReversePacketMap reverseRegistry_;
95     };
96
97     extern PkReg_EntryImpl<DataPacket> pkreg_dataEntry;
98
99 }}}
100
101 ///////////////////////////////ih.e////////////////////////////////////////
102 #endif
103
104 \f
105 // Local Variables:
106 // mode: c++
107 // c-file-style: "satcom"
108 // End: