fixing request -> receive sync calls
[quassel.git] / src / common / settings.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #ifndef SETTINGS_H
22 #define SETTINGS_H
23
24 #include <QCoreApplication>
25 #include <QHash>
26 #include <QString>
27 #include <QVariant>
28
29 class SettingsChangeNotifier : public QObject {
30   Q_OBJECT
31
32 signals:
33   void valueChanged(const QVariant &newValue);
34
35 private:
36   friend class Settings;
37 };
38
39 class Settings {
40 public:
41   enum Mode { Default, Custom };
42
43 public:
44   virtual void notify(const QString &key, QObject *receiver, const char *slot);
45
46 protected:
47   inline Settings(QString group_, QString appName_) : group(group_), appName(appName_) {}
48   inline virtual ~Settings() {}
49
50   inline void setGroup(const QString &group_) { group = group_; }
51
52   virtual QStringList allLocalKeys();
53   virtual QStringList localChildKeys(const QString &rootkey = QString());
54   virtual QStringList localChildGroups(const QString &rootkey = QString());
55
56   virtual void setLocalValue(const QString &key, const QVariant &data);
57   virtual const QVariant &localValue(const QString &key, const QVariant &def = QVariant());
58
59   virtual void removeLocalKey(const QString &key);
60
61   QString group;
62   QString appName;
63
64 private:
65   inline QString org() {
66 #ifdef Q_WS_MAC
67     return QCoreApplication::organizationDomain();
68 #else
69     return QCoreApplication::organizationName();
70 #endif
71   }
72
73   static QHash<QString, QHash<QString, QVariant> > settingsCache;
74   static QHash<QString, QHash<QString, SettingsChangeNotifier *> > settingsChangeNotifier;
75
76   inline void setCacheValue(const QString &group, const QString &key, const QVariant &data) {
77     settingsCache[group][key] = data;
78   }
79   inline const QVariant &cacheValue(const QString &group, const QString &key) {
80     return settingsCache[group][key];
81   }
82   inline bool isCached(const QString &group, const QString &key) {
83     return settingsCache.contains(group) && settingsCache[group].contains(key);
84   }
85
86   inline SettingsChangeNotifier *notifier(const QString &group, const QString &key) {
87     if(!hasNotifier(group, key))
88       settingsChangeNotifier[group][key] = new SettingsChangeNotifier();
89     return settingsChangeNotifier[group][key];
90   }
91
92   inline bool hasNotifier(const QString &group, const QString &key) {
93     return settingsChangeNotifier.contains(group) && settingsChangeNotifier[group].contains(key);
94   }
95 };
96
97 #endif