blob: 4fe2c3c71e33494fc8aaa1131147f4af3f51c117 [file] [log] [blame]
Ben Murdochbb1529c2013-08-08 10:24:53 +01001// Copyright 2013 The Chromium Authors. All rights reserved.
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +01002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Ben Murdochbb1529c2013-08-08 10:24:53 +01005#include "content/common/dom_storage/dom_storage_map.h"
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +01006
7#include "base/logging.h"
8
Ben Murdochbb1529c2013-08-08 10:24:53 +01009namespace content {
10
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010011namespace {
12
13size_t size_of_item(const base::string16& key, const base::string16& value) {
14 return (key.length() + value.length()) * sizeof(char16);
15}
16
Ben Murdochbb1529c2013-08-08 10:24:53 +010017size_t CountBytes(const DOMStorageValuesMap& values) {
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010018 if (values.size() == 0)
19 return 0;
20
21 size_t count = 0;
Ben Murdochbb1529c2013-08-08 10:24:53 +010022 DOMStorageValuesMap::const_iterator it = values.begin();
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010023 for (; it != values.end(); ++it)
24 count += size_of_item(it->first, it->second.string());
25 return count;
26}
27
28} // namespace
29
Ben Murdochbb1529c2013-08-08 10:24:53 +010030DOMStorageMap::DOMStorageMap(size_t quota)
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010031 : bytes_used_(0),
32 quota_(quota) {
33 ResetKeyIterator();
34}
35
Ben Murdochbb1529c2013-08-08 10:24:53 +010036DOMStorageMap::~DOMStorageMap() {}
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010037
Ben Murdochbb1529c2013-08-08 10:24:53 +010038unsigned DOMStorageMap::Length() const {
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010039 return values_.size();
40}
41
Ben Murdochbb1529c2013-08-08 10:24:53 +010042base::NullableString16 DOMStorageMap::Key(unsigned index) {
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010043 if (index >= values_.size())
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010044 return base::NullableString16();
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010045 while (last_key_index_ != index) {
46 if (last_key_index_ > index) {
47 --key_iterator_;
48 --last_key_index_;
49 } else {
50 ++key_iterator_;
51 ++last_key_index_;
52 }
53 }
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010054 return base::NullableString16(key_iterator_->first, false);
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010055}
56
Ben Murdochbb1529c2013-08-08 10:24:53 +010057base::NullableString16 DOMStorageMap::GetItem(const base::string16& key) const {
58 DOMStorageValuesMap::const_iterator found = values_.find(key);
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010059 if (found == values_.end())
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010060 return base::NullableString16();
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010061 return found->second;
62}
63
Ben Murdochbb1529c2013-08-08 10:24:53 +010064bool DOMStorageMap::SetItem(
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010065 const base::string16& key, const base::string16& value,
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010066 base::NullableString16* old_value) {
Ben Murdochbb1529c2013-08-08 10:24:53 +010067 DOMStorageValuesMap::const_iterator found = values_.find(key);
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010068 if (found == values_.end())
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010069 *old_value = base::NullableString16();
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010070 else
71 *old_value = found->second;
72
73 size_t old_item_size = old_value->is_null() ?
74 0 : size_of_item(key, old_value->string());
75 size_t new_item_size = size_of_item(key, value);
76 size_t new_bytes_used = bytes_used_ - old_item_size + new_item_size;
77
78 // Only check quota if the size is increasing, this allows
79 // shrinking changes to pre-existing files that are over budget.
80 if (new_item_size > old_item_size && new_bytes_used > quota_)
81 return false;
82
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010083 values_[key] = base::NullableString16(value, false);
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010084 ResetKeyIterator();
85 bytes_used_ = new_bytes_used;
86 return true;
87}
88
Ben Murdochbb1529c2013-08-08 10:24:53 +010089bool DOMStorageMap::RemoveItem(
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010090 const base::string16& key,
91 base::string16* old_value) {
Ben Murdochbb1529c2013-08-08 10:24:53 +010092 DOMStorageValuesMap::iterator found = values_.find(key);
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +010093 if (found == values_.end())
94 return false;
95 *old_value = found->second.string();
96 values_.erase(found);
97 ResetKeyIterator();
98 bytes_used_ -= size_of_item(key, *old_value);
99 return true;
100}
101
Ben Murdochbb1529c2013-08-08 10:24:53 +0100102void DOMStorageMap::SwapValues(DOMStorageValuesMap* values) {
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100103 // Note: A pre-existing file may be over the quota budget.
104 values_.swap(*values);
105 bytes_used_ = CountBytes(values_);
106 ResetKeyIterator();
107}
108
Ben Murdochbb1529c2013-08-08 10:24:53 +0100109DOMStorageMap* DOMStorageMap::DeepCopy() const {
110 DOMStorageMap* copy = new DOMStorageMap(quota_);
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100111 copy->values_ = values_;
112 copy->bytes_used_ = bytes_used_;
113 copy->ResetKeyIterator();
114 return copy;
115}
116
Ben Murdochbb1529c2013-08-08 10:24:53 +0100117void DOMStorageMap::ResetKeyIterator() {
Torne (Richard Coles)868fa2f2013-06-11 10:57:03 +0100118 key_iterator_ = values_.begin();
119 last_key_index_ = 0;
120}
121
Ben Murdochbb1529c2013-08-08 10:24:53 +0100122} // namespace content