SystemComponent.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  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. virtual bool componentExport() { return true; }
  16. virtual const char* componentName() { return "system"; }
  17. virtual bool componentInitialize();
  18. virtual void componentPostInitialize();
  19. Q_INVOKABLE QVariantMap systemInformation() const;
  20. Q_INVOKABLE void exit();
  21. Q_INVOKABLE 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 QString logFilePath() { return Paths::logDir(Names::MainName() + ".log"); }
  27. Q_INVOKABLE QStringList networkAddresses() const;
  28. Q_INVOKABLE int networkPort() const;
  29. Q_INVOKABLE void userInformation(const QVariantMap& userModel);
  30. Q_INVOKABLE void openExternalUrl(const QString& url);
  31. Q_INVOKABLE void runUserScript(QString script);
  32. // possible os types type enum
  33. enum PlatformType
  34. {
  35. platformTypeUnknown,
  36. platformTypeOsx,
  37. platformTypeWindows,
  38. platformTypeLinux,
  39. platformTypeOpenELEC
  40. };
  41. // possible values for target types
  42. enum PlatformArch
  43. {
  44. platformArchUnknown,
  45. platformArchX86_32,
  46. platformArchX86_64,
  47. platformArchRpi2
  48. };
  49. inline PlatformType getPlatformType() { return m_platformType; }
  50. inline PlatformArch getPlatformArch() { return m_platformArch; }
  51. QString getPlatformTypeString() const;
  52. QString getPlatformArchString() const;
  53. inline bool isOpenELEC() { return m_platformType == platformTypeOpenELEC; }
  54. Q_INVOKABLE void crashApp();
  55. private:
  56. SystemComponent(QObject* parent = 0);
  57. static QMap<QString, QString> networkInterfaces();
  58. QTimer* m_mouseOutTimer;
  59. PlatformType m_platformType;
  60. PlatformArch m_platformArch;
  61. QString m_overridePlatform;
  62. bool m_doLogMessages;
  63. };
  64. #endif