switch to new MPL based Fraunhofer FOKUS Public License
[senf.git] / senf / PPI / Module.cci
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief Module inline non-template implementation */
30
31 // Custom includes
32 #include "Route.hh"
33 #include "Connectors.hh"
34 #include "EventManager.hh"
35 #include <boost/lambda/lambda.hpp>
36 #include <boost/lambda/bind.hpp>
37 #include <algorithm>
38
39 #define prefix_ inline
40 //-/////////////////////////////////////////////////////////////////////////////////////////////////
41
42 //-/////////////////////////////////////////////////////////////////////////////////////////////////
43 // senf::ppi::module::Module
44
45 //-/////////////////////////////////////////////////////////////////////////////////////////////////
46 // private members
47
48 prefix_ void senf::ppi::module::Module::v_init()
49 {}
50
51 prefix_ senf::ppi::EventManager & senf::ppi::module::Module::eventManager()
52     const
53 {
54     return EventManager::instance();
55 }
56
57 prefix_ senf::ppi::ModuleManager & senf::ppi::module::Module::moduleManager()
58     const
59 {
60     return ModuleManager::instance();
61 }
62
63 prefix_ void senf::ppi::module::Module::unregisterEvent(EventDescriptor & event)
64 {
65     routes_.erase_if(boost::bind(&RouteBase::hasEvent, _1, boost::cref(event)));
66 }
67
68 //-/////////////////////////////////////////////////////////////////////////////////////////////////
69 // public members
70
71 prefix_ senf::ppi::module::Module::~Module()
72 {
73     SENF_ASSERT(connectorRegistry_.empty(),
74                 "Internal failure: connectors still registered in Module destructor ??");
75     SENF_ASSERT(routes_.empty(),
76                 "internal failure: routes still registered in Module destructor ??");
77
78     moduleManager().unregisterModule(*this);
79 }
80
81 prefix_ senf::ClockService::clock_type senf::ppi::module::Module::time()
82     const
83 {
84     return eventManager().time();
85 }
86
87 prefix_ senf::ClockService::clock_type senf::ppi::module::Module::now()
88     const
89 {
90     return eventManager().now();
91 }
92
93 //-/////////////////////////////////////////////////////////////////////////////////////////////////
94 // protected members
95
96 prefix_ senf::ppi::module::Module::Module()
97 {
98     moduleManager().registerModule(*this);
99 }
100
101 prefix_ void senf::ppi::module::Module::destroy()
102 {
103     eventManager().destroyModule(*this);
104 }
105
106 //-/////////////////////////////////////////////////////////////////////////////////////////////////
107 #undef prefix_
108
109 \f
110 // Local Variables:
111 // mode: c++
112 // fill-column: 100
113 // comment-column: 40
114 // c-file-style: "senf"
115 // indent-tabs-mode: nil
116 // ispell-local-dictionary: "american"
117 // compile-command: "scons -u test"
118 // End: