c3713d9c1a17d8eae31d0af0f6b5262a8c97af52
[quassel.git] / src / common / settings.cpp
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 #include <QStringList>
22
23 #include "settings.h"
24
25 const int VERSION = 1;              /// Settings version for backwords/forwards incompatible changes
26
27 // This is used if no VersionMinor key exists, e.g. upgrading from a Quassel version before this
28 // change.  This shouldn't be increased from 1; instead, change the logic in Core::Core() and
29 // QtUiApplication::init() to handle upgrading and downgrading.
30 const int VERSION_MINOR_INITIAL = 1; /// Initial settings version for compatible changes
31
32 QHash<QString, QVariant> Settings::settingsCache;
33 QHash<QString, SettingsChangeNotifier *> Settings::settingsChangeNotifier;
34
35 #ifdef Q_OS_MAC
36 #  define create_qsettings QSettings s(QCoreApplication::organizationDomain(), appName)
37 #else
38 #  define create_qsettings QSettings s(fileName(), format())
39 #endif
40
41 // Settings::Settings(QString group_, QString appName_)
42 //   : group(group_),
43 //     appName(appName_)
44 // {
45
46 // /* we need to call the constructor immediately in order to set the path...
47 // #ifndef Q_WS_QWS
48 //   QSettings(QCoreApplication::organizationName(), applicationName);
49 // #else
50 //   // FIXME sandboxDir() is not currently working correctly...
51 //   //if(Qtopia::sandboxDir().isEmpty()) QSettings();
52 //   //else QSettings(Qtopia::sandboxDir() + "/etc/QuasselIRC.conf", QSettings::NativeFormat);
53 //   // ...so we have to use a workaround:
54 //   QString appPath = QCoreApplication::applicationFilePath();
55 //   if(appPath.startsWith(Qtopia::packagePath())) {
56 //     QString sandboxPath = appPath.left(Qtopia::packagePath().length() + 32);
57 //     QSettings(sandboxPath + "/etc/QuasselIRC.conf", QSettings::IniFormat);
58 //     qDebug() << sandboxPath + "/etc/QuasselIRC.conf";
59 //   } else {
60 //     QSettings(QCoreApplication::organizationName(), applicationName);
61 //   }
62 // #endif
63 // */
64 // }
65
66 void Settings::notify(const QString &key, QObject *receiver, const char *slot)
67 {
68     QObject::connect(notifier(normalizedKey(group, key)), SIGNAL(valueChanged(const QVariant &)),
69         receiver, slot);
70 }
71
72
73 void Settings::initAndNotify(const QString &key, QObject *receiver, const char *slot, const QVariant &defaultValue)
74 {
75     notify(key, receiver, slot);
76     emit notifier(normalizedKey(group, key))->valueChanged(localValue(key, defaultValue));
77 }
78
79
80 uint Settings::version()
81 {
82     // we don't cache this value, and we ignore the group
83     create_qsettings;
84     uint ver = s.value("Config/Version", 0).toUInt();
85     if (!ver) {
86         // No version, so create one
87         s.setValue("Config/Version", VERSION);
88         return VERSION;
89     }
90     return ver;
91 }
92
93
94 uint Settings::versionMinor()
95 {
96     // Don't cache this value; ignore the group
97     create_qsettings;
98     // '0' means new configuration, anything else indicates an existing configuration.  Application
99     // initialization should check this value and manage upgrades/downgrades, e.g. in Core::Core()
100     // and QtUiApplication::init().
101     uint verMinor = s.value("Config/VersionMinor", 0).toUInt();
102
103     // As previous Quassel versions didn't implement this, we need to check if any settings other
104     // than Config/Version exist.  If so, assume it's version 1.
105     if (verMinor == 0 && s.allKeys().count() > 1) {
106         // More than 1 key exists, but version's never been set.  Assume and set version 1.
107         setVersionMinor(VERSION_MINOR_INITIAL);
108         return VERSION_MINOR_INITIAL;
109     } else {
110         return verMinor;
111     }
112 }
113
114
115 void Settings::setVersionMinor(const uint versionMinor)
116 {
117     // Don't cache this value; ignore the group
118     create_qsettings;
119     // Set the value directly.
120     s.setValue("Config/VersionMinor", versionMinor);
121 }
122
123 bool Settings::isWritable() {
124     create_qsettings;
125     return s.isWritable();
126 }
127
128 QStringList Settings::allLocalKeys()
129 {
130     create_qsettings;
131     s.beginGroup(group);
132     QStringList res = s.allKeys();
133     s.endGroup();
134     return res;
135 }
136
137
138 QStringList Settings::localChildKeys(const QString &rootkey)
139 {
140     QString g;
141     if (rootkey.isEmpty())
142         g = group;
143     else
144         g = QString("%1/%2").arg(group, rootkey);
145
146     create_qsettings;
147     s.beginGroup(g);
148     QStringList res = s.childKeys();
149     s.endGroup();
150     return res;
151 }
152
153
154 QStringList Settings::localChildGroups(const QString &rootkey)
155 {
156     QString g;
157     if (rootkey.isEmpty())
158         g = group;
159     else
160         g = QString("%1/%2").arg(group, rootkey);
161
162     create_qsettings;
163     s.beginGroup(g);
164     QStringList res = s.childGroups();
165     s.endGroup();
166     return res;
167 }
168
169
170 void Settings::setLocalValue(const QString &key, const QVariant &data)
171 {
172     QString normKey = normalizedKey(group, key);
173     create_qsettings;
174     s.setValue(normKey, data);
175     setCacheValue(normKey, data);
176     if (hasNotifier(normKey)) {
177         emit notifier(normKey)->valueChanged(data);
178     }
179 }
180
181
182 const QVariant &Settings::localValue(const QString &key, const QVariant &def)
183 {
184     QString normKey = normalizedKey(group, key);
185     if (!isCached(normKey)) {
186         create_qsettings;
187         setCacheValue(normKey, s.value(normKey, def));
188     }
189     return cacheValue(normKey);
190 }
191
192 bool Settings::localKeyExists(const QString &key)
193 {
194     QString normKey = normalizedKey(group, key);
195     if (isCached(normKey))
196         return true;
197
198     create_qsettings;
199     return s.contains(normKey);
200 }
201
202
203 void Settings::removeLocalKey(const QString &key)
204 {
205     create_qsettings;
206     s.beginGroup(group);
207     s.remove(key);
208     s.endGroup();
209     QString normKey = normalizedKey(group, key);
210     if (isCached(normKey))
211         settingsCache.remove(normKey);
212 }