SettingsComponent.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #ifndef SETTINGSCOMPONENT_H
  2. #define SETTINGSCOMPONENT_H
  3. #include <QObject>
  4. #include "utils/Utils.h"
  5. #include "ComponentManager.h"
  6. #include "SettingsValue.h"
  7. #define SETTINGS_SECTION_AUDIO "audio"
  8. #define SETTINGS_SECTION_VIDEO "video"
  9. #define SETTINGS_SECTION_MAIN "main"
  10. #define SETTINGS_SECTION_STATE "state"
  11. #define SETTINGS_SECTION_PATH "path"
  12. #define SETTINGS_SECTION_WEBCLIENT "webclient"
  13. #define SETTINGS_SECTION_SUBTITLES "subtitles"
  14. #define SETTINGS_SECTION_OVERRIDES "overrides"
  15. #define SETTINGS_SECTION_CEC "cec"
  16. #define SETTINGS_SECTION_OPENELEC "openelec"
  17. #define SETTINGS_SECTION_APPLEREMOTE "appleremote"
  18. #define AUDIO_DEVICE_TYPE_BASIC "basic"
  19. #define AUDIO_DEVICE_TYPE_SPDIF "spdif"
  20. #define AUDIO_DEVICE_TYPE_HDMI "hdmi"
  21. class SettingsSection;
  22. ///////////////////////////////////////////////////////////////////////////////////////////////////
  23. class SettingsComponent : public ComponentBase
  24. {
  25. Q_OBJECT
  26. DEFINE_SINGLETON(SettingsComponent);
  27. public:
  28. bool componentInitialize() override;
  29. void componentPostInitialize() override;
  30. const char* componentName() override { return "settings"; }
  31. bool componentExport() override { return true; }
  32. SettingsSection* getSection(const QString& sectionID)
  33. {
  34. return m_sections.value(sectionID, nullptr);
  35. }
  36. // JS interface
  37. Q_INVOKABLE void setValue(const QString& sectionID, const QString& key, const QVariant& value);
  38. Q_INVOKABLE void setValues(const QVariantMap& options);
  39. Q_INVOKABLE QVariant value(const QString& sectionID, const QString& key);
  40. Q_INVOKABLE QVariant allValues(const QString& section = "");
  41. Q_INVOKABLE void removeValue(const QString& sectionOrKey);
  42. Q_INVOKABLE void resetToDefault();
  43. Q_INVOKABLE QVariantList settingDescriptions();
  44. Q_INVOKABLE QString getWebClientUrl();
  45. // host commands
  46. Q_SLOT void cycleSetting(const QString& args);
  47. void updatePossibleValues(const QString& sectionID, const QString& key, const QVariantList& possibleValues);
  48. void saveSettings();
  49. void saveStorage();
  50. void load();
  51. Q_SIGNAL void groupUpdate(const QString& section, const QVariant& description);
  52. void setUserRoleList(const QStringList& userRoles);
  53. // A hack to load a value from the config file at very early init time, before
  54. // the SettingsComponent is created.
  55. //
  56. static QVariant readPreinitValue(const QString& sectionID, const QString& key);
  57. // Moves the current settings file to plexmediaplayer.conf.old to make way for new
  58. // configuration.
  59. //
  60. static bool resetAndSaveOldConfiguration();
  61. QString oldestPreviousVersion() const
  62. {
  63. return m_oldestPreviousVersion;
  64. }
  65. private:
  66. explicit SettingsComponent(QObject *parent = nullptr);
  67. bool loadDescription();
  68. void parseSection(const QJsonObject& sectionObject);
  69. int platformMaskFromObject(const QJsonObject& object);
  70. Platform platformFromString(const QString& platformString);
  71. void saveSection(SettingsSection* section);
  72. void setupVersion();
  73. QMap<QString, SettingsSection*> m_sections;
  74. int m_settingsVersion;
  75. int m_sectionIndex;
  76. QString m_oldestPreviousVersion;
  77. void loadConf(const QString& path, bool storage);
  78. };
  79. #endif // SETTINGSCOMPONENT_H