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
|
// 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/app_sync_bundle.h"
#include "base/location.h"
#include "chrome/browser/extensions/extension_sync_service.h"
#include "chrome/browser/extensions/extension_util.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/common/extensions/sync_helper.h"
#include "extensions/browser/app_sorting.h"
#include "extensions/common/extension.h"
#include "extensions/common/extension_set.h"
#include "sync/api/sync_change_processor.h"
#include "sync/api/sync_data.h"
#include "sync/api/sync_error_factory.h"
namespace extensions {
AppSyncBundle::AppSyncBundle(ExtensionSyncService* extension_sync_service)
: extension_sync_service_(extension_sync_service) {}
AppSyncBundle::~AppSyncBundle() {}
void AppSyncBundle::SetupSync(
syncer::SyncChangeProcessor* sync_change_processor,
syncer::SyncErrorFactory* sync_error_factory,
const syncer::SyncDataList& initial_sync_data) {
sync_processor_.reset(sync_change_processor);
sync_error_factory_.reset(sync_error_factory);
for (syncer::SyncDataList::const_iterator i = initial_sync_data.begin();
i != initial_sync_data.end();
++i) {
AppSyncData app_sync_data(*i);
AddApp(app_sync_data.id());
extension_sync_service_->ProcessAppSyncData(app_sync_data);
}
}
void AppSyncBundle::Reset() {
sync_processor_.reset();
sync_error_factory_.reset();
synced_apps_.clear();
pending_sync_data_.clear();
}
syncer::SyncChange AppSyncBundle::CreateSyncChangeToDelete(
const Extension* extension)
const {
AppSyncData sync_data = extension_sync_service_->GetAppSyncData(*extension);
return sync_data.GetSyncChange(syncer::SyncChange::ACTION_DELETE);
}
void AppSyncBundle::ProcessDeletion(const std::string& extension_id,
const syncer::SyncChange& sync_change) {
RemoveApp(extension_id);
sync_processor_->ProcessSyncChanges(FROM_HERE,
syncer::SyncChangeList(1, sync_change));
}
syncer::SyncChange AppSyncBundle::CreateSyncChange(
const syncer::SyncData& sync_data) {
const syncer::SyncDataLocal sync_data_local(sync_data);
if (HasExtensionId(sync_data_local.GetTag())) {
return syncer::SyncChange(FROM_HERE,
syncer::SyncChange::ACTION_UPDATE,
sync_data);
} else {
AddApp(sync_data_local.GetTag());
return syncer::SyncChange(FROM_HERE,
syncer::SyncChange::ACTION_ADD,
sync_data);
}
}
syncer::SyncDataList AppSyncBundle::GetAllSyncData() const {
std::vector<AppSyncData> app_sync_data =
extension_sync_service_->GetAppSyncDataList();
syncer::SyncDataList result(app_sync_data.size());
for (int i = 0; i < static_cast<int>(app_sync_data.size()); ++i) {
result[i] = app_sync_data[i].GetSyncData();
}
return result;
}
void AppSyncBundle::ProcessSyncChange(AppSyncData app_sync_data) {
if (app_sync_data.uninstalled())
RemoveApp(app_sync_data.id());
else
AddApp(app_sync_data.id());
extension_sync_service_->ProcessAppSyncData(app_sync_data);
}
void AppSyncBundle::ProcessSyncChangeList(
syncer::SyncChangeList sync_change_list) {
sync_processor_->ProcessSyncChanges(FROM_HERE, sync_change_list);
extension_sync_service_->extension_prefs().app_sorting()->
FixNTPOrdinalCollisions();
}
bool AppSyncBundle::HasExtensionId(const std::string& id) const {
return synced_apps_.find(id) != synced_apps_.end();
}
bool AppSyncBundle::HasPendingExtensionId(const std::string& id) const {
return pending_sync_data_.find(id) != pending_sync_data_.end();
}
void AppSyncBundle::AddPendingApp(const std::string& id,
const AppSyncData& app_sync_data) {
pending_sync_data_[id] = app_sync_data;
}
bool AppSyncBundle::IsSyncing() const {
return sync_processor_ != NULL;
}
void AppSyncBundle::SyncChangeIfNeeded(const Extension& extension) {
AppSyncData app_sync_data = extension_sync_service_->GetAppSyncData(
extension);
syncer::SyncChangeList sync_change_list(1, app_sync_data.GetSyncChange(
HasExtensionId(extension.id()) ?
syncer::SyncChange::ACTION_UPDATE : syncer::SyncChange::ACTION_ADD));
sync_processor_->ProcessSyncChanges(FROM_HERE, sync_change_list);
MarkPendingAppSynced(extension.id());
}
std::vector<AppSyncData> AppSyncBundle::GetPendingData() const {
std::vector<AppSyncData> pending_apps;
for (std::map<std::string, AppSyncData>::const_iterator
i = pending_sync_data_.begin();
i != pending_sync_data_.end();
++i) {
pending_apps.push_back(i->second);
}
return pending_apps;
}
void AppSyncBundle::GetAppSyncDataListHelper(
const ExtensionSet& extensions,
std::vector<AppSyncData>* sync_data_list) const {
Profile* profile = extension_sync_service_->profile();
for (ExtensionSet::const_iterator it = extensions.begin();
it != extensions.end(); ++it) {
const Extension& extension = *it->get();
// If we have pending app data for this app, then this
// version is out of date. We'll sync back the version we got from
// sync.
if (IsSyncing() && util::ShouldSyncApp(&extension, profile) &&
!HasPendingExtensionId(extension.id())) {
sync_data_list->push_back(extension_sync_service_->GetAppSyncData(
extension));
}
}
}
void AppSyncBundle::AddApp(const std::string& id) {
synced_apps_.insert(id);
}
void AppSyncBundle::RemoveApp(const std::string& id) {
synced_apps_.erase(id);
}
void AppSyncBundle::MarkPendingAppSynced(const std::string& id) {
pending_sync_data_.erase(id);
synced_apps_.insert(id);
}
} // namespace extensions
|