]> vaikene.ee Git - evaf/blob - src/libs/Common/inifile.h
More work with the IniFile class:
[evaf] / src / libs / Common / inifile.h
1 /**
2 * @file Common/inifile.h
3 * @brief Class for reading and writing parameter values in INI files.
4 * @author Enar Vaikene
5 *
6 * Copyright (c) 2011 Enar Vaikene
7 *
8 * This file is part of the eVaf C++ cross-platform application development framework.
9 *
10 * This file can be used under the terms of the GNU General Public License
11 * version 3.0 as published by the Free Software Foundation and appearing in
12 * the file LICENSE included in the packaging of this file. Please review the
13 * the following information to ensure the GNU General Public License version
14 * 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
15 *
16 * Alternatively, this file may be used in accordance with the Commercial License
17 * Agreement provided with the Software.
18 */
19
20 #ifndef __COMMON_INIFILE_H
21 #define __COMMON_INIFILE_H
22
23 #include "libcommon.h"
24
25 #include <QString>
26 #include <QVariant>
27 #include <QIODevice>
28
29 namespace eVaf {
30 namespace Common {
31 namespace Internal {
32 class IniFileImpl;
33 } // namespace eVaf::Common::Internal
34
35 /**
36 * Class for reading and writing parameter values in INI files.
37 *
38 * The IniFile class provides access to parameter values in a standard INI file.
39 * Every parameter value is identified by a section/key name pair. Key names can be prefixed with
40 * 'windows:' or 'linux:' if the parameter value is specific for the given platform.
41 * This allows entering platform-specific parameter values to the INI file.
42 *
43 * INI files can contain comment lines that start with ';' or '#'. Comments are
44 * preserved when new values are written to the INI file.
45 *
46 * This is a sample INI file:
47 * @code
48 * [main]
49 * # The full name of this parameter is 'main/name'
50 * name = MyApplication
51 *
52 * [extensions/about]
53 * # The full name of this parameter is 'extensions/about/module'
54 * module = libabout.so
55 * @endcode
56 *
57 * Values in INI files are stored as strings and the IniFile class expects them to use specific formats if
58 * the returned value is supposed to be of a different data type. The following list shows the expected format
59 * of different data types:
60 *
61 * @li Bool - '0', 'false', 'off', 'no' are equal to false and '1', 'true', 'on', 'yes' are equal to true;
62 * @li Char - a single character or an ASCII code as '\0NNN' or '\0xNN';
63 * @li Date - date string in the ISO 8601 format YYYY-MM-DD;
64 * @li DateTime - date and time string in the ISO 8601 format YYY-MM-DDTHH:MM:SSTZD;
65 * @li Double - the decimal point is always '.' regardless of the locale;
66 * @li Int - only base 10 (decimal) is allowed;
67 * @li Time - 24h time string in the format HH:MM:SS
68 * @li UInt - base 16 (hex) if the string is prefixed with '0x'; base 8 if the string starts with '0'; otherwise
69 * the value is expected to be base 10 (decimal).
70 */
71 class COMMON_EXPORT IniFile
72 {
73 public:
74
75 /**
76 * Creates the INI file object
77 * @param fileName Name of the INI file
78 * @param mode File opening mode
79 */
80 IniFile(QString const & fileName, QIODevice::OpenMode mode = QIODevice::ReadWrite);
81
82 /// Dtor
83 ~IniFile();
84
85 /**
86 * Returns true if the object is valid
87 *
88 * The isValid() method returns true if the INI file is can be used. Use this
89 * method after creating the object to verify that opening the INI file in the specified
90 * mode succeeded.
91 */
92 bool isValid() const;
93
94 /**
95 * Returns the last error message.
96 *
97 * The errorString() method returns a human-readable error message if an operation with the INI file failed.
98 */
99 QString errorString() const;
100
101 /**
102 * Reads a value from the INI file.
103 * @param paramName Name of the parameter
104 * @param defaultValue Default value returned if the parameter value cannot be read
105 * @return The value from the INI file or an invalid QVariant if failed
106 *
107 * The getValue() method reads a parameter value from the INI file. Parameters are identified by a section and key name pair
108 * in the format '&lt;section&gt;/&lt;key&gt'. For example, if the section is called 'general' and the key is called 'log_level',
109 * then the name of the parameter should be given as 'general/log_level'. Parameter names are case insensitive.
110 *
111 * If the parameter cannot be read because it is not found in the INI file or the INI file object is invalid, returns the
112 * default value. If reading the parameter fails by any other reasons, returns an invalid QVariant value (QVariant::Invalid).
113 *
114 * If the default value is of a valid and known QVariant type, then its type is used to validate and optionally convert
115 * the string read from the INI file. For example:
116 * @li If the value in the INI file is 'abc' and the default value an integer value, then validation
117 * fails and the method returns the default value;
118 * @li If the default value is a boolean value, then the method accepts '1', 'true', 'on' and 'yes' as valid values.
119 */
120 QVariant getValue(QString const & paramName, QVariant const & defaultValue = QVariant::Invalid);
121
122 /**
123 * Writes a value to the INI file.
124 * @param paramName Name of the parameter
125 * @param value The value of the value
126 * @return True if succeeded and false if not
127 *
128 * The setValue() method writes a parameter value to the INI file. Parameters are identified by a section and key name pair
129 * in the format '&lt;section&gt;/&lt;key&gt;'. For example, if the section is called 'general' and the key is called 'log_level',
130 * the the name of the parameter should be given as 'general/log_level'. Parameter names are case insensitive.
131 *
132 * The method returns true if the parameter value was written into the INI file and false if not. Use the errorString() method
133 * to get a human-readable error string if writing to the INI file fails.
134 */
135 bool setValue(QString const & paramName, QVariant const & value);
136
137
138 private:
139
140 /// Pointer to the internal implementation of the class
141 Internal::IniFileImpl * d;
142
143 };
144
145 } // namespace eVaf::Common
146 } // namespace eVaf
147
148 #endif // inifile.h