Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(110)

Side by Side Diff: chrome/browser/extensions/api/storage/settings_storage_quota_enforcer.cc

Issue 165223003: Add a Restore() method to ValueStore and make StorageAPI use it (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/extensions/api/storage/settings_storage_quota_enforcer. h" 5 #include "chrome/browser/extensions/api/storage/settings_storage_quota_enforcer. h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/json/json_writer.h" 8 #include "base/json/json_writer.h"
9 #include "base/memory/scoped_ptr.h" 9 #include "base/memory/scoped_ptr.h"
10 #include "base/message_loop/message_loop.h" 10 #include "base/message_loop/message_loop.h"
11 #include "base/metrics/histogram.h" 11 #include "base/metrics/histogram.h"
12 #include "base/stl_util.h"
12 #include "base/strings/stringprintf.h" 13 #include "base/strings/stringprintf.h"
13 #include "chrome/browser/value_store/value_store_util.h" 14 #include "chrome/browser/value_store/value_store_util.h"
14 #include "extensions/common/extension_api.h" 15 #include "extensions/common/extension_api.h"
15 16
16 namespace util = value_store_util; 17 namespace util = value_store_util;
17 18
18 namespace extensions { 19 namespace extensions {
19 20
20 namespace { 21 namespace {
21 22
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
80 ValueStore::QUOTA_EXCEEDED, 81 ValueStore::QUOTA_EXCEEDED,
81 base::StringPrintf("%s quota exceeded", name), 82 base::StringPrintf("%s quota exceeded", name),
82 key.Pass())); 83 key.Pass()));
83 } 84 }
84 85
85 } // namespace 86 } // namespace
86 87
87 SettingsStorageQuotaEnforcer::SettingsStorageQuotaEnforcer( 88 SettingsStorageQuotaEnforcer::SettingsStorageQuotaEnforcer(
88 const Limits& limits, ValueStore* delegate) 89 const Limits& limits, ValueStore* delegate)
89 : limits_(limits), delegate_(delegate), used_total_(0) { 90 : limits_(limits), delegate_(delegate), used_total_(0) {
90 ReadResult maybe_settings = delegate_->Get(); 91 CalculateUsage();
91 if (maybe_settings->HasError()) {
92 LOG(WARNING) << "Failed to get initial settings for quota: " <<
93 maybe_settings->error().message;
94 return;
95 }
96
97 for (base::DictionaryValue::Iterator it(maybe_settings->settings());
98 !it.IsAtEnd(); it.Advance()) {
99 Allocate(it.key(), it.value(), &used_total_, &used_per_setting_);
100 }
101 } 92 }
102 93
103 SettingsStorageQuotaEnforcer::~SettingsStorageQuotaEnforcer() {} 94 SettingsStorageQuotaEnforcer::~SettingsStorageQuotaEnforcer() {}
104 95
105 size_t SettingsStorageQuotaEnforcer::GetBytesInUse(const std::string& key) { 96 size_t SettingsStorageQuotaEnforcer::GetBytesInUse(const std::string& key) {
106 std::map<std::string, size_t>::iterator maybe_used = 97 std::map<std::string, size_t>::iterator maybe_used =
107 used_per_setting_.find(key); 98 used_per_setting_.find(key);
108 return maybe_used == used_per_setting_.end() ? 0u : maybe_used->second; 99 return maybe_used == used_per_setting_.end() ? 0u : maybe_used->second;
109 } 100 }
110 101
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
222 } 213 }
223 return result.Pass(); 214 return result.Pass();
224 } 215 }
225 216
226 ValueStore::WriteResult SettingsStorageQuotaEnforcer::Clear() { 217 ValueStore::WriteResult SettingsStorageQuotaEnforcer::Clear() {
227 WriteResult result = delegate_->Clear(); 218 WriteResult result = delegate_->Clear();
228 if (result->HasError()) { 219 if (result->HasError()) {
229 return result.Pass(); 220 return result.Pass();
230 } 221 }
231 222
232 while (!used_per_setting_.empty()) { 223 used_per_setting_.clear();
233 Free(&used_total_, &used_per_setting_, used_per_setting_.begin()->first); 224 used_total_ = 0;
234 }
235 return result.Pass(); 225 return result.Pass();
236 } 226 }
237 227
228 bool SettingsStorageQuotaEnforcer::Restore() {
229 if (!delegate_->Restore()) {
230 // If we failed, we can't calculate the usage - that's okay, though, because
231 // next time we Restore() (if it succeeds) we will recalculate usage anyway.
232 // So reset storage counters now to free up resources.
233 used_per_setting_.clear();
234 used_total_ = 0u;
235 return false;
236 }
237 CalculateUsage();
238 return true;
239 }
240
241 bool SettingsStorageQuotaEnforcer::RestoreKey(const std::string& key) {
242 if (!delegate_->RestoreKey(key))
243 return false;
244
245 ReadResult result = Get(key);
246 // If the key was deleted as a result of the Restore() call, free it.
247 if (!result->settings().HasKey(key) && ContainsKey(used_per_setting_, key))
248 Free(&used_total_, &used_per_setting_, key);
249 return true;
250 }
251
252 void SettingsStorageQuotaEnforcer::CalculateUsage() {
not at google - send to devlin 2014/02/19 21:25:29 yeah, this is all complex enough to warrant testin
Devlin 2014/02/19 23:12:28 Will do in follow-up, if that's okay.
253 ReadResult maybe_settings = delegate_->Get();
254 if (maybe_settings->HasError()) {
255 // Try to restore the database if it's corrupt.
256 if (maybe_settings->error().code == ValueStore::CORRUPTION &&
257 delegate_->Restore()) {
258 maybe_settings = delegate_->Get();
259 } else {
260 LOG(WARNING) << "Failed to get settings for quota:"
261 << maybe_settings->error().message;
262 return;
263 }
264 }
265
266 for (base::DictionaryValue::Iterator it(maybe_settings->settings());
267 !it.IsAtEnd();
268 it.Advance()) {
269 Allocate(it.key(), it.value(), &used_total_, &used_per_setting_);
270 }
271 }
272
238 } // namespace extensions 273 } // namespace extensions
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698