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

Side by Side Diff: webkit/browser/dom_storage/dom_storage_host.cc

Issue 22297005: Move webkit/{browser,common}/dom_storage into content/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 4 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 | Annotate | Revision Log
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "webkit/browser/dom_storage/dom_storage_host.h"
6
7 #include "url/gurl.h"
8 #include "webkit/browser/dom_storage/dom_storage_area.h"
9 #include "webkit/browser/dom_storage/dom_storage_context.h"
10 #include "webkit/browser/dom_storage/dom_storage_namespace.h"
11 #include "webkit/common/dom_storage/dom_storage_types.h"
12
13 namespace dom_storage {
14
15 DomStorageHost::DomStorageHost(DomStorageContext* context)
16 : context_(context) {
17 }
18
19 DomStorageHost::~DomStorageHost() {
20 AreaMap::const_iterator it = connections_.begin();
21 for (; it != connections_.end(); ++it)
22 it->second.namespace_->CloseStorageArea(it->second.area_.get());
23 connections_.clear(); // Clear prior to releasing the context_
24 }
25
26 bool DomStorageHost::OpenStorageArea(int connection_id, int namespace_id,
27 const GURL& origin) {
28 DCHECK(!GetOpenArea(connection_id));
29 if (GetOpenArea(connection_id))
30 return false; // Indicates the renderer gave us very bad data.
31 NamespaceAndArea references;
32 references.namespace_ = context_->GetStorageNamespace(namespace_id);
33 if (!references.namespace_.get()) {
34 // TODO(michaeln): Fix crbug/134003 and return false here.
35 // Until then return true to avoid crashing the renderer for
36 // sending a bad message.
37 return true;
38 }
39 references.area_ = references.namespace_->OpenStorageArea(origin);
40 DCHECK(references.area_.get());
41 connections_[connection_id] = references;
42 return true;
43 }
44
45 void DomStorageHost::CloseStorageArea(int connection_id) {
46 AreaMap::iterator found = connections_.find(connection_id);
47 if (found == connections_.end())
48 return;
49 found->second.namespace_->CloseStorageArea(found->second.area_.get());
50 connections_.erase(found);
51 }
52
53 bool DomStorageHost::ExtractAreaValues(
54 int connection_id, ValuesMap* map) {
55 map->clear();
56 DomStorageArea* area = GetOpenArea(connection_id);
57 if (!area) {
58 // TODO(michaeln): Fix crbug/134003 and return false here.
59 // Until then return true to avoid crashing the renderer
60 // for sending a bad message.
61 return true;
62 }
63 if (!area->IsLoadedInMemory()) {
64 DomStorageNamespace* ns = GetNamespace(connection_id);
65 DCHECK(ns);
66 if (ns->CountInMemoryAreas() > kMaxInMemoryAreas) {
67 ns->PurgeMemory(DomStorageNamespace::PURGE_UNOPENED);
68 if (ns->CountInMemoryAreas() > kMaxInMemoryAreas)
69 ns->PurgeMemory(DomStorageNamespace::PURGE_AGGRESSIVE);
70 }
71 }
72 area->ExtractValues(map);
73 return true;
74 }
75
76 unsigned DomStorageHost::GetAreaLength(int connection_id) {
77 DomStorageArea* area = GetOpenArea(connection_id);
78 if (!area)
79 return 0;
80 return area->Length();
81 }
82
83 base::NullableString16 DomStorageHost::GetAreaKey(int connection_id,
84 unsigned index) {
85 DomStorageArea* area = GetOpenArea(connection_id);
86 if (!area)
87 return base::NullableString16();
88 return area->Key(index);
89 }
90
91 base::NullableString16 DomStorageHost::GetAreaItem(int connection_id,
92 const base::string16& key) {
93 DomStorageArea* area = GetOpenArea(connection_id);
94 if (!area)
95 return base::NullableString16();
96 return area->GetItem(key);
97 }
98
99 bool DomStorageHost::SetAreaItem(
100 int connection_id, const base::string16& key,
101 const base::string16& value, const GURL& page_url,
102 base::NullableString16* old_value) {
103 DomStorageArea* area = GetOpenArea(connection_id);
104 if (!area) {
105 // TODO(michaeln): Fix crbug/134003 and return false here.
106 // Until then return true to allow the renderer to operate
107 // to a limited degree out of its cache.
108 return true;
109 }
110 if (!area->SetItem(key, value, old_value))
111 return false;
112 if (old_value->is_null() || old_value->string() != value)
113 context_->NotifyItemSet(area, key, value, *old_value, page_url);
114 return true;
115 }
116
117 bool DomStorageHost::RemoveAreaItem(
118 int connection_id, const base::string16& key, const GURL& page_url,
119 base::string16* old_value) {
120 DomStorageArea* area = GetOpenArea(connection_id);
121 if (!area)
122 return false;
123 if (!area->RemoveItem(key, old_value))
124 return false;
125 context_->NotifyItemRemoved(area, key, *old_value, page_url);
126 return true;
127 }
128
129 bool DomStorageHost::ClearArea(int connection_id, const GURL& page_url) {
130 DomStorageArea* area = GetOpenArea(connection_id);
131 if (!area)
132 return false;
133 if (!area->Clear())
134 return false;
135 context_->NotifyAreaCleared(area, page_url);
136 return true;
137 }
138
139 bool DomStorageHost::HasAreaOpen(
140 int namespace_id, const GURL& origin) const {
141 AreaMap::const_iterator it = connections_.begin();
142 for (; it != connections_.end(); ++it) {
143 if (namespace_id == it->second.namespace_->namespace_id() &&
144 origin == it->second.area_->origin()) {
145 return true;
146 }
147 }
148 return false;
149 }
150
151 DomStorageArea* DomStorageHost::GetOpenArea(int connection_id) {
152 AreaMap::iterator found = connections_.find(connection_id);
153 if (found == connections_.end())
154 return NULL;
155 return found->second.area_.get();
156 }
157
158 DomStorageNamespace* DomStorageHost::GetNamespace(int connection_id) {
159 AreaMap::iterator found = connections_.find(connection_id);
160 if (found == connections_.end())
161 return NULL;
162 return found->second.namespace_.get();
163 }
164
165 // NamespaceAndArea
166
167 DomStorageHost::NamespaceAndArea::NamespaceAndArea() {}
168 DomStorageHost::NamespaceAndArea::~NamespaceAndArea() {}
169
170 } // namespace dom_storage
OLDNEW
« no previous file with comments | « webkit/browser/dom_storage/dom_storage_host.h ('k') | webkit/browser/dom_storage/dom_storage_namespace.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698