268d8905102afcd0a73798cd0376991d7b5f27ab
[senf.git] / senf / Packets / 80221Bundle / MIHMessageRegistry.hh
1 // $Id$
2 //
3 // Copyright (C) 2010
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 MIH Message-Registry public header */
25
26 #ifndef HH_SENF_Packets_80221Bundle_MIHMessageRegistry_
27 #define HH_SENF_Packets_80221Bundle_MIHMessageRegistry_ 1
28
29 // Custom includes
30 #include <boost/ptr_container/ptr_map.hpp>
31 #include <senf/Utils/singleton.hh>
32 #include <senf/Packets/Packets.hh>
33
34 #include "MIHMessageRegistry.ih"
35 //-/////////////////////////////////////////////////////////////////////////////////////////////////
36 namespace senf {
37
38     class MIHMessageRegistry
39         : public senf::singleton<MIHMessageRegistry>
40     {
41     public:
42         typedef boost::uint16_t key_t;
43
44         using senf::singleton<MIHMessageRegistry>::instance;
45         friend class senf::singleton<MIHMessageRegistry>;
46
47         template <typename MIHPacket>
48         struct RegistrationProxy {
49             RegistrationProxy();
50         };
51
52         template <typename MIHPacket>
53         void registerMessageType();
54
55         void validate(key_t messageId, senf::Packet message);
56
57     private:
58         typedef boost::ptr_map<key_t, detail::MIHMessageRegistry_EntryBase > Map;
59         Map map_;
60
61         MIHMessageRegistry() {};
62     };
63
64
65 #   define SENF_MIH_PACKET_REGISTRY_REGISTER( packet )                      \
66         SENF_PACKET_REGISTRY_REGISTER(                                      \
67             senf::MIHMessageRegistry, packet::type::MESSAGE_ID, packet )    \
68         namespace {                                                         \
69             senf::MIHMessageRegistry::RegistrationProxy< packet >           \
70             BOOST_PP_CAT(mihPacketRegistration_, __LINE__);                 \
71         }
72
73 }
74 //-/////////////////////////////////////////////////////////////////////////////////////////////////
75 //#include "MIHMessageRegistry.cci"
76 #include "MIHMessageRegistry.ct"
77 //#include "MIHMessageRegistry.cti"
78 #endif
79
80
81 \f
82 // Local Variables:
83 // mode: c++
84 // fill-column: 100
85 // c-file-style: "senf"
86 // indent-tabs-mode: nil
87 // ispell-local-dictionary: "american"
88 // compile-command: "scons -u test"
89 // comment-column: 40
90 // End: