]> vaikene.ee Git - evaf/commitdiff
More work with the IniFile class:
authorEnar Väikene <enar@vaikene.net>
Wed, 5 Oct 2011 11:26:01 +0000 (14:26 +0300)
committerEnar Väikene <enar@vaikene.net>
Wed, 5 Oct 2011 11:26:01 +0000 (14:26 +0300)
* Uses the last '/' character to separate section names from key names. 'extensions/about/module' means now
  section name 'extensions/about'  and key name 'module'.
* Fixed reading platform-specific parameters where we forgot to store the thisOsOnly flag.
* Fixed writing parameters where we forgot to update the internal cache.

src/libs/Common/IniFile [new file with mode: 0644]
src/libs/Common/inifile.cpp
src/libs/Common/inifile.h

diff --git a/src/libs/Common/IniFile b/src/libs/Common/IniFile
new file mode 100644 (file)
index 0000000..f1ae13e
--- /dev/null
@@ -0,0 +1 @@
+#include "inifile.h"
index 28e700f33c5b1c199cefbd44f94b459bcf77cd05..2b21d551e40bbe4fe18885004ea7efda588b1fed 100644 (file)
@@ -231,6 +231,7 @@ QExplicitlySharedDataPointer<IniFileValue> IniFileImpl::getParameter(QFile & fil
             valueObject = new IniFileValue(currentPos);
             valueObject->name = name;
             valueObject->paramValue = value;
+            valueObject->thisOsOnly = thisOsOnly;
             section.values.insert(name, valueObject);
         }
         else {
@@ -238,6 +239,7 @@ QExplicitlySharedDataPointer<IniFileValue> IniFileImpl::getParameter(QFile & fil
             valueObject = *it;
             valueObject->name = name;
             valueObject->paramValue = value;
+            valueObject->thisOsOnly = thisOsOnly;
         }
 
         // Is this the parameter vwe are looking for?
@@ -257,7 +259,7 @@ QExplicitlySharedDataPointer<IniFileValue> IniFileImpl::getParameter(QFile & fil
 QVariant IniFileImpl::getValue(QString const & paramName, QVariant const & defaultValue)
 {
     // Locate the '/' character that separates section names from key names
-    int idx = paramName.indexOf('/');
+    int idx = paramName.lastIndexOf('/');
     if (idx < 0)
         return defaultValue;
 
@@ -293,7 +295,7 @@ QVariant IniFileImpl::getValue(QString const & paramName, QVariant const & defau
 bool IniFileImpl::setValue(QString const & paramName, QVariant const & value)
 {
     // Locate the '/' character that separates section names from key names
-    int idx = paramName.indexOf('/');
+    int idx = paramName.lastIndexOf('/', -1);
     if (idx < 0)
         return false;
 
@@ -455,6 +457,9 @@ bool IniFileImpl::setValue(QString const & paramName, QVariant const & value)
         if (diff)
             updateCache(currentPos, diff);
 
+        // Update the parameter value in the internal cache
+        valueObject->paramValue = valueString;
+
     }
 
     f.close();
index b795e6a9435dc02dfc222c7af964094b93649801..705bd9bc20795315745fef623bed1fada65005cf 100644 (file)
@@ -35,12 +35,25 @@ namespace Internal {
 /**
  * Class for reading and writing parameter values in INI files.
  *
- * The IniFile class provides access to parameter values in a standard INI file. Every parameter value is
- * identified by a section/key name pair. Key names can be prefixed with 'windows:' or 'linux:' if the
- * parameter value is specific for the given platform. This allows entering platform-specific parameter
- * values to the INI file. INI files can contain comment lines that start with ';' or '#'. Comments are
+ * The IniFile class provides access to parameter values in a standard INI file.
+ * Every parameter value is identified by a section/key name pair. Key names can be prefixed with
+ * 'windows:' or 'linux:' if the parameter value is specific for the given platform.
+ * This allows entering platform-specific parameter values to the INI file.
+ *
+ * INI files can contain comment lines that start with ';' or '#'. Comments are
  * preserved when new values are written to the INI file.
  *
+ * This is a sample INI file:
+ * @code
+ * [main]
+ * # The full name of this parameter is 'main/name'
+ * name = MyApplication
+ *
+ * [extensions/about]
+ * # The full name of this parameter is 'extensions/about/module'
+ * module = libabout.so
+ * @endcode
+ *
  * Values in INI files are stored as strings and the IniFile class expects them to use specific formats if
  * the returned value is supposed to be of a different data type. The following list shows the expected format
  * of different data types: