#ifndef EXTENSIONS_BROWSER_API_STORAGE_SETTINGS_STORAGE_QUOTA_ENFORCER_H_
#define EXTENSIONS_BROWSER_API_STORAGE_SETTINGS_STORAGE_QUOTA_ENFORCER_H_
#include "base/compiler_specific.h"
#include "base/memory/weak_ptr.h"
#include "extensions/browser/value_store/value_store.h"
namespace extensions {
class SettingsStorageQuotaEnforcer : public ValueStore {
public:
struct Limits {
size_t quota_bytes;
size_t quota_bytes_per_item;
size_t max_items;
};
SettingsStorageQuotaEnforcer(const Limits& limits, ValueStore* delegate);
virtual ~SettingsStorageQuotaEnforcer();
virtual size_t GetBytesInUse(const std::string& key) OVERRIDE;
virtual size_t GetBytesInUse(const std::vector<std::string>& keys) OVERRIDE;
virtual size_t GetBytesInUse() OVERRIDE;
virtual ReadResult Get(const std::string& key) OVERRIDE;
virtual ReadResult Get(const std::vector<std::string>& keys) OVERRIDE;
virtual ReadResult Get() OVERRIDE;
virtual WriteResult Set(
WriteOptions options,
const std::string& key,
const base::Value& value) OVERRIDE;
virtual WriteResult Set(
WriteOptions options, const base::DictionaryValue& values) OVERRIDE;
virtual WriteResult Remove(const std::string& key) OVERRIDE;
virtual WriteResult Remove(const std::vector<std::string>& keys) OVERRIDE;
virtual WriteResult Clear() OVERRIDE;
virtual bool Restore() OVERRIDE;
virtual bool RestoreKey(const std::string& key) OVERRIDE;
ValueStore* get_delegate_for_test() { return delegate_.get(); }
private:
void CalculateUsage();
const Limits limits_;
scoped_ptr<ValueStore> const delegate_;
size_t used_total_;
std::map<std::string, size_t> used_per_setting_;
DISALLOW_COPY_AND_ASSIGN(SettingsStorageQuotaEnforcer);
};
}
#endif