Packets/80221Bundle: revised signature of validate function
[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.mpp"
35 //-/////////////////////////////////////////////////////////////////////////////////////////////////
36
37 namespace senf {
38
39     namespace detail {
40
41         template<class T, typename Signature>
42         struct has_static_validate_member
43         {
44             template<Signature *>
45             struct helper;
46
47             template<class U>
48             static char test(helper<&U::validate> *);
49
50             template<class U>
51             static char (&test(...))[2];
52
53             static const bool value = sizeof(test<T>(0))==1;
54         };
55
56         struct MIHMessageRegistry_EntryBase {
57             virtual ~MIHMessageRegistry_EntryBase() {}
58             virtual void validate(senf::Packet message) const = 0;
59         };
60
61         template <class MIHPacket,
62             bool use_validate_member = has_static_validate_member<typename MIHPacket::type, void(MIHPacket)>::value>
63         struct MIHMessageRegistryEntry : MIHMessageRegistry_EntryBase
64         {
65             virtual void validate(senf::Packet message) const {}
66         };
67
68         template <class MIHPacket>
69         struct MIHMessageRegistryEntry<MIHPacket, true> : MIHMessageRegistry_EntryBase
70         {
71             virtual void validate(senf::Packet message) const {
72                 MIHPacket::type::validate(message.as<MIHPacket>());
73             }
74         };
75     }
76
77
78     class MIHMessageRegistry
79         : public senf::singleton<MIHMessageRegistry>
80     {
81     public:
82         typedef boost::uint16_t key_t;
83
84         using senf::singleton<MIHMessageRegistry>::instance;
85         friend class senf::singleton<MIHMessageRegistry>;
86
87         template <typename MIHPacket>
88         struct RegistrationProxy {
89             RegistrationProxy();
90         };
91
92         template <typename MIHPacket>
93         void registerMessageType();
94
95         void validate(key_t messageId, senf::Packet message);
96
97     private:
98         typedef boost::ptr_map<key_t, detail::MIHMessageRegistry_EntryBase > Map;
99         Map map_;
100
101         MIHMessageRegistry() {};
102     };
103
104
105 #   define SENF_MIH_PACKET_REGISTRY_REGISTER( packet )                      \
106         SENF_PACKET_REGISTRY_REGISTER(                                      \
107             senf::MIHMessageRegistry, packet::type::MESSAGE_ID, packet )    \
108         namespace {                                                         \
109             senf::MIHMessageRegistry::RegistrationProxy< packet >           \
110             BOOST_PP_CAT(mihPacketRegistration_, __LINE__);                 \
111         }
112
113 }
114 //-/////////////////////////////////////////////////////////////////////////////////////////////////
115 //#include "MIHMessageRegistry.cci"
116 #include "MIHMessageRegistry.ct"
117 //#include "MIHMessageRegistry.cti"
118 #endif
119
120
121 \f
122 // Local Variables:
123 // mode: c++
124 // fill-column: 100
125 // c-file-style: "senf"
126 // indent-tabs-mode: nil
127 // ispell-local-dictionary: "american"
128 // compile-command: "scons -u test"
129 // comment-column: 40
130 // End: