ComponentManager.h 1003 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #ifndef __COMPONENT_MANAGER_H__
  2. #define __COMPONENT_MANAGER_H__
  3. #include <QObject>
  4. #include <QMap>
  5. #include <QQmlContext>
  6. #include <QQmlPropertyMap>
  7. #include <QWebChannel>
  8. #include "utils/Utils.h"
  9. #include "server/HTTPServer.h"
  10. class ComponentBase : public QObject
  11. {
  12. public:
  13. ComponentBase(QObject* parent = 0) : QObject(parent) { }
  14. virtual bool componentInitialize() = 0;
  15. virtual const char* componentName() = 0;
  16. virtual bool componentExport() = 0;
  17. // executed after ALL components are initialized
  18. virtual void componentPostInitialize() { }
  19. };
  20. class ComponentManager : public QObject
  21. {
  22. Q_OBJECT
  23. DEFINE_SINGLETON(ComponentManager);
  24. public:
  25. void initialize();
  26. inline QQmlPropertyMap &getQmlPropertyMap() { return m_qmlProperyMap; }
  27. void setWebChannel(QWebChannel* webChannel);
  28. private:
  29. ComponentManager();
  30. void registerComponent(ComponentBase* comp);
  31. HttpServer* m_server;
  32. QMap<QString, ComponentBase*> m_components;
  33. QQmlPropertyMap m_qmlProperyMap;
  34. };
  35. #endif