summaryrefslogtreecommitdiffstats
path: root/chrome/browser/extensions/extension_settings_storage_cache.cc
blob: 0c740433b4a82a5432c0c85ce94b48619a3ee69f (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
// 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::ReadResult ExtensionSettingsStorageCache::Get(
    const std::string& key) {
  Value *value;
  if (GetFromCache(key, &value)) {
    DictionaryValue* settings = new DictionaryValue();
    settings->SetWithoutPathExpansion(key, value);
    return ReadResult(settings);
  }

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

  cache_.MergeDictionary(&result.settings());
  return result;
}

ExtensionSettingsStorage::ReadResult 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 ReadResult(from_cache.release());
  }

  ReadResult result = delegate_->Get(missing_keys);
  if (result.HasError()) {
    return result;
  }

  cache_.MergeDictionary(&result.settings());
  from_cache->MergeDictionary(&result.settings());
  return ReadResult(from_cache.release());
}

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

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

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

  for (ExtensionSettingChangeList::const_iterator it = result.changes().begin();
      it != result.changes().end(); ++it) {
    DCHECK(it->new_value());
    cache_.SetWithoutPathExpansion(it->key(), it->new_value()->DeepCopy());
  }

  return result;
}

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

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

  for (ExtensionSettingChangeList::const_iterator it = result.changes().begin();
      it != result.changes().end(); ++it) {
    cache_.RemoveWithoutPathExpansion(it->key(), NULL);
  }

  return result;
}

ExtensionSettingsStorage::WriteResult ExtensionSettingsStorageCache::Clear() {
  WriteResult 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;
}