Browse Source

SettingsComponent: add set_setting command

Mostly useful for debugging.

Parsing the settings values by concatenating them with some other
strings to make them a valid JSON document is not really clean,
but avoids tons of problems (and we can have simpler code). In
particular, QVariant::convert() turned out being a POS from what
I can tell.

Syntax:

   host:set_setting <qualified_name> <value>

where <qualified_name> is the settings section and value name
separated by a ".", e.g. 'main.fullscreen' (without the quotes),
and <value> is a JSON value. For strings, this would be '"str"'
(without the outer quotes). An example for an input map would be:

   "F1": "host:set_setting main.foo \"bar\"",

which sets the "main.foo" setting to the string "bar" (without
the quotes). The quotes have to be quoted, because they're
already inside of a string. For numbers or bools, no quoting
is required.
Vincent Lang 8 years ago
parent
commit
3c333755f9
2 changed files with 44 additions and 3 deletions
  1. 42 2
      src/settings/SettingsComponent.cpp
  2. 2 1
      src/settings/SettingsComponent.h

+ 42 - 2
src/settings/SettingsComponent.cpp

@@ -26,11 +26,12 @@ SettingsComponent::SettingsComponent(QObject *parent) : ComponentBase(parent), m
 /////////////////////////////////////////////////////////////////////////////////////////
 void SettingsComponent::componentPostInitialize()
 {
-  InputComponent::Get().registerHostCommand("cycle_setting", this, "cycleSetting");
+  InputComponent::Get().registerHostCommand("cycle_setting", this, "cycleSettingCommand");
+  InputComponent::Get().registerHostCommand("set_setting", this, "setSettingCommand");
 }
 
 /////////////////////////////////////////////////////////////////////////////////////////
-void SettingsComponent::cycleSetting(const QString& args)
+void SettingsComponent::cycleSettingCommand(const QString& args)
 {
   QString settingName = args;
   QStringList sub = settingName.split(".");
@@ -87,6 +88,45 @@ void SettingsComponent::cycleSetting(const QString& args)
   emit SystemComponent::Get().settingsMessage(valueName, nextSetting["title"].toString());
 }
 
+///////////////////////////////////////////////////////////////////////////////////////////////////
+void SettingsComponent::setSettingCommand(const QString& args)
+{
+  int spaceIndex = args.indexOf(" ");
+  if (spaceIndex < 0)
+  {
+    QLOG_ERROR() << "No value provided to settings set command.";
+    return;
+  }
+  QString settingName = args.mid(0, spaceIndex);
+  QString settingValue = args.mid(spaceIndex + 1);
+  int subIndex = settingName.indexOf(".");
+  if (subIndex < 0 || subIndex == args.size() - 1)
+  {
+    QLOG_ERROR() << "Setting must be in the form section.name but got:" << settingName;
+    return;
+  }
+  QString sectionID = settingName.mid(0, subIndex);
+  QString valueName = settingName.mid(subIndex + 1);
+  SettingsSection* section = getSection(sectionID);
+  if (!section)
+  {
+    QLOG_ERROR() << "Section" << sectionID << "is unknown";
+    return;
+  }
+  QString jsonString = "{\"value\": " + settingValue + "}";
+  QJsonParseError err;
+  QVariant value = QJsonDocument::fromJson(jsonString.toUtf8(), &err).object()["value"].toVariant();
+  printf("val: '%s'\n", settingValue.toUtf8().data());
+  if (!value.isValid())
+  {
+    QLOG_ERROR() << "Invalid settings value:" << settingValue << "(if it's a string, make sure to quote it)";
+    return;
+  }
+  QLOG_DEBUG() << "Setting" << settingName << "to" << value;
+  setValue(sectionID, valueName, value);
+  emit SystemComponent::Get().settingsMessage(valueName, value.toString());
+}
+
 ///////////////////////////////////////////////////////////////////////////////////////////////////
 void SettingsComponent::updatePossibleValues(const QString &sectionID, const QString &key, const QVariantList &possibleValues)
 {

+ 2 - 1
src/settings/SettingsComponent.h

@@ -60,7 +60,8 @@ public:
   Q_INVOKABLE QString getWebClientUrl(bool desktop);
 
   // host commands
-  Q_SLOT Q_INVOKABLE void cycleSetting(const QString& args);
+  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);