b9441235c024c1cfb4b24576504ee3a18712496c
[senf.git] / PPI / ModuleManager.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 ModuleManager public header */
25
26 #ifndef HH_ModuleManager_
27 #define HH_ModuleManager_ 1
28
29 // Custom includes
30 #include <vector>
31 #include "predecl.hh"
32
33 //#include "ModuleManager.mpp"
34 ///////////////////////////////hh.p////////////////////////////////////////
35
36 namespace senf {
37 namespace ppi {
38
39     /** \brief
40       */
41     class ModuleManager
42     {
43     public:
44         ///////////////////////////////////////////////////////////////////////////
45         ///\name Structors and default members
46         ///@{
47
48         static ModuleManager & instance();
49
50         // default default constructor
51         // default copy constructor
52         // default copy assignment
53         // default destructor
54
55         // no conversion constructors
56
57         ///@}
58         ///////////////////////////////////////////////////////////////////////////
59
60         void registerModule(module::Module & module);
61         void unregisterModule(module::Module & module);
62         
63         void init();
64         void run();
65
66         bool running() const;
67
68     private:
69         ModuleManager();
70
71         typedef std::vector<module::Module *> ModuleRegistry;
72
73 #ifndef DOXYGEN
74         struct RunGuard;
75         friend class RunGuard;
76 #endif
77
78         ModuleRegistry moduleRegistry_;
79         bool running_;
80         bool terminate_;
81     };
82
83
84 }}
85
86 ///////////////////////////////hh.e////////////////////////////////////////
87 #include "ModuleManager.cci"
88 //#include "ModuleManager.ct"
89 //#include "ModuleManager.cti"
90 #endif
91
92 \f
93 // Local Variables:
94 // mode: c++
95 // fill-column: 100
96 // comment-column: 40
97 // c-file-style: "senf"
98 // indent-tabs-mode: nil
99 // ispell-local-dictionary: "american"
100 // compile-command: "scons -u test"
101 // End: