X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcommon%2Fsettings.h;h=681e5b274855c4cff15db2ae3b5d02719c071776;hb=4e88f2c1bcce0c4ebb7e8901cc382513266dea56;hp=e9bf28d087da87869c83fc367682de98c00c878e;hpb=d2ac8f78a0e050d2efa397c434b249d6b3391576;p=quassel.git diff --git a/src/common/settings.h b/src/common/settings.h index e9bf28d0..681e5b27 100644 --- a/src/common/settings.h +++ b/src/common/settings.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -83,6 +83,20 @@ public: */ virtual void setVersionMinor(const uint versionMinor); + /** + * Persist unsaved changes to permanent storage + * + * @return true if succeeded, false otherwise + */ + bool sync(); + + /** + * Check if the configuration storage is writable. + * + * @return true if writable, false otherwise + */ + bool isWritable(); + protected: inline Settings(QString group_, QString appName_) : group(group_), appName(appName_) {} inline virtual ~Settings() {} @@ -94,7 +108,7 @@ protected: virtual QStringList localChildGroups(const QString &rootkey = QString()); virtual void setLocalValue(const QString &key, const QVariant &data); - virtual const QVariant &localValue(const QString &key, const QVariant &def = QVariant()); + virtual QVariant localValue(const QString &key, const QVariant &def = QVariant()); /** * Gets if a key exists in settings @@ -127,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) @@ -138,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;