PPI: Checkin of first compiling (yet not working) version
[senf.git] / PPI / detail / EventBinding.hh
1 // $Id$
2 //
3 // Copyright (C) 2007 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <g0dil@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 EventBinding public header */
25
26 #ifndef HH_EventBinding_
27 #define HH_EventBinding_ 1
28
29 // Custom includes
30 #include <boost/date_time/posix_time/posix_time_types.hpp>
31 #include "../predecl.hh"
32 #include "Callback.hh"
33
34 //#include "EventBinding.mpp"
35 ///////////////////////////////hh.p////////////////////////////////////////
36
37 namespace senf {
38 namespace ppi {
39 namespace detail {
40
41     class EventBindingBase
42     {
43     protected:
44         EventBindingBase(EventManager & manager, module::Module & module, 
45                          EventDescriptor & descriptor);
46
47         void eventTime(boost::posix_time::ptime time);
48
49     private:
50         EventManager * manager_;
51         module::Module * module_;
52         EventDescriptor * descriptor_;
53     };
54
55     template <class EventType>
56     class EventBinding
57         : public EventBindingBase
58     {
59     public:
60         typedef EventType Event;
61         typedef typename detail::EventArgType<Event>::type EventArg;
62         typedef typename detail::Callback<Event const &>::type Callback;
63
64         EventBinding(EventManager & manager, module::Module & module, Callback callback,
65                      EventDescriptor & descriptor);
66
67         void callback(EventArg event, boost::posix_time::ptime time);
68         void callback(EventArg event);
69
70     private:
71         Callback callback_;
72     };
73
74 }}}
75
76 ///////////////////////////////hh.e////////////////////////////////////////
77 #include "EventBinding.cci"
78 //#include "EventBinding.ct"
79 #include "EventBinding.cti"
80 #endif
81
82 \f
83 // Local Variables:
84 // mode: c++
85 // fill-column: 100
86 // comment-column: 40
87 // c-file-style: "senf"
88 // indent-tabs-mode: nil
89 // ispell-local-dictionary: "american"
90 // compile-command: "scons -u ../test"
91 // End: