introducing autocached settings
[quassel.git] / src / common / settings.cpp
index 77144c7..eb4fc72 100644 (file)
@@ -1,11 +1,11 @@
 /***************************************************************************
- *   Copyright (C) 2005-07 by The Quassel Team                             *
+ *   Copyright (C) 2005-08 by the Quassel Project                          *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
  *   it under the terms of the GNU General Public License as published by  *
  *   the Free Software Foundation; either version 2 of the License, or     *
- *   (at your option) any later version.                                   *
+ *   (at your option) version 3.                                           *
  *                                                                         *
  *   This program is distributed in the hope that it will be useful,       *
  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
  ***************************************************************************/
 
+#include <QCoreApplication>
 #include <QSettings>
+#include <QStringList>
+#include <QDebug>
+
+#ifdef Q_WS_QWS
+#include <Qtopia>
+#endif
 
 #include "settings.h"
 
-Settings *settings;
+static QHash<QString, QHash<QString, QVariant> > __settingsCache__;
+
+Settings::Settings(QString g, QString applicationName)
+
+#ifdef Q_WS_MAC
+  : QSettings(QCoreApplication::organizationDomain(), applicationName),
+#else
+  : QSettings(QCoreApplication::organizationName(), applicationName),
+#endif
+    group(g)
+{
 
-void Settings::init() {
-  curProfile = QObject::tr("Default");
+/* we need to call the constructor immediately in order to set the path...
+#ifndef Q_WS_QWS
+  QSettings(QCoreApplication::organizationName(), applicationName);
+#else
+  // FIXME sandboxDir() is not currently working correctly...
+  //if(Qtopia::sandboxDir().isEmpty()) QSettings();
+  //else QSettings(Qtopia::sandboxDir() + "/etc/QuasselIRC.conf", QSettings::NativeFormat);
+  // ...so we have to use a workaround:
+  QString appPath = QCoreApplication::applicationFilePath();
+  if(appPath.startsWith(Qtopia::packagePath())) {
+    QString sandboxPath = appPath.left(Qtopia::packagePath().length() + 32);
+    QSettings(sandboxPath + "/etc/QuasselIRC.conf", QSettings::IniFormat);
+    qDebug() << sandboxPath + "/etc/QuasselIRC.conf";
+  } else {
+    QSettings(QCoreApplication::organizationName(), applicationName);
+  }
+#endif
+*/
 }
-/*
-Settings::~Settings() {
-  qDebug() << "destructing";
 
+QStringList Settings::allLocalKeys() {
+  beginGroup(group);
+  QStringList res = allKeys();
+  endGroup();
+  return res;
 }
-*/
 
-void Settings::setProfile(const QString &profile) {
-  curProfile = profile;
+QStringList Settings::localChildKeys(const QString &rootkey) {
+  QString g;
+  if(rootkey.isEmpty()) g = group;
+  else g = QString("%1/%2").arg(group, rootkey);
+  beginGroup(g);
+  QStringList res = childKeys();
+  endGroup();
+  return res;
 }
 
-void Settings::setGuiValue(const QString &key, const QVariant &value) {
-  QSettings s;
-  //s.setValue("GUI/Default/BufferStates/QuakeNet/#quassel/voicedExpanded", true);
-  //QString k = QString("GUI/%1/%2").arg(curProfile).arg(key);
-  s.setValue(QString("GUI/%1/%2").arg(curProfile).arg(key), value);
+QStringList Settings::localChildGroups(const QString &rootkey) {
+  QString g;
+  if(rootkey.isEmpty()) g = group;
+  else g = QString("%1/%2").arg(group, rootkey);
+  beginGroup(g);
+  QStringList res = childGroups();
+  endGroup();
+  return res;
 }
 
-QVariant Settings::guiValue(const QString &key, const QVariant &defaultValue) {
-  QSettings s;
-  return s.value(QString("GUI/%1/%2").arg(curProfile).arg(key), defaultValue);
+void Settings::setLocalValue(const QString &key, const QVariant &data) {
+  beginGroup(group);
+  setValue(key, data);
+  setCacheValue(group, key, data);
+  endGroup();
 }
 
-void Settings::setCoreValue(const QString &user, const QString &key, const QVariant &value) {
-  QSettings s;
-  s.setValue(QString("Core/%1/%2").arg(user).arg(key), value);
+const QVariant &Settings::localValue(const QString &key, const QVariant &def) {
+  if(!isCached(group, key)) {
+    beginGroup(group);
+    setCacheValue(group, key, value(key, def));
+    endGroup();
+  }
+  return cacheValue(group, key);
 }
 
-QVariant Settings::coreValue(const QString &user, const QString &key, const QVariant &defaultValue) {
-  QSettings s;
-  return s.value(QString("Core/%1/%2").arg(user).arg(key), defaultValue);
+void Settings::removeLocalKey(const QString &key) {
+  beginGroup(group);
+  remove(key);
+  endGroup();
 }
 
-QString Settings::curProfile;
+
+void Settings::setCacheValue(const QString &group, const QString &key, const QVariant &data) {
+  ::__settingsCache__[group][key] = data;
+}
+
+const QVariant &Settings::cacheValue(const QString &group, const QString &key) {
+  return ::__settingsCache__[group][key];
+}
+
+bool Settings::isCached(const QString &group, const QString &key) {
+  return ::__settingsCache__.contains(group) && ::__settingsCache__[group].contains(key);
+}