Packets: BUGFIX: ensure complete interpreter chain in finalize()
[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 <boost/intrusive_ptr.hpp>
28 #include "typeidvalue.hh"
29
30 ///////////////////////////////ih.p////////////////////////////////////////
31
32 namespace senf {
33 namespace detail {
34
35     template <class PacketType>
36     struct PkReg_EntryImpl
37         : public PkReg_Entry
38     {
39         virtual PacketInterpreterBase::factory_t factory() const;
40     };
41
42     template <class KeyType>
43     class PacketRegistryImpl 
44         : private boost::noncopyable
45     {
46     public:
47         ///////////////////////////////////////////////////////////////////////////
48         // Types
49
50         typedef KeyType key_t;
51
52         typedef PkReg_Entry Entry;
53
54         ///////////////////////////////////////////////////////////////////////////
55         ///\name Structors and default members
56         ///@{
57
58         // default default constructor
59         // no copy constructor
60         // no copy assignment
61         // default destructor
62         // no conversion constructors
63
64         ///@}
65         ///////////////////////////////////////////////////////////////////////////
66
67         template <class PacketType>
68         void registerPacket(key_t key);
69
70         key_t key(senf::TypeIdValue const & type);
71         boost::optional<key_t> key(senf::TypeIdValue const & type, bool);
72
73         Entry const & lookup(key_t key);
74         Entry const * lookup(key_t key, bool);
75
76     protected:
77
78     private:
79         typedef boost::intrusive_ptr<Entry> Entry_ptr;
80         typedef std::map<key_t, Entry_ptr> PacketMap;
81         typedef std::map<senf::TypeIdValue, key_t> ReversePacketMap;
82
83         PacketMap registry_;
84         ReversePacketMap reverseRegistry_;
85     };
86
87 }}
88
89 ///////////////////////////////ih.e////////////////////////////////////////
90 #endif
91
92 \f
93 // Local Variables:
94 // mode: c++
95 // fill-column: 100
96 // c-file-style: "senf"
97 // indent-tabs-mode: nil
98 // ispell-local-dictionary: "american"
99 // compile-command: "scons -u test"
100 // comment-column: 40
101 // End: