SystemComponent.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. #ifndef __SYSTEM_COMPONENT_H__
  2. #define __SYSTEM_COMPONENT_H__
  3. #include "ComponentManager.h"
  4. #include <QTimer>
  5. #include "utils/Utils.h"
  6. #include "Paths.h"
  7. #include "Names.h"
  8. // System modifiers
  9. #define SYSTEM_MODIFIER_OPENELEC "OpenELEC"
  10. class SystemComponent : public ComponentBase
  11. {
  12. Q_OBJECT
  13. DEFINE_SINGLETON(SystemComponent);
  14. public:
  15. bool componentExport() override { return true; }
  16. const char* componentName() override { return "system"; }
  17. bool componentInitialize() override;
  18. void componentPostInitialize() override;
  19. Q_INVOKABLE QVariantMap systemInformation() const;
  20. Q_INVOKABLE void exit();
  21. Q_INVOKABLE static void restart();
  22. Q_INVOKABLE void info(QString text);
  23. Q_INVOKABLE void setCursorVisibility(bool visible);
  24. Q_INVOKABLE QString getUserAgent();
  25. Q_INVOKABLE QString debugInformation();
  26. Q_INVOKABLE QStringList networkAddresses() const;
  27. Q_INVOKABLE int networkPort() const;
  28. Q_INVOKABLE void userInformation(const QVariantMap& userModel);
  29. Q_INVOKABLE void openExternalUrl(const QString& url);
  30. Q_INVOKABLE void runUserScript(QString script);
  31. // called by the web-client when everything is properly inited
  32. Q_INVOKABLE void hello(const QString& version);
  33. Q_INVOKABLE QString getCapabilitiesString();
  34. Q_SIGNAL void capabilitiesChanged(const QString& capabilities);
  35. Q_SIGNAL void userInfoChanged();
  36. // possible os types type enum
  37. enum PlatformType
  38. {
  39. platformTypeUnknown,
  40. platformTypeOsx,
  41. platformTypeWindows,
  42. platformTypeLinux,
  43. platformTypeOpenELEC
  44. };
  45. // possible values for target types
  46. enum PlatformArch
  47. {
  48. platformArchUnknown,
  49. platformArchX86_32,
  50. platformArchX86_64,
  51. platformArchRpi2
  52. };
  53. inline PlatformType getPlatformType() { return m_platformType; }
  54. inline PlatformArch getPlatformArch() { return m_platformArch; }
  55. QString getPlatformTypeString() const;
  56. QString getPlatformArchString() const;
  57. inline bool isOpenELEC() const { return m_platformType == platformTypeOpenELEC; }
  58. bool isWebClientConnected() const { return !m_webClientVersion.isEmpty(); }
  59. inline QString authenticationToken() { return m_authenticationToken; }
  60. Q_INVOKABLE void crashApp();
  61. signals:
  62. void hostMessage(const QString& message);
  63. void settingsMessage(const QString& setting, const QString& value);
  64. void scaleChanged(qreal scale);
  65. private:
  66. explicit SystemComponent(QObject* parent = nullptr);
  67. static QMap<QString, QString> networkInterfaces();
  68. QTimer* m_mouseOutTimer;
  69. PlatformType m_platformType;
  70. PlatformArch m_platformArch;
  71. bool m_doLogMessages;
  72. QString m_authenticationToken;
  73. QString m_webClientVersion;
  74. };
  75. #endif