X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fsettings.cpp;h=d742af16bd273dc1b8cdfae0dcba9352a67c3e3b;hb=74226102118400b228618f7373137a4a01e7d85f;hp=6273f7c7400c70c09de1fe5dad23ac8068f8be68;hpb=ebe555951f043ac230149436fb15627120da945e;p=quassel.git diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 6273f7c7..d742af16 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -30,6 +30,7 @@ const int VERSION = 1; /// Settings version for backwords/forwards const int VERSION_MINOR_INITIAL = 1; /// Initial settings version for compatible changes QHash Settings::settingsCache; +QHash Settings::settingsKeyPersistedCache; QHash Settings::settingsChangeNotifier; #ifdef Q_OS_MAC @@ -186,6 +187,7 @@ void Settings::setLocalValue(const QString &key, const QVariant &data) QString normKey = normalizedKey(group, key); create_qsettings; s.setValue(normKey, data); + setCacheKeyPersisted(normKey, true); setCacheValue(normKey, data); if (hasNotifier(normKey)) { emit notifier(normKey)->valueChanged(data); @@ -198,19 +200,32 @@ const QVariant &Settings::localValue(const QString &key, const QVariant &def) QString normKey = normalizedKey(group, key); if (!isCached(normKey)) { create_qsettings; + // Since we're loading from settings anyways, cache whether or not the key exists on disk + setCacheKeyPersisted(normKey, s.contains(normKey)); + // Cache key value setCacheValue(normKey, s.value(normKey, def)); } - return cacheValue(normKey); + if (cacheKeyPersisted(normKey)) { + return cacheValue(normKey); + } else { + // Don't return possibly wrong cached values + // A key gets cached with the first default value requested and never changes afterwards + return def; + } } bool Settings::localKeyExists(const QString &key) { QString normKey = normalizedKey(group, key); - // Do NOT check the cache as default values get cached, too. Otherwise loading a setting once - // will mark it as existing in settings, even when it only exists in cache (and not on disk). - create_qsettings; - return s.contains(normKey); + if (!isKeyPersistedCached(normKey)) { + create_qsettings; + // Cache whether or not key exists on disk + // We can't cache key value as we don't know the default + setCacheKeyPersisted(normKey, s.contains(normKey)); + } + + return cacheKeyPersisted(normKey); } @@ -224,6 +239,9 @@ void Settings::removeLocalKey(const QString &key) if (isCached(normKey)) { settingsCache.remove(normKey); } + if (isKeyPersistedCached(normKey)) { + settingsKeyPersistedCache.remove(normKey); + } if (hasNotifier(normKey)) { emit notifier(normKey)->valueChanged({}); }