Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2011 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 #ifndef CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_CONTEXT_H_ | 5 #ifndef WEBKIT_DOM_STORAGE_DOM_STORAGE_CONTEXT_H_ |
| 6 #define CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_CONTEXT_H_ | 6 #define WEBKIT_DOM_STORAGE_DOM_STORAGE_CONTEXT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | |
| 11 | 10 |
| 11 #include "base/atomic_sequence_num.h" | |
| 12 #include "base/basictypes.h" | |
| 12 #include "base/file_path.h" | 13 #include "base/file_path.h" |
| 13 #include "base/gtest_prod_util.h" | |
| 14 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 15 #include "base/string16.h" | 15 #include "base/observer_list.h" |
| 16 #include "base/time.h" | |
| 17 #include "content/common/content_export.h" | |
| 18 | 16 |
| 19 class DOMStorageArea; | 17 class FilePath; |
| 20 class DOMStorageMessageFilter; | 18 class GURL; |
| 21 class DOMStorageNamespace; | 19 class NullableString16; |
| 22 class WebKitContext; | 20 |
| 21 namespace base { | |
| 22 class Time; | |
| 23 } | |
| 23 | 24 |
| 24 namespace quota { | 25 namespace quota { |
| 25 class SpecialStoragePolicy; | 26 class SpecialStoragePolicy; |
| 26 } | 27 } |
| 27 | 28 |
| 28 // This is owned by WebKitContext and is all the dom storage information that's | 29 namespace dom_storage { |
| 29 // shared by all the DOMStorageMessageFilters that share the same browser | 30 |
| 30 // context. The specifics of responsibilities are fairly well documented here | 31 class DomStorageArea; |
| 31 // and in StorageNamespace and StorageArea. Everything is only to be accessed | 32 class DomStorageNamespace; |
| 32 // on the WebKit thread unless noted otherwise. | 33 class DomStorageSession; |
| 33 // | 34 class DomStorageTaskRunner; |
| 34 // NOTE: Virtual methods facilitate mocking functions for testing. | 35 |
| 35 class CONTENT_EXPORT DOMStorageContext { | 36 // One instance is allocated in the main process for each profile, |
| 37 // should be called only on the background thread. | |
| 38 class DomStorageContext | |
| 39 : public base::RefCountedThreadSafe<DomStorageContext> { | |
| 36 public: | 40 public: |
| 37 DOMStorageContext(WebKitContext* webkit_context, | |
| 38 quota::SpecialStoragePolicy* special_storage_policy); | |
| 39 virtual ~DOMStorageContext(); | |
| 40 | 41 |
| 41 // Invalid storage id. No storage session will ever report this value. | 42 // An interface for observing LocalStorage events. Mutation events |
|
benm (inactive)
2012/01/31 18:03:38
s/LocalStorage/DomStorage/
michaeln
2012/01/31 21:17:45
Renderer's raise events associated with changes th
| |
| 42 // Used in DOMStorageMessageFilter::OnStorageAreaId when coping with | 43 // are raised on the background thread. |
| 43 // interactions with non-existent storage sessions. | 44 class EventObserver { |
| 44 static const int64 kInvalidStorageId = -1; | 45 public: |
| 46 virtual void OnDomStorageItemSet( | |
| 47 DomStorageArea* area, | |
| 48 const string16& key, | |
| 49 const string16& new_value, | |
| 50 const NullableString16& old_value, // may be null on initial insert | |
| 51 const GURL& page_url) = 0; | |
| 52 virtual void OnDomStorageItemRemoved( | |
| 53 DomStorageArea* area, | |
| 54 const string16& key, | |
| 55 const string16& old_value, | |
| 56 const GURL& page_url) = 0; | |
| 57 virtual void OnDomStorageAreaCleared( | |
| 58 DomStorageArea* area, | |
| 59 const GURL& page_url) = 0; | |
| 45 | 60 |
| 46 // Allocate a new storage area id. Only call on the WebKit thread. | 61 virtual ~EventObserver() {} |
| 47 int64 AllocateStorageAreaId(); | 62 }; |
| 48 | 63 |
| 49 // Allocate a new session storage id. Only call on the UI or IO thread. | 64 DomStorageContext(const FilePath& directory, // empty for incognito profiles |
| 50 int64 AllocateSessionStorageNamespaceId(); | 65 quota::SpecialStoragePolicy* special_storage_policy, |
| 66 DomStorageTaskRunner* task_runner); | |
| 51 | 67 |
| 52 // Clones a session storage namespace and returns the cloned namespaces' id. | 68 // Methods to add, remove, and notify EventObservers. |
| 53 // Only call on the IO thread. | 69 void AddEventObserver(EventObserver* observer); |
| 54 int64 CloneSessionStorage(int64 original_id); | 70 void RemoveEventObserver(EventObserver* observer); |
| 71 void NotifyItemSet( | |
| 72 DomStorageArea* area, | |
| 73 const string16& key, | |
| 74 const string16& new_value, | |
| 75 const NullableString16& old_value, | |
| 76 const GURL& page_url); | |
| 77 void NotifyItemRemoved( | |
| 78 DomStorageArea* area, | |
| 79 const string16& key, | |
| 80 const string16& old_value, | |
| 81 const GURL& page_url); | |
| 82 void NotifyAreaCleared( | |
| 83 DomStorageArea* area, | |
| 84 const GURL& page_url); | |
| 55 | 85 |
| 56 // Various storage area methods. The storage area is owned by one of the | 86 DomStorageNamespace* GetStorageNamespace(int64 namespace_id); |
| 57 // namespaces that's owned by this class. | |
| 58 void RegisterStorageArea(DOMStorageArea* storage_area); | |
| 59 void UnregisterStorageArea(DOMStorageArea* storage_area); | |
| 60 DOMStorageArea* GetStorageArea(int64 id); | |
| 61 | |
| 62 // Called on WebKit thread when a session storage namespace can be deleted. | |
| 63 void DeleteSessionStorageNamespace(int64 namespace_id); | |
| 64 | |
| 65 // Get a namespace from an id. What's returned is owned by this class. If | |
| 66 // allocation_allowed is true, then this function will create the storage | |
| 67 // namespace if it hasn't been already. | |
| 68 DOMStorageNamespace* GetStorageNamespace(int64 id, bool allocation_allowed); | |
| 69 | |
| 70 // Sometimes an event from one DOM storage message filter requires | |
| 71 // communication to all of them. | |
| 72 typedef std::set<DOMStorageMessageFilter*> MessageFilterSet; | |
| 73 void RegisterMessageFilter(DOMStorageMessageFilter* message_filter); | |
| 74 void UnregisterMessageFilter(DOMStorageMessageFilter* MessageFilter); | |
| 75 const MessageFilterSet* GetMessageFilterSet() const; | |
| 76 | 87 |
| 77 // Tells storage namespaces to purge any memory they do not need. | 88 // Tells storage namespaces to purge any memory they do not need. |
| 78 virtual void PurgeMemory(); | 89 void PurgeMemory(); |
| 79 | 90 |
| 80 // Delete any local storage files that have been touched since the cutoff | 91 // Delete any local storage files that have been touched since the cutoff |
| 81 // date that's supplied. Protected origins, per the SpecialStoragePolicy, | 92 // date that's supplied. Protected origins, per the SpecialStoragePolicy, |
| 82 // are not deleted by this method. | 93 // are not deleted by this method. |
| 83 void DeleteDataModifiedSince(const base::Time& cutoff); | 94 void DeleteDataModifiedSince(const base::Time& cutoff); |
| 84 | 95 |
| 85 // Deletes a single local storage file. | 96 // Delete any local storage files which are allowed to be stored only until |
| 86 void DeleteLocalStorageFile(const FilePath& file_path); | 97 // the end of the session. Protected origins, per the SpecialStoragePolicy, |
| 98 // are not deleted by this method. | |
| 99 void DeleteSessionOnlyData(); | |
| 87 | 100 |
| 88 // Deletes the local storage file for the given origin. | 101 // Deletes the local storage file for the given origin. |
| 89 void DeleteLocalStorageForOrigin(const string16& origin_id); | 102 void DeleteLocalStorageForOrigin(const GURL& origin); |
| 90 | 103 |
| 91 // Deletes all local storage files. | 104 // Deletes all local storage files. |
| 92 void DeleteAllLocalStorageFiles(); | 105 void DeleteAllLocalStorageFiles(); |
| 93 | 106 |
| 94 // The local storage directory. | |
| 95 static const FilePath::CharType kLocalStorageDirectory[]; | |
| 96 | |
| 97 // The local storage file extension. | |
| 98 static const FilePath::CharType kLocalStorageExtension[]; | |
| 99 | |
| 100 // Get the file name of the local storage file for the given origin. | |
| 101 FilePath GetLocalStorageFilePath(const string16& origin_id) const; | |
| 102 | |
| 103 void set_clear_local_state_on_exit_(bool clear_local_state) { | 107 void set_clear_local_state_on_exit_(bool clear_local_state) { |
| 104 clear_local_state_on_exit_ = clear_local_state; | 108 clear_local_state_on_exit_ = clear_local_state; |
| 105 } | 109 } |
| 106 | 110 |
| 107 // Disables the exit-time deletion for all data (also session-only data). | 111 // Disables the exit-time deletion for all data (also session-only data). |
| 108 void SaveSessionState() { | 112 void SaveSessionState() { |
| 109 save_session_state_ = true; | 113 save_session_state_ = true; |
| 110 } | 114 } |
| 111 | 115 |
| 112 void set_data_path_for_testing(const FilePath& data_path) { | 116 private: |
| 113 data_path_ = data_path; | 117 friend class DomStorageSession; |
| 114 } | 118 friend class base::RefCountedThreadSafe<DomStorageContext>; |
| 115 | 119 |
| 116 private: | 120 typedef std::map<int64, DomStorageNamespace*> StorageNamespaceMap; |
| 117 | 121 |
| 118 FRIEND_TEST_ALL_PREFIXES(DOMStorageTest, SessionOnly); | 122 ~DomStorageContext(); |
| 119 FRIEND_TEST_ALL_PREFIXES(DOMStorageTest, SaveSessionState); | |
| 120 | 123 |
| 121 // Get the local storage instance. The object is owned by this class. | 124 // These three methods may be called on any thread, tasks |
| 122 DOMStorageNamespace* CreateLocalStorage(); | 125 // are scheduled on the background thread to perform the work. |
| 126 int64 CreateSessionStorageNamespace(); | |
| 127 void DeleteSessionStorageNamespace(int64 namespace_id); | |
| 128 int64 CloneSessionStorageNamespace(int64 existing_id); | |
| 123 | 129 |
| 124 // Get a new session storage namespace. The object is owned by this class. | 130 void CreateSessionStorageNamespaceHelper(int64 new_id); |
| 125 DOMStorageNamespace* CreateSessionStorage(int64 namespace_id); | 131 void DeleteSessionStorageNamespaceHelper(int64 namespace_id); |
| 132 void CloneSessionStorageNamespaceHelper(int64 existing_id, int64 new_id); | |
|
benm (inactive)
2012/01/31 18:03:38
Why do we have these for session storage and not l
michaeln
2012/01/31 21:17:45
LocalStorage has a magic namespace_id of 0 and the
| |
| 126 | 133 |
| 127 // Used internally to register storage namespaces we create. | 134 StorageNamespaceMap namespaces_; |
| 128 void RegisterStorageNamespace(DOMStorageNamespace* storage_namespace); | |
| 129 | 135 |
| 130 // The WebKit thread half of CloneSessionStorage above. Static because | 136 // Where data is stored, maybe empty for the incognito use case. |
| 131 // DOMStorageContext isn't ref counted thus we can't use a runnable method. | 137 FilePath directory_; |
| 132 // That said, we know this is safe because this class is destroyed on the | |
| 133 // WebKit thread, so there's no way it could be destroyed before this is run. | |
| 134 static void CompleteCloningSessionStorage(DOMStorageContext* context, | |
| 135 int64 existing_id, int64 clone_id); | |
| 136 | 138 |
| 137 // The last used storage_area_id and storage_namespace_id's. For the storage | 139 scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy_; |
| 138 // namespaces, IDs allocated on the UI thread are positive and count up while | 140 scoped_refptr<DomStorageTaskRunner> task_runner_; |
| 139 // IDs allocated on the IO thread are negative and count down. This allows us | |
| 140 // to allocate unique IDs on both without any locking. All storage area ids | |
| 141 // are allocated on the WebKit thread. | |
| 142 int64 last_storage_area_id_; | |
| 143 int64 last_session_storage_namespace_id_on_ui_thread_; | |
| 144 int64 last_session_storage_namespace_id_on_io_thread_; | |
| 145 | 141 |
| 146 // True if the destructor should delete its files. | 142 // True if the destructor should delete its files. |
| 147 bool clear_local_state_on_exit_; | 143 bool clear_local_state_on_exit_; |
| 148 | 144 |
| 149 // If true, nothing (not even session-only data) should be deleted on exit. | 145 // If true, nothing (not even session-only data) should be deleted on exit. |
| 150 bool save_session_state_; | 146 bool save_session_state_; |
| 151 | 147 |
| 152 // Path where the browser context data is stored. | 148 // List of objects observing local storage events. |
| 153 // TODO(pastarmovj): Keep in mind that unlike indexed db data_path_ variable | 149 ObserverList<EventObserver> event_observers_; |
| 154 // this one still has to point to the upper level dir because of the | |
| 155 // MigrateLocalStorageDirectory function. Once this function disappears we can | |
| 156 // make it point directly to the dom storage path. | |
| 157 FilePath data_path_; | |
| 158 | 150 |
| 159 // All the DOMStorageMessageFilters that are attached to us. ONLY USE ON THE | 151 base::AtomicSequenceNumber session_storage_id_sequence_; |
| 160 // IO THREAD! | |
| 161 MessageFilterSet message_filter_set_; | |
| 162 | |
| 163 // Maps ids to StorageAreas. We do NOT own these objects. StorageNamespace | |
| 164 // (which does own them) will notify us when we should remove the entries. | |
| 165 typedef std::map<int64, DOMStorageArea*> StorageAreaMap; | |
| 166 StorageAreaMap storage_area_map_; | |
| 167 | |
| 168 // Maps ids to StorageNamespaces. We own these objects. | |
| 169 typedef std::map<int64, DOMStorageNamespace*> StorageNamespaceMap; | |
| 170 StorageNamespaceMap storage_namespace_map_; | |
| 171 | |
| 172 scoped_refptr<quota::SpecialStoragePolicy> special_storage_policy_; | |
| 173 | |
| 174 DISALLOW_IMPLICIT_CONSTRUCTORS(DOMStorageContext); | |
| 175 }; | 152 }; |
| 176 | 153 |
| 177 #endif // CONTENT_BROWSER_IN_PROCESS_WEBKIT_DOM_STORAGE_CONTEXT_H_ | 154 } // namespace dom_storage |
| 155 | |
| 156 #endif // WEBKIT_DOM_STORAGE_DOM_STORAGE_CONTEXT_H_ | |
| OLD | NEW |