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

Side by Side Diff: webkit/dom_storage/dom_storage_namespace.cc

Issue 9146025: Framing for a DOMStorage backend that does not depend on in-process-webkit. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. Use of this 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. Use of this
2 // source code is governed by a BSD-style license that can be found in the 2 // source code is governed by a BSD-style license that can be found in the
3 // LICENSE file. 3 // LICENSE file.
4 4
5 #include "content/browser/in_process_webkit/dom_storage_namespace.h" 5 #include "webkit/dom_storage/dom_storage_namespace.h"
6 6
7 #include "base/file_path.h" 7 #include "base/basictypes.h"
8 #include "content/browser/in_process_webkit/dom_storage_area.h" 8 #include "base/logging.h"
9 #include "content/browser/in_process_webkit/dom_storage_context.h" 9 #include "webkit/dom_storage/dom_storage_area.h"
10 #include "content/browser/in_process_webkit/dom_storage_message_filter.h" 10 #include "webkit/dom_storage/dom_storage_types.h"
11 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageArea.h"
12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageNamespace.h "
13 #include "webkit/glue/webkit_glue.h"
14 11
15 using WebKit::WebStorageArea; 12 namespace dom_storage {
16 using WebKit::WebStorageNamespace;
17 using WebKit::WebString;
18 13
19 /* static */ 14 DomStorageNamespace::DomStorageNamespace(
20 DOMStorageNamespace* DOMStorageNamespace::CreateLocalStorageNamespace( 15 const FilePath& directory,
21 DOMStorageContext* dom_storage_context, const FilePath& data_dir_path) { 16 DomStorageTaskRunner* task_runner)
22 int64 id = kLocalStorageNamespaceId; 17 : namespace_id_(kLocalStorageNamespaceId),
23 DCHECK(!dom_storage_context->GetStorageNamespace(id, false)); 18 directory_(directory),
24 return new DOMStorageNamespace(dom_storage_context, id, 19 task_runner_(task_runner) {
25 webkit_glue::FilePathToWebString(data_dir_path), DOM_STORAGE_LOCAL);
26 } 20 }
27 21
28 /* static */ 22 DomStorageNamespace::DomStorageNamespace(
29 DOMStorageNamespace* DOMStorageNamespace::CreateSessionStorageNamespace( 23 int64 namespace_id,
30 DOMStorageContext* dom_storage_context, int64 id) { 24 DomStorageTaskRunner* task_runner)
31 DCHECK(!dom_storage_context->GetStorageNamespace(id, false)); 25 : namespace_id_(namespace_id),
32 return new DOMStorageNamespace(dom_storage_context, id, WebString(), 26 task_runner_(task_runner) {
33 DOM_STORAGE_SESSION); 27 DCHECK_NE(kLocalStorageNamespaceId, namespace_id);
34 } 28 }
35 29
36 DOMStorageNamespace::DOMStorageNamespace(DOMStorageContext* dom_storage_context, 30 DomStorageArea* DomStorageNamespace::OpenStorageArea(const GURL& origin) {
37 int64 id, 31 if (AreaHolder* holder = GetAreaHolder(origin)) {
38 const WebString& data_dir_path, 32 ++(holder->open_count_);
39 DOMStorageType dom_storage_type) 33 return holder->area_;
40 : dom_storage_context_(dom_storage_context), 34 }
41 id_(id), 35 DomStorageArea* area = new DomStorageArea(namespace_id_, origin,
42 data_dir_path_(data_dir_path), 36 directory_, task_runner_);
43 dom_storage_type_(dom_storage_type) { 37 areas_[origin] = AreaHolder(area, 1);
44 DCHECK(dom_storage_context_); 38 return area;
45 } 39 }
46 40
47 DOMStorageNamespace::~DOMStorageNamespace() { 41 void DomStorageNamespace::CloseStorageArea(DomStorageArea* area) {
48 // TODO(jorlow): If the DOMStorageContext is being destructed, there's no need 42 AreaHolder* holder = GetAreaHolder(area->origin());
49 // to do these calls. Maybe we should add a fast path? 43 DCHECK(holder);
50 for (OriginToStorageAreaMap::iterator iter(origin_to_storage_area_.begin()); 44 DCHECK_EQ(holder->area_.get(), area);
51 iter != origin_to_storage_area_.end(); ++iter) { 45 --(holder->open_count_);
52 dom_storage_context_->UnregisterStorageArea(iter->second); 46 // TODO(michaeln): Clean up areas that aren't needed in memory anymore.
53 delete iter->second; 47 // The in-process-webkit based impl didn't do this either, but would be nice.
54 }
55 } 48 }
56 49
57 DOMStorageArea* DOMStorageNamespace::GetStorageArea(const string16& origin) { 50 DomStorageNamespace* DomStorageNamespace::Clone(int64 clone_namespace_id) {
58 // We may have already created it for another dispatcher host. 51 DCHECK_NE(kLocalStorageNamespaceId, namespace_id_);
59 OriginToStorageAreaMap::iterator iter = origin_to_storage_area_.find(origin); 52 DCHECK_NE(kLocalStorageNamespaceId, clone_namespace_id);
60 if (iter != origin_to_storage_area_.end()) 53 DomStorageNamespace* clone =
61 return iter->second; 54 new DomStorageNamespace(clone_namespace_id, task_runner_);
62 55 AreaMap::const_iterator it = areas_.begin();
63 // We need to create a new one. 56 for (; it != areas_.end(); ++it) {
64 int64 id = dom_storage_context_->AllocateStorageAreaId(); 57 DomStorageArea* area = it->second.area_->ShallowCopy(clone_namespace_id);
65 DCHECK(!dom_storage_context_->GetStorageArea(id)); 58 clone->areas_[it->first] = AreaHolder(area, 0);
66 DOMStorageArea* storage_area = new DOMStorageArea(origin, id, this); 59 }
67 origin_to_storage_area_[origin] = storage_area; 60 return clone;
68 dom_storage_context_->RegisterStorageArea(storage_area);
69 return storage_area;
70 } 61 }
71 62
72 DOMStorageNamespace* DOMStorageNamespace::Copy(int64 id) { 63 DomStorageNamespace::AreaHolder*
73 DCHECK(dom_storage_type_ == DOM_STORAGE_SESSION); 64 DomStorageNamespace::GetAreaHolder(const GURL& origin) {
74 DCHECK(!dom_storage_context_->GetStorageNamespace(id, false)); 65 AreaMap::iterator found = areas_.find(origin);
75 DOMStorageNamespace* new_storage_namespace = new DOMStorageNamespace( 66 if (found == areas_.end())
76 dom_storage_context_, id, data_dir_path_, dom_storage_type_); 67 return NULL;
77 // If we haven't used the namespace yet, there's nothing to copy. 68 return &(found->second);
78 if (storage_namespace_.get())
79 new_storage_namespace->storage_namespace_.reset(storage_namespace_->copy());
80 return new_storage_namespace;
81 } 69 }
82 70
83 void DOMStorageNamespace::PurgeMemory() { 71 // AreaHolder
84 DCHECK(dom_storage_type_ == DOM_STORAGE_LOCAL); 72
85 for (OriginToStorageAreaMap::iterator iter(origin_to_storage_area_.begin()); 73 DomStorageNamespace::AreaHolder::AreaHolder()
86 iter != origin_to_storage_area_.end(); ++iter) 74 : open_count_(0) {
87 iter->second->PurgeMemory();
88 storage_namespace_.reset();
89 } 75 }
90 76
91 WebStorageArea* DOMStorageNamespace::CreateWebStorageArea( 77 DomStorageNamespace::AreaHolder::AreaHolder(
92 const string16& origin) { 78 DomStorageArea* area, int count)
93 CreateWebStorageNamespaceIfNecessary(); 79 : area_(area), open_count_(count) {
94 return storage_namespace_->createStorageArea(origin);
95 } 80 }
96 81
97 void DOMStorageNamespace::CreateWebStorageNamespaceIfNecessary() { 82 DomStorageNamespace::AreaHolder::~AreaHolder() {
98 if (storage_namespace_.get()) 83 }
99 return;
100 84
101 if (dom_storage_type_ == DOM_STORAGE_LOCAL) { 85 } // namespace dom_storage
102 storage_namespace_.reset(
103 WebStorageNamespace::createLocalStorageNamespace(data_dir_path_,
104 WebStorageNamespace::m_localStorageQuota));
105 } else {
106 storage_namespace_.reset(WebStorageNamespace::createSessionStorageNamespace(
107 WebStorageNamespace::m_sessionStorageQuota));
108 }
109 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698