[76] | 1 | // %pacpus:license{
|
---|
[62] | 2 | // This file is part of the PACPUS framework distributed under the
|
---|
| 3 | // CECILL-C License, Version 1.0.
|
---|
[76] | 4 | // %pacpus:license}
|
---|
[66] | 5 | /// @file
|
---|
[62] | 6 | /// @author Gerald Dherbomez <firstname.surname@utc.fr>
|
---|
[63] | 7 | /// @date January, 2006
|
---|
[62] | 8 | /// @version $Id: ComponentManager.h 76 2013-01-10 17:05:10Z kurdejma $
|
---|
| 9 | /// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved.
|
---|
| 10 | /// @brief Brief description.
|
---|
| 11 | ///
|
---|
[63] | 12 | /// Purpose: This class records the components and manages them
|
---|
| 13 | /// This class is a singleton
|
---|
| 14 | /// Use the static ComponentManager::create() function
|
---|
| 15 | /// to get a pointer on this object.
|
---|
[3] | 16 |
|
---|
[31] | 17 | #ifndef DEF_PACPUS_COMPONENTMANAGER_H
|
---|
| 18 | #define DEF_PACPUS_COMPONENTMANAGER_H
|
---|
[3] | 19 |
|
---|
[31] | 20 | #include <Pacpus/kernel/pacpus.h>
|
---|
| 21 | #include <Pacpus/kernel/ComponentFactoryBase.h>
|
---|
| 22 | #include <Pacpus/kernel/PacpusPluginInterface.h>
|
---|
| 23 | #include <Pacpus/kernel/XmlConfigFile.h>
|
---|
[3] | 24 |
|
---|
[67] | 25 | #include <cstddef>
|
---|
| 26 | #include <QList>
|
---|
| 27 | #include <QMap>
|
---|
| 28 | #include <QPluginLoader>
|
---|
| 29 |
|
---|
[3] | 30 | namespace pacpus {
|
---|
| 31 |
|
---|
| 32 | class ComponentBase;
|
---|
| 33 |
|
---|
[71] | 34 | /// @todo Documentation
|
---|
[3] | 35 | typedef QMap<QString, ComponentBase *> ComponentMap;
|
---|
[71] | 36 | /// @todo Documentation
|
---|
[3] | 37 | typedef QMap<QString, ComponentFactoryBase *> FactoryMap;
|
---|
| 38 |
|
---|
[71] | 39 | /// Singleton recording the components and managing them.
|
---|
[3] | 40 | class ComponentManager
|
---|
| 41 | {
|
---|
| 42 | friend class ComponentBase;
|
---|
| 43 |
|
---|
| 44 | public:
|
---|
| 45 | /// @returns a pointer to the ComponentManager object
|
---|
[71] | 46 | /// @deprecated Use getInstance()
|
---|
[3] | 47 | PACPUS_DEPRECATED_MSG( static PACPUSLIB_API ComponentManager * create(), "use 'getInstance()'" );
|
---|
| 48 |
|
---|
[71] | 49 | /// Returns an instance of the singleton ComponentManager class.
|
---|
| 50 | /// @returns Pointer to the ComponentManager singleton.
|
---|
[13] | 51 | static PACPUSLIB_API ComponentManager* getInstance();
|
---|
[3] | 52 |
|
---|
[71] | 53 | /// Destroys the ComponentManager singleton.
|
---|
| 54 | ///
|
---|
| 55 | /// After this call, every pointer to the ComponentManager becomes invalid.
|
---|
[3] | 56 | static PACPUSLIB_API void destroy();
|
---|
| 57 |
|
---|
[67] | 58 | /// Automatic deleter class.
|
---|
[3] | 59 | struct destroyer {
|
---|
[67] | 60 | /// Invokes ComponentManager::destroy() method if @b mgr pointer is not null.
|
---|
[3] | 61 | void operator()(ComponentManager * mgr) const
|
---|
| 62 | {
|
---|
| 63 | if (!mgr) {
|
---|
| 64 | return;
|
---|
| 65 | }
|
---|
| 66 | mgr->destroy();
|
---|
| 67 | }
|
---|
| 68 | };
|
---|
| 69 |
|
---|
[13] | 70 | /** Load the components included in the XML config file.
|
---|
| 71 | * @param file Name of the XML file.
|
---|
| 72 | * @return Number of components loaded by the manager.
|
---|
| 73 | */
|
---|
[16] | 74 | PACPUSLIB_API std::size_t loadComponents(const QString& file);
|
---|
[3] | 75 |
|
---|
[13] | 76 | /** Start all the components
|
---|
| 77 | * @return True if all the component has been started, otherwise false.
|
---|
| 78 | */
|
---|
[48] | 79 | PACPUSLIB_API bool start();
|
---|
[3] | 80 |
|
---|
[13] | 81 | /** Start only the component passed in parameter.
|
---|
| 82 | * @param component Component to start.
|
---|
| 83 | * @return True if the component exists and has been started, otherwise false.
|
---|
| 84 | */
|
---|
[48] | 85 | PACPUSLIB_API bool start(const QString& component);
|
---|
[3] | 86 |
|
---|
[13] | 87 | /** Stop all the components
|
---|
| 88 | * @return True if all the component has been stopped, otherwise false.
|
---|
| 89 | */
|
---|
[48] | 90 | PACPUSLIB_API bool stop();
|
---|
[3] | 91 |
|
---|
[13] | 92 | /** Stop only the component passed in parameter.
|
---|
| 93 | * @param component Component to stop.
|
---|
| 94 | * @return True if the component has been stopped, otherwise false.
|
---|
| 95 | */
|
---|
[48] | 96 | PACPUSLIB_API bool stop(const QString& component);
|
---|
[3] | 97 |
|
---|
[13] | 98 | /** Get a pointer to the component referred by @em name.
|
---|
| 99 | * @param name Name of the component.
|
---|
| 100 | * @return Pointer to the component if it exists, otherwise @em NULL.
|
---|
| 101 | */
|
---|
[16] | 102 | PACPUSLIB_API ComponentBase* getComponent(const QString& name);
|
---|
[3] | 103 |
|
---|
[13] | 104 | /** Get the list of all the names of the component known by the manager.
|
---|
| 105 | * @return List of all the component's name.
|
---|
| 106 | */
|
---|
[48] | 107 | PACPUSLIB_API QStringList getAllComponentsName() const;
|
---|
[3] | 108 |
|
---|
[13] | 109 | /** Load a new plugin from the file filename (it may be a .so/.dll file)
|
---|
| 110 | * @param filename Name of the shared object or the dll.
|
---|
| 111 | * @return True if the plugin has been loaded, otherwise false.
|
---|
| 112 | */
|
---|
[16] | 113 | PACPUSLIB_API bool loadPlugin(const QString& filename);
|
---|
[3] | 114 |
|
---|
| 115 | private:
|
---|
| 116 | /// Create a new component of type 'type' and with the name 'name'
|
---|
[16] | 117 | bool createComponent(const QString& type, const QString& name);
|
---|
[3] | 118 |
|
---|
[16] | 119 | bool registerComponent(ComponentBase* addr, const QString& name);
|
---|
| 120 | bool registerComponentFactory(ComponentFactoryBase* addr, const QString& type);
|
---|
[3] | 121 |
|
---|
[16] | 122 | bool unRegisterComponent(const QString& name);
|
---|
| 123 | bool unRegisterComponentFactory(const QString& type);
|
---|
[3] | 124 |
|
---|
| 125 | // Allow 2 functions to access to private members of ComponentManager
|
---|
[16] | 126 | friend void ComponentFactoryBase::addFactory(ComponentFactoryBase* addr, const QString & type);
|
---|
[3] | 127 | friend void ComponentFactoryBase::addComponent(const QString & name);
|
---|
| 128 |
|
---|
| 129 | /// private constructor accessible only via static create() function
|
---|
| 130 | ComponentManager();
|
---|
| 131 |
|
---|
| 132 | /// private destructor accessible only via static destroy() function
|
---|
| 133 | ~ComponentManager();
|
---|
| 134 |
|
---|
| 135 | private:
|
---|
| 136 | /// The static pointer to this object (ComponentManager is a singleton)
|
---|
| 137 | static ComponentManager * mInstance;
|
---|
| 138 |
|
---|
| 139 | /// The map of available factories of component
|
---|
| 140 | FactoryMap factoryMap_;
|
---|
| 141 |
|
---|
| 142 | /// The map of loaded components
|
---|
| 143 | ComponentMap componentMap_;
|
---|
| 144 |
|
---|
| 145 | /// a pointer on the xml interface
|
---|
| 146 | pacpus::XmlConfigFile * xmlTree_;
|
---|
| 147 |
|
---|
| 148 | /// a list of QObject in which plugins are embedded
|
---|
| 149 | QObjectList pluginList_;
|
---|
| 150 |
|
---|
| 151 | /// The object used to load the plugins
|
---|
| 152 | QPluginLoader pluginLoader_;
|
---|
| 153 | };
|
---|
| 154 |
|
---|
| 155 | } // namespace pacpus
|
---|
| 156 |
|
---|
[31] | 157 | #endif
|
---|