blob: b99103885537822d9a4c309671bd37db25862d56 [file] [log] [blame]
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +01001// 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#ifndef CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_CACHED_AREA_H_
6#define CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_CACHED_AREA_H_
7
8#include <map>
9
10#include "base/memory/ref_counted.h"
11#include "base/memory/weak_ptr.h"
12#include "base/strings/nullable_string16.h"
13#include "content/common/content_export.h"
14#include "url/gurl.h"
15
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +010016namespace content {
17
Ben Murdochbb1529c2013-08-08 10:24:53 +010018class DOMStorageMap;
19class DOMStorageProxy;
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +010020
21// Unlike the other classes in the dom_storage library, this one is intended
22// for use in renderer processes. It maintains a complete cache of the
23// origin's Map of key/value pairs for fast access. The cache is primed on
24// first access and changes are written to the backend thru the |proxy|.
25// Mutations originating in other processes are applied to the cache via
26// the ApplyMutation method.
Ben Murdochbb1529c2013-08-08 10:24:53 +010027class CONTENT_EXPORT DOMStorageCachedArea
28 : public base::RefCounted<DOMStorageCachedArea> {
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +010029 public:
Ben Murdochbb1529c2013-08-08 10:24:53 +010030 DOMStorageCachedArea(int64 namespace_id,
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +010031 const GURL& origin,
Ben Murdochbb1529c2013-08-08 10:24:53 +010032 DOMStorageProxy* proxy);
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +010033
34 int64 namespace_id() const { return namespace_id_; }
35 const GURL& origin() const { return origin_; }
36
37 unsigned GetLength(int connection_id);
38 base::NullableString16 GetKey(int connection_id, unsigned index);
39 base::NullableString16 GetItem(int connection_id, const base::string16& key);
40 bool SetItem(int connection_id,
41 const base::string16& key,
42 const base::string16& value,
43 const GURL& page_url);
44 void RemoveItem(int connection_id,
45 const base::string16& key,
46 const GURL& page_url);
47 void Clear(int connection_id, const GURL& page_url);
48
49 void ApplyMutation(const base::NullableString16& key,
50 const base::NullableString16& new_value);
51
52 size_t MemoryBytesUsedByCache() const;
53
54 private:
Ben Murdochbb1529c2013-08-08 10:24:53 +010055 friend class DOMStorageCachedAreaTest;
56 friend class base::RefCounted<DOMStorageCachedArea>;
57 ~DOMStorageCachedArea();
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +010058
59 // Primes the cache, loading all values for the area.
60 void Prime(int connection_id);
61 void PrimeIfNeeded(int connection_id) {
62 if (!map_.get())
63 Prime(connection_id);
64 }
65
66 // Resets the object back to its newly constructed state.
67 void Reset();
68
69 // Async completion callbacks for proxied operations.
70 // These are used to maintain cache consistency by preventing
71 // mutation events from other processes from overwriting local
72 // changes made after the mutation.
73 void OnLoadComplete(bool success);
74 void OnSetItemComplete(const base::string16& key, bool success);
75 void OnClearComplete(bool success);
76 void OnRemoveItemComplete(const base::string16& key, bool success);
77
78 bool should_ignore_key_mutation(const base::string16& key) const {
79 return ignore_key_mutations_.find(key) != ignore_key_mutations_.end();
80 }
81
82 bool ignore_all_mutations_;
83 std::map<base::string16, int> ignore_key_mutations_;
84
85 int64 namespace_id_;
86 GURL origin_;
Ben Murdochbb1529c2013-08-08 10:24:53 +010087 scoped_refptr<DOMStorageMap> map_;
88 scoped_refptr<DOMStorageProxy> proxy_;
89 base::WeakPtrFactory<DOMStorageCachedArea> weak_factory_;
Torne (Richard Coles)a36e5922013-08-05 13:57:33 +010090};
91
92} // namespace content
93
94#endif // CONTENT_RENDERER_DOM_STORAGE_DOM_STORAGE_CACHED_AREA_H_