summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_settings_storage_cache.cc
blob: 2df99ed5241c4993126da958423d887f52730cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/extensions/extension_settings_storage_cache.h"

ExtensionSettingsStorageCache::ExtensionSettingsStorageCache(
    ExtensionSettingsStorage* delegate) : delegate_(delegate) {}

ExtensionSettingsStorageCache::~ExtensionSettingsStorageCache() {}

ExtensionSettingsStorage::Result ExtensionSettingsStorageCache::Get(
    const std::string& key) {
  Value *value;
  if (GetFromCache(key, &value)) {
    DictionaryValue* settings = new DictionaryValue();
    settings->SetWithoutPathExpansion(key, value);
    return Result(settings, NULL, NULL);
  }

  Result result = delegate_->Get(key);
  if (result.HasError()) {
    return result;
  }

  cache_.MergeDictionary(result.GetSettings());
  return result;
}

ExtensionSettingsStorage::Result ExtensionSettingsStorageCache::Get(
    const std::vector<std::string>& keys) {
  scoped_ptr<DictionaryValue> from_cache(new DictionaryValue());
  std::vector<std::string> missing_keys;

  for (std::vector<std::string>::const_iterator it = keys.begin();
      it != keys.end(); ++it) {
    Value *value;
    if (GetFromCache(*it, &value)) {
      from_cache->SetWithoutPathExpansion(*it, value);
    } else {
      missing_keys.push_back(*it);
    }
  }

  if (missing_keys.empty()) {
    return Result(from_cache.release(), NULL, NULL);
  }

  Result result = delegate_->Get(keys);
  if (result.HasError()) {
    return result;
  }

  cache_.MergeDictionary(result.GetSettings());

  DictionaryValue* settings_with_cache = result.GetSettings()->DeepCopy();
  settings_with_cache->MergeDictionary(from_cache.get());
  return Result(settings_with_cache, NULL, NULL);
}

ExtensionSettingsStorage::Result ExtensionSettingsStorageCache::Get() {
  Result result = delegate_->Get();
  if (!result.HasError()) {
    cache_.MergeDictionary(result.GetSettings());
  }
  return result;
}

ExtensionSettingsStorage::Result ExtensionSettingsStorageCache::Set(
    const std::string& key, const Value& value) {
  Result result = delegate_->Set(key, value);
  if (!result.HasError()) {
    cache_.MergeDictionary(result.GetSettings());
  }
  return result;
}

ExtensionSettingsStorage::Result ExtensionSettingsStorageCache::Set(
    const DictionaryValue& settings) {
  Result result = delegate_->Set(settings);
  if (result.HasError()) {
    return result;
  }

  const std::set<std::string>* changed_keys = result.GetChangedKeys();
  DCHECK(changed_keys);
  for (std::set<std::string>::const_iterator it = changed_keys->begin();
      it != changed_keys->end(); ++it) {
    Value* new_value = NULL;
    result.GetSettings()->GetWithoutPathExpansion(*it, &new_value);
    DCHECK(new_value);
    cache_.SetWithoutPathExpansion(*it, new_value->DeepCopy());
  }
  return result;
}

ExtensionSettingsStorage::Result ExtensionSettingsStorageCache::Remove(
    const std::string& key) {
  Result result = delegate_->Remove(key);
  if (!result.HasError()) {
    cache_.RemoveWithoutPathExpansion(key, NULL);
  }
  return result;
}

ExtensionSettingsStorage::Result ExtensionSettingsStorageCache::Remove(
    const std::vector<std::string>& keys) {
  Result result = delegate_->Remove(keys);
  if (result.HasError()) {
    return result;
  }

  const std::set<std::string>* changed_keys = result.GetChangedKeys();
  DCHECK(changed_keys);
  for (std::set<std::string>::const_iterator it = changed_keys->begin();
      it != changed_keys->end(); ++it) {
    cache_.RemoveWithoutPathExpansion(*it, NULL);
  }
  return result;
}

ExtensionSettingsStorage::Result ExtensionSettingsStorageCache::Clear() {
  Result result = delegate_->Clear();
  if (!result.HasError()) {
    cache_.Clear();
  }
  return result;
}

bool ExtensionSettingsStorageCache::GetFromCache(
    const std::string& key, Value** value) {
  Value* cached_value;
  if (!cache_.GetWithoutPathExpansion(key, &cached_value)) {
    return false;
  }

  *value = cached_value->DeepCopy();
  return true;
}