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
|
// Copyright (c) 2012 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/api/storage/settings_sync_util.h"
#include "base/json/json_writer.h"
#include "base/values.h"
#include "chrome/browser/extensions/api/storage/sync_value_store_cache.h"
#include "content/public/browser/browser_thread.h"
#include "extensions/browser/api/storage/storage_frontend.h"
#include "sync/protocol/app_setting_specifics.pb.h"
#include "sync/protocol/extension_setting_specifics.pb.h"
#include "sync/protocol/sync.pb.h"
using content::BrowserThread;
namespace extensions {
namespace settings_sync_util {
namespace {
void PopulateExtensionSettingSpecifics(
const std::string& extension_id,
const std::string& key,
const base::Value& value,
sync_pb::ExtensionSettingSpecifics* specifics) {
specifics->set_extension_id(extension_id);
specifics->set_key(key);
{
std::string value_as_json;
base::JSONWriter::Write(&value, &value_as_json);
specifics->set_value(value_as_json);
}
}
void PopulateAppSettingSpecifics(
const std::string& extension_id,
const std::string& key,
const base::Value& value,
sync_pb::AppSettingSpecifics* specifics) {
PopulateExtensionSettingSpecifics(
extension_id, key, value, specifics->mutable_extension_setting());
}
} // namespace
syncer::SyncData CreateData(
const std::string& extension_id,
const std::string& key,
const base::Value& value,
syncer::ModelType type) {
sync_pb::EntitySpecifics specifics;
switch (type) {
case syncer::EXTENSION_SETTINGS:
PopulateExtensionSettingSpecifics(
extension_id,
key,
value,
specifics.mutable_extension_setting());
break;
case syncer::APP_SETTINGS:
PopulateAppSettingSpecifics(
extension_id,
key,
value,
specifics.mutable_app_setting());
break;
default:
NOTREACHED();
}
return syncer::SyncData::CreateLocalData(
extension_id + "/" + key, key, specifics);
}
syncer::SyncChange CreateAdd(
const std::string& extension_id,
const std::string& key,
const base::Value& value,
syncer::ModelType type) {
return syncer::SyncChange(
FROM_HERE,
syncer::SyncChange::ACTION_ADD,
CreateData(extension_id, key, value, type));
}
syncer::SyncChange CreateUpdate(
const std::string& extension_id,
const std::string& key,
const base::Value& value,
syncer::ModelType type) {
return syncer::SyncChange(
FROM_HERE,
syncer::SyncChange::ACTION_UPDATE,
CreateData(extension_id, key, value, type));
}
syncer::SyncChange CreateDelete(
const std::string& extension_id,
const std::string& key,
syncer::ModelType type) {
base::DictionaryValue no_value;
return syncer::SyncChange(
FROM_HERE,
syncer::SyncChange::ACTION_DELETE,
CreateData(extension_id, key, no_value, type));
}
syncer::SyncableService* GetSyncableService(content::BrowserContext* context,
syncer::ModelType type) {
DCHECK_CURRENTLY_ON(BrowserThread::FILE);
DCHECK(type == syncer::APP_SETTINGS || type == syncer::EXTENSION_SETTINGS);
StorageFrontend* frontend = StorageFrontend::Get(context);
SyncValueStoreCache* sync_cache = static_cast<SyncValueStoreCache*>(
frontend->GetValueStoreCache(settings_namespace::SYNC));
return sync_cache->GetSyncableService(type);
}
} // namespace settings_sync_util
} // namespace extensions
|