OLD | NEW |
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" | |
9 #include "content/browser/in_process_webkit/dom_storage_context.h" | |
10 #include "content/browser/in_process_webkit/dom_storage_message_filter.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 | 8 |
15 using WebKit::WebStorageArea; | 9 namespace dom_storage { |
16 using WebKit::WebStorageNamespace; | |
17 using WebKit::WebString; | |
18 | 10 |
19 /* static */ | 11 DomStorageArea* DomStorageNamespace::GetStorageArea(const GURL& origin) { |
20 DOMStorageNamespace* DOMStorageNamespace::CreateLocalStorageNamespace( | 12 return NULL; |
21 DOMStorageContext* dom_storage_context, const FilePath& data_dir_path) { | |
22 int64 id = kLocalStorageNamespaceId; | |
23 DCHECK(!dom_storage_context->GetStorageNamespace(id, false)); | |
24 return new DOMStorageNamespace(dom_storage_context, id, | |
25 webkit_glue::FilePathToWebString(data_dir_path), DOM_STORAGE_LOCAL); | |
26 } | 13 } |
27 | 14 |
28 /* static */ | 15 } // namespace dom_storage |
29 DOMStorageNamespace* DOMStorageNamespace::CreateSessionStorageNamespace( | |
30 DOMStorageContext* dom_storage_context, int64 id) { | |
31 DCHECK(!dom_storage_context->GetStorageNamespace(id, false)); | |
32 return new DOMStorageNamespace(dom_storage_context, id, WebString(), | |
33 DOM_STORAGE_SESSION); | |
34 } | |
35 | |
36 DOMStorageNamespace::DOMStorageNamespace(DOMStorageContext* dom_storage_context, | |
37 int64 id, | |
38 const WebString& data_dir_path, | |
39 DOMStorageType dom_storage_type) | |
40 : dom_storage_context_(dom_storage_context), | |
41 id_(id), | |
42 data_dir_path_(data_dir_path), | |
43 dom_storage_type_(dom_storage_type) { | |
44 DCHECK(dom_storage_context_); | |
45 } | |
46 | |
47 DOMStorageNamespace::~DOMStorageNamespace() { | |
48 // TODO(jorlow): If the DOMStorageContext is being destructed, there's no need | |
49 // to do these calls. Maybe we should add a fast path? | |
50 for (OriginToStorageAreaMap::iterator iter(origin_to_storage_area_.begin()); | |
51 iter != origin_to_storage_area_.end(); ++iter) { | |
52 dom_storage_context_->UnregisterStorageArea(iter->second); | |
53 delete iter->second; | |
54 } | |
55 } | |
56 | |
57 DOMStorageArea* DOMStorageNamespace::GetStorageArea(const string16& origin) { | |
58 // We may have already created it for another dispatcher host. | |
59 OriginToStorageAreaMap::iterator iter = origin_to_storage_area_.find(origin); | |
60 if (iter != origin_to_storage_area_.end()) | |
61 return iter->second; | |
62 | |
63 // We need to create a new one. | |
64 int64 id = dom_storage_context_->AllocateStorageAreaId(); | |
65 DCHECK(!dom_storage_context_->GetStorageArea(id)); | |
66 DOMStorageArea* storage_area = new DOMStorageArea(origin, id, this); | |
67 origin_to_storage_area_[origin] = storage_area; | |
68 dom_storage_context_->RegisterStorageArea(storage_area); | |
69 return storage_area; | |
70 } | |
71 | |
72 DOMStorageNamespace* DOMStorageNamespace::Copy(int64 id) { | |
73 DCHECK(dom_storage_type_ == DOM_STORAGE_SESSION); | |
74 DCHECK(!dom_storage_context_->GetStorageNamespace(id, false)); | |
75 DOMStorageNamespace* new_storage_namespace = new DOMStorageNamespace( | |
76 dom_storage_context_, id, data_dir_path_, dom_storage_type_); | |
77 // If we haven't used the namespace yet, there's nothing to copy. | |
78 if (storage_namespace_.get()) | |
79 new_storage_namespace->storage_namespace_.reset(storage_namespace_->copy()); | |
80 return new_storage_namespace; | |
81 } | |
82 | |
83 void DOMStorageNamespace::PurgeMemory() { | |
84 DCHECK(dom_storage_type_ == DOM_STORAGE_LOCAL); | |
85 for (OriginToStorageAreaMap::iterator iter(origin_to_storage_area_.begin()); | |
86 iter != origin_to_storage_area_.end(); ++iter) | |
87 iter->second->PurgeMemory(); | |
88 storage_namespace_.reset(); | |
89 } | |
90 | |
91 WebStorageArea* DOMStorageNamespace::CreateWebStorageArea( | |
92 const string16& origin) { | |
93 CreateWebStorageNamespaceIfNecessary(); | |
94 return storage_namespace_->createStorageArea(origin); | |
95 } | |
96 | |
97 void DOMStorageNamespace::CreateWebStorageNamespaceIfNecessary() { | |
98 if (storage_namespace_.get()) | |
99 return; | |
100 | |
101 if (dom_storage_type_ == DOM_STORAGE_LOCAL) { | |
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 } | |
OLD | NEW |