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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265
|
// Copyright 2014 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/extensions/api/storage/sync_storage_backend.h"
#include <memory>
#include <utility>
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "chrome/browser/extensions/api/storage/settings_sync_processor.h"
#include "chrome/browser/extensions/api/storage/settings_sync_util.h"
#include "chrome/browser/extensions/api/storage/syncable_settings_storage.h"
#include "components/sync/model/sync_change_processor.h"
#include "extensions/browser/api/storage/backend_task_runner.h"
#include "extensions/browser/api/storage/value_store_util.h"
#include "extensions/common/extension_id.h"
namespace extensions {
namespace {
void AddAllSyncData(const ExtensionId& extension_id,
const base::Value::Dict& src,
syncer::DataType type,
syncer::SyncDataList* dst) {
for (auto it : src) {
dst->push_back(settings_sync_util::CreateData(extension_id, it.first,
it.second, type));
}
}
base::Value::Dict EmptyDict() {
return base::Value::Dict();
}
value_store_util::ModelType ToFactoryModelType(syncer::DataType sync_type) {
switch (sync_type) {
case syncer::APP_SETTINGS:
return value_store_util::ModelType::APP;
case syncer::EXTENSION_SETTINGS:
return value_store_util::ModelType::EXTENSION;
default:
NOTREACHED();
}
}
} // namespace
SyncStorageBackend::SyncStorageBackend(
scoped_refptr<value_store::ValueStoreFactory> storage_factory,
const SettingsStorageQuotaEnforcer::Limits& quota,
SequenceBoundSettingsChangedCallback observer,
syncer::DataType sync_type,
const syncer::SyncableService::StartSyncFlare& flare)
: storage_factory_(std::move(storage_factory)),
quota_(quota),
observer_(std::move(observer)),
sync_type_(sync_type),
flare_(flare) {
DCHECK(IsOnBackendSequence());
DCHECK(sync_type_ == syncer::EXTENSION_SETTINGS ||
sync_type_ == syncer::APP_SETTINGS);
}
SyncStorageBackend::~SyncStorageBackend() = default;
value_store::ValueStore* SyncStorageBackend::GetStorage(
const ExtensionId& extension_id) {
DCHECK(IsOnBackendSequence());
return GetOrCreateStorageWithSyncData(extension_id, EmptyDict());
}
SyncableSettingsStorage* SyncStorageBackend::GetOrCreateStorageWithSyncData(
const ExtensionId& extension_id,
base::Value::Dict sync_data) const {
DCHECK(IsOnBackendSequence());
auto maybe_storage = storage_objs_.find(extension_id);
if (maybe_storage != storage_objs_.end()) {
return maybe_storage->second.get();
}
std::unique_ptr<SettingsStorageQuotaEnforcer> settings_storage(
new SettingsStorageQuotaEnforcer(
quota_, value_store_util::CreateSettingsStore(
settings_namespace::SYNC, ToFactoryModelType(sync_type_),
extension_id, storage_factory_)));
// It's fine to create the quota enforcer underneath the sync layer, since
// sync will only go ahead if each underlying storage operation succeeds.
std::unique_ptr<SyncableSettingsStorage> syncable_storage(
new SyncableSettingsStorage(observer_, extension_id,
settings_storage.release(), sync_type_,
flare_));
SyncableSettingsStorage* raw_syncable_storage = syncable_storage.get();
storage_objs_[extension_id] = std::move(syncable_storage);
if (sync_processor_.get()) {
std::optional<syncer::ModelError> error =
raw_syncable_storage->StartSyncing(
std::move(sync_data), CreateSettingsSyncProcessor(extension_id));
if (error.has_value())
raw_syncable_storage->StopSyncing();
}
return raw_syncable_storage;
}
void SyncStorageBackend::DeleteStorage(const ExtensionId& extension_id) {
DCHECK(IsOnBackendSequence());
// Clear settings when the extension is uninstalled. Leveldb implementations
// will also delete the database from disk when the object is destroyed as a
// result of being removed from |storage_objs_|. Note that we always
// GetStorage here (rather than only clearing if it exists) since the storage
// area may have been unloaded, but we still want to clear the data from disk.
GetStorage(extension_id)->Clear();
storage_objs_.erase(extension_id);
}
void SyncStorageBackend::WaitUntilReadyToSync(base::OnceClosure done) {
DCHECK(IsOnBackendSequence());
// This class is ready to sync immediately upon construction.
std::move(done).Run();
}
syncer::SyncDataList SyncStorageBackend::GetAllSyncDataForTesting(
syncer::DataType type) const {
DCHECK(IsOnBackendSequence());
// For all extensions, get all their settings. This has the effect
// of bringing in the entire state of extension settings in memory; sad.
syncer::SyncDataList all_sync_data;
// For tests, all storage areas are kept in memory in `storage_objs_`.
for (const auto& storage_obj : storage_objs_) {
ExtensionId extension_id = storage_obj.first;
value_store::ValueStore::ReadResult maybe_settings =
GetOrCreateStorageWithSyncData(extension_id, EmptyDict())->Get();
if (!maybe_settings.status().ok()) {
LOG(WARNING) << "Failed to get settings for " << extension_id << ": "
<< maybe_settings.status().message;
continue;
}
AddAllSyncData(extension_id, maybe_settings.settings(), type,
&all_sync_data);
}
return all_sync_data;
}
std::optional<syncer::ModelError> SyncStorageBackend::MergeDataAndStartSyncing(
syncer::DataType type,
const syncer::SyncDataList& initial_sync_data,
std::unique_ptr<syncer::SyncChangeProcessor> sync_processor) {
DCHECK(IsOnBackendSequence());
DCHECK_EQ(sync_type_, type);
DCHECK(!sync_processor_.get());
DCHECK(sync_processor.get());
sync_processor_ = std::move(sync_processor);
// Group the initial sync data by extension id.
std::map<ExtensionId, base::Value::Dict> grouped_sync_data;
for (const syncer::SyncData& sync_data : initial_sync_data) {
SettingSyncData data(sync_data);
base::Value::Dict& settings = grouped_sync_data[data.extension_id()];
DCHECK(!settings.Find(data.key()))
<< "Duplicate settings for " << data.extension_id() << "/"
<< data.key();
settings.Set(data.key(), data.ExtractValue());
}
// Start syncing all existing storage areas. Any storage areas created in
// the future will start being synced as part of the creation process.
for (const auto& storage_obj : storage_objs_) {
const ExtensionId& extension_id = storage_obj.first;
SyncableSettingsStorage* storage = storage_obj.second.get();
auto group = grouped_sync_data.find(extension_id);
std::optional<syncer::ModelError> error;
if (group != grouped_sync_data.end()) {
error = storage->StartSyncing(std::move(group->second),
CreateSettingsSyncProcessor(extension_id));
grouped_sync_data.erase(group);
} else {
error = storage->StartSyncing(EmptyDict(),
CreateSettingsSyncProcessor(extension_id));
}
if (error.has_value())
storage->StopSyncing();
}
// Eagerly create and init the rest of the storage areas that have sync data.
// Under normal circumstances (i.e. not first-time sync) this will be all of
// them.
for (auto& group : grouped_sync_data) {
GetOrCreateStorageWithSyncData(group.first, std::move(group.second));
}
return std::nullopt;
}
std::optional<syncer::ModelError> SyncStorageBackend::ProcessSyncChanges(
const base::Location& from_here,
const syncer::SyncChangeList& sync_changes) {
DCHECK(IsOnBackendSequence());
DCHECK(sync_processor_.get());
// Group changes by extension, to pass all changes in a single method call.
// The raw pointers are safe because ownership of each item is passed to
// storage->ProcessSyncChanges.
std::map<ExtensionId, SettingSyncDataList*> grouped_sync_data;
for (const syncer::SyncChange& change : sync_changes) {
std::unique_ptr<SettingSyncData> data(new SettingSyncData(change));
SettingSyncDataList*& group = grouped_sync_data[data->extension_id()];
if (!group)
group = new SettingSyncDataList();
group->push_back(std::move(data));
}
// Create any storage areas that don't exist yet but have sync data.
for (const auto& group : grouped_sync_data) {
SyncableSettingsStorage* storage =
GetOrCreateStorageWithSyncData(group.first, EmptyDict());
std::optional<syncer::ModelError> error =
storage->ProcessSyncChanges(base::WrapUnique(group.second));
if (error.has_value())
storage->StopSyncing();
}
return std::nullopt;
}
base::WeakPtr<syncer::SyncableService> SyncStorageBackend::AsWeakPtr() {
return weak_ptr_factory_.GetWeakPtr();
}
void SyncStorageBackend::StopSyncing(syncer::DataType type) {
DCHECK(IsOnBackendSequence());
DCHECK(type == syncer::EXTENSION_SETTINGS || type == syncer::APP_SETTINGS);
DCHECK_EQ(sync_type_, type);
for (const auto& storage_obj : storage_objs_) {
// Some storage areas may have already stopped syncing if they had areas
// and syncing was disabled, but StopSyncing is safe to call multiple times.
storage_obj.second->StopSyncing();
}
sync_processor_.reset();
}
std::unique_ptr<SettingsSyncProcessor>
SyncStorageBackend::CreateSettingsSyncProcessor(
const ExtensionId& extension_id) const {
CHECK(sync_processor_.get());
return std::make_unique<SettingsSyncProcessor>(extension_id, sync_type_,
sync_processor_.get());
}
} // namespace extensions
|