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