Settings upgrade logic, classic for old installs
[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 protected:
87     inline Settings(QString group_, QString appName_) : group(group_), appName(appName_) {}
88     inline virtual ~Settings() {}
89
90     inline void setGroup(const QString &group_) { group = group_; }
91
92     virtual QStringList allLocalKeys();
93     virtual QStringList localChildKeys(const QString &rootkey = QString());
94     virtual QStringList localChildGroups(const QString &rootkey = QString());
95
96     virtual void setLocalValue(const QString &key, const QVariant &data);
97     virtual const QVariant &localValue(const QString &key, const QVariant &def = QVariant());
98
99     /**
100      * Gets if a key exists in settings
101      *
102      * @param[in] key ID of local settings key
103      * @returns True if key exists in settings, otherwise false
104      */
105     virtual bool localKeyExists(const QString &key);
106
107     virtual void removeLocalKey(const QString &key);
108
109     QString group;
110     QString appName;
111
112 private:
113     inline QSettings::Format format()
114     {
115 #ifdef Q_OS_WIN
116         return QSettings::IniFormat;
117 #else
118         return QSettings::NativeFormat;
119 #endif
120     }
121
122
123     inline QString fileName()
124     {
125         return Quassel::configDirPath() + appName
126                + ((format() == QSettings::NativeFormat) ? QLatin1String(".conf") : QLatin1String(".ini"));
127     }
128
129
130     static QHash<QString, QVariant> settingsCache;
131     static QHash<QString, SettingsChangeNotifier *> settingsChangeNotifier;
132
133     inline QString normalizedKey(const QString &group, const QString &key)
134     {
135         if (group.isEmpty())
136             return key;
137         return group + '/' + key;
138     }
139
140
141     inline void setCacheValue(const QString &normKey, const QVariant &data)
142     {
143         settingsCache[normKey] = data;
144     }
145
146
147     inline const QVariant &cacheValue(const QString &normKey)
148     {
149         return settingsCache[normKey];
150     }
151
152
153     inline bool isCached(const QString &normKey)
154     {
155         return settingsCache.contains(normKey);
156     }
157
158
159     inline SettingsChangeNotifier *notifier(const QString &normKey)
160     {
161         if (!hasNotifier(normKey))
162             settingsChangeNotifier[normKey] = new SettingsChangeNotifier();
163         return settingsChangeNotifier[normKey];
164     }
165
166
167     inline bool hasNotifier(const QString &normKey)
168     {
169         return settingsChangeNotifier.contains(normKey);
170     }
171 };
172
173
174 #endif