X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fsettings.h;h=625291e838c7b3a43bfff397c2656e1023df9df5;hp=36576058a3d84fff45495b08808ad8f5fad85fa7;hb=ebbd0abc75dc8c1e9e5786e3e63d478233746dd9;hpb=af6cd0ea27697a79902413da2ff898a87955ebe2 diff --git a/src/common/settings.h b/src/common/settings.h index 36576058..625291e8 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -141,7 +141,8 @@ private: } - static QHash settingsCache; + static QHash settingsCache; ///< Cached settings values + static QHash settingsKeyPersistedCache; ///< Cached settings key exists on disk static QHash settingsChangeNotifier; inline QString normalizedKey(const QString &group, const QString &key) @@ -152,6 +153,44 @@ private: } + /** + * Update the cache of whether or not a given settings key persists on disk + * + * @param normKey Normalized settings key ID + * @param exists True if key exists, otherwise false + */ + inline void setCacheKeyPersisted(const QString &normKey, bool exists) + { + settingsKeyPersistedCache[normKey] = exists; + } + + + /** + * Check if the given settings key ID persists on disk (rather than being a default value) + * + * @see Settings::localKeyExists() + * + * @param normKey Normalized settings key ID + * @return True if key exists and persistence has been cached, otherwise false + */ + inline const bool &cacheKeyPersisted(const QString &normKey) + { + return settingsKeyPersistedCache[normKey]; + } + + + /** + * Check if the persistence of the given settings key ID has been cached + * + * @param normKey Normalized settings key ID + * @return True if key persistence has been cached, otherwise false + */ + inline bool isKeyPersistedCached(const QString &normKey) + { + return settingsKeyPersistedCache.contains(normKey); + } + + inline void setCacheValue(const QString &normKey, const QVariant &data) { settingsCache[normKey] = data;