123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- #ifndef SETTINGSCOMPONENT_H
- #define SETTINGSCOMPONENT_H
- #include <QObject>
- #include "utils/Utils.h"
- #include "ComponentManager.h"
- #include "SettingsValue.h"
- #define SETTINGS_SECTION_AUDIO "audio"
- #define SETTINGS_SECTION_VIDEO "video"
- #define SETTINGS_SECTION_MAIN "main"
- #define SETTINGS_SECTION_SYSTEM "system"
- #define SETTINGS_SECTION_STATE "state"
- #define SETTINGS_SECTION_PATH "path"
- #define SETTINGS_SECTION_WEBCLIENT "webclient"
- #define SETTINGS_SECTION_SUBTITLES "subtitles"
- #define SETTINGS_SECTION_OVERRIDES "overrides"
- #define SETTINGS_SECTION_CEC "cec"
- #define SETTINGS_SECTION_APPLEREMOTE "appleremote"
- #define AUDIO_DEVICE_TYPE_BASIC "basic"
- #define AUDIO_DEVICE_TYPE_SPDIF "spdif"
- #define AUDIO_DEVICE_TYPE_HDMI "hdmi"
- class SettingsSection;
- ///////////////////////////////////////////////////////////////////////////////////////////////////
- class SettingsComponent : public ComponentBase
- {
- Q_OBJECT
- DEFINE_SINGLETON(SettingsComponent);
- public:
- bool componentInitialize() override;
- void componentPostInitialize() override;
- const char* componentName() override { return "settings"; }
- bool componentExport() override { return true; }
- SettingsSection* getSection(const QString& sectionID)
- {
- return m_sections.value(sectionID, nullptr);
- }
- void setCommandLineValues(const QStringList& values);
- // JS interface
- Q_INVOKABLE void setValue(const QString& sectionID, const QString& key, const QVariant& value);
- Q_INVOKABLE void setValues(const QVariantMap& options);
- Q_INVOKABLE QVariant value(const QString& sectionID, const QString& key);
- Q_INVOKABLE QVariant allValues(const QString& section = "");
- // Note: the naming "remove" is a lie - it will remove the affected keys only if they are not
- // declared in settings_descriptions.json. Also, sections are never removed, even if they
- // remain empty.
- Q_INVOKABLE void removeValue(const QString& sectionOrKey);
- Q_INVOKABLE void resetToDefaultAll();
- Q_INVOKABLE void resetToDefault(const QString& sectionID);
- Q_INVOKABLE QVariantList settingDescriptions();
- Q_INVOKABLE QString getWebClientUrl(bool desktop);
- // host commands
- Q_SLOT Q_INVOKABLE void cycleSettingCommand(const QString& args);
- Q_SLOT Q_INVOKABLE void setSettingCommand(const QString& args);
- void updatePossibleValues(const QString& sectionID, const QString& key, const QVariantList& possibleValues);
- void saveSettings();
- void saveStorage();
- void load();
- // Fired when a section's description is updated.
- Q_SIGNAL void groupUpdate(const QString& section, const QVariant& description);
- // Fired when a subset of a section's values are updated. The values parameter will
- // contain the names of the changed values as keys, and the new settings values as
- // map values. Settings which are part of the section, but did not change, are not
- // part of the map.
- Q_SIGNAL void sectionValueUpdate(const QString& section, const QVariantMap& values);
- void setUserRoleList(const QStringList& userRoles);
- // A hack to load a value from the config file at very early init time, before
- // the SettingsComponent is created.
- //
- static QVariant readPreinitValue(const QString& sectionID, const QString& key);
- // Moves the current settings file to plexmediaplayer.conf.old to make way for new
- // configuration.
- //
- static bool resetAndSaveOldConfiguration();
- QString oldestPreviousVersion() const
- {
- return m_oldestPreviousVersion;
- }
- private:
- explicit SettingsComponent(QObject *parent = nullptr);
- bool loadDescription();
- void parseSection(const QJsonObject& sectionObject);
- int platformMaskFromObject(const QJsonObject& object);
- Platform platformFromString(const QString& platformString);
- void saveSection(SettingsSection* section);
- void setupVersion();
- QMap<QString, SettingsSection*> m_sections;
- int m_settingsVersion;
- int m_sectionIndex;
- QString m_oldestPreviousVersion;
- void loadConf(const QString& path, bool storage);
- };
- #endif // SETTINGSCOMPONENT_H
|