Assert Settings backing store is writable if core is unconfigured.
[quassel.git] / src / common / settings.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #ifndef SETTINGS_H
22 #define SETTINGS_H
23
24 #include <QCoreApplication>
25 #include <QHash>
26 #include <QSettings>
27 #include <QString>
28 #include <QVariant>
29
30 #include "quassel.h"
31
32 class SettingsChangeNotifier : public QObject
33 {
34     Q_OBJECT
35
36 signals:
37     void valueChanged(const QVariant &newValue);
38
39 private:
40     friend class Settings;
41 };
42
43
44 class Settings
45 {
46 public:
47     enum Mode { Default, Custom };
48
49 public:
50     //! Call the given slot on change of the given key
51     virtual void notify(const QString &key, QObject *receiver, const char *slot);
52
53     //! Sets up notification and calls the given slot to set the initial value
54     void initAndNotify(const QString &key, QObject *receiver, const char *slot, const QVariant &defaultValue = QVariant());
55
56     /**
57      * Get the major configuration version
58      *
59      * This indicates the backwards/forwards incompatible version of configuration.
60      *
61      * @return Major configuration version (the X in XX.YY)
62      */
63     virtual uint version();
64
65     /**
66      * Get the minor configuration version
67      *
68      * This indicates the backwards/forwards compatible version of configuration.
69      *
70      * @see Settings::setVersionMinor()
71      * @return Minor configuration version (the Y in XX.YY)
72      */
73     virtual uint versionMinor();
74
75     /**
76      * Set the minor configuration version
77      *
78      * When making backwards/forwards compatible changes, call this with the new version number.
79      * This does not implement any upgrade logic; implement that when checking Settings::version(),
80      * e.g. in Core::Core() and QtUiApplication::init().
81      *
82      * @param[in] versionMinor New minor version number
83      */
84     virtual void setVersionMinor(const uint versionMinor);
85
86     /**
87      * Check if the configuration storage is writable.
88      *
89      * @return true if writable, false otherwise
90      */
91     bool isWritable();
92
93 protected:
94     inline Settings(QString group_, QString appName_) : group(group_), appName(appName_) {}
95     inline virtual ~Settings() {}
96
97     inline void setGroup(const QString &group_) { group = group_; }
98
99     virtual QStringList allLocalKeys();
100     virtual QStringList localChildKeys(const QString &rootkey = QString());
101     virtual QStringList localChildGroups(const QString &rootkey = QString());
102
103     virtual void setLocalValue(const QString &key, const QVariant &data);
104     virtual const QVariant &localValue(const QString &key, const QVariant &def = QVariant());
105
106     /**
107      * Gets if a key exists in settings
108      *
109      * @param[in] key ID of local settings key
110      * @returns True if key exists in settings, otherwise false
111      */
112     virtual bool localKeyExists(const QString &key);
113
114     virtual void removeLocalKey(const QString &key);
115
116     QString group;
117     QString appName;
118
119 private:
120     inline QSettings::Format format()
121     {
122 #ifdef Q_OS_WIN
123         return QSettings::IniFormat;
124 #else
125         return QSettings::NativeFormat;
126 #endif
127     }
128
129
130     inline QString fileName()
131     {
132         return Quassel::configDirPath() + appName
133                + ((format() == QSettings::NativeFormat) ? QLatin1String(".conf") : QLatin1String(".ini"));
134     }
135
136
137     static QHash<QString, QVariant> settingsCache;
138     static QHash<QString, SettingsChangeNotifier *> settingsChangeNotifier;
139
140     inline QString normalizedKey(const QString &group, const QString &key)
141     {
142         if (group.isEmpty())
143             return key;
144         return group + '/' + key;
145     }
146
147
148     inline void setCacheValue(const QString &normKey, const QVariant &data)
149     {
150         settingsCache[normKey] = data;
151     }
152
153
154     inline const QVariant &cacheValue(const QString &normKey)
155     {
156         return settingsCache[normKey];
157     }
158
159
160     inline bool isCached(const QString &normKey)
161     {
162         return settingsCache.contains(normKey);
163     }
164
165
166     inline SettingsChangeNotifier *notifier(const QString &normKey)
167     {
168         if (!hasNotifier(normKey))
169             settingsChangeNotifier[normKey] = new SettingsChangeNotifier();
170         return settingsChangeNotifier[normKey];
171     }
172
173
174     inline bool hasNotifier(const QString &normKey)
175     {
176         return settingsChangeNotifier.contains(normKey);
177     }
178 };
179
180
181 #endif