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
|
// Copyright 2012 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/ash/app_list/app_sync_ui_state.h"
#include "build/build_config.h"
#include "chrome/browser/ash/app_list/app_sync_ui_state_factory.h"
#include "chrome/browser/ash/app_list/app_sync_ui_state_observer.h"
#include "chrome/browser/extensions/extension_service.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/sync_service_factory.h"
#include "components/prefs/pref_service.h"
#include "components/sync/service/sync_service.h"
#include "components/user_manager/user_manager.h"
#include "extensions/browser/extension_registry.h"
#include "extensions/browser/pending_extension_manager.h"
namespace {
// Max loading animation time in milliseconds.
const int kMaxSyncingTimeMs = 60 * 1000;
} // namespace
// static
AppSyncUIState* AppSyncUIState::Get(Profile* profile) {
return AppSyncUIStateFactory::GetForProfile(profile);
}
// static
bool AppSyncUIState::ShouldObserveAppSyncForProfile(Profile* profile) {
if (user_manager::UserManager::Get()->IsLoggedInAsGuest())
return false;
if (!profile || profile->IsOffTheRecord())
return false;
if (!SyncServiceFactory::HasSyncService(profile))
return false;
return profile->IsNewProfile();
}
AppSyncUIState::AppSyncUIState(Profile* profile)
: profile_(profile),
sync_service_(nullptr),
status_(STATUS_NORMAL),
extension_registry_(nullptr) {
StartObserving();
}
AppSyncUIState::~AppSyncUIState() {
// StopObserving() must have been called before (from Shutdown()).
DCHECK(!sync_service_);
}
void AppSyncUIState::AddObserver(AppSyncUIStateObserver* observer) {
observers_.AddObserver(observer);
}
void AppSyncUIState::RemoveObserver(AppSyncUIStateObserver* observer) {
observers_.RemoveObserver(observer);
}
void AppSyncUIState::Shutdown() {
StopObserving();
}
void AppSyncUIState::StartObserving() {
DCHECK(ShouldObserveAppSyncForProfile(profile_));
DCHECK(!sync_service_);
DCHECK(!extension_registry_);
extension_registry_ = extensions::ExtensionRegistry::Get(profile_);
extension_registry_->AddObserver(this);
sync_service_ = SyncServiceFactory::GetForProfile(profile_);
CHECK(sync_service_);
sync_service_->AddObserver(this);
}
void AppSyncUIState::StopObserving() {
if (!sync_service_)
return;
sync_service_->RemoveObserver(this);
sync_service_ = nullptr;
if (extension_registry_)
extension_registry_->RemoveObserver(this);
extension_registry_ = nullptr;
profile_ = nullptr;
}
void AppSyncUIState::SetStatus(Status status) {
if (status_ == status)
return;
status_ = status;
switch (status_) {
case STATUS_SYNCING:
max_syncing_status_timer_.Start(FROM_HERE,
base::Milliseconds(kMaxSyncingTimeMs),
this, &AppSyncUIState::OnMaxSyncingTimer);
break;
case STATUS_NORMAL:
case STATUS_TIMED_OUT:
max_syncing_status_timer_.Stop();
StopObserving();
break;
}
for (AppSyncUIStateObserver& observer : observers_)
observer.OnAppSyncUIStatusChanged();
}
void AppSyncUIState::CheckAppSync() {
if (!sync_service_ || !sync_service_->IsSyncFeatureEnabled()) {
return;
}
// The sync service will be paused if it encounters errors, transition to
// normal UI state.
if (sync_service_->GetTransportState() ==
syncer::SyncService::TransportState::PAUSED) {
SetStatus(STATUS_NORMAL);
return;
}
const bool synced = sync_service_->IsSyncFeatureActive();
const bool has_pending_extension =
extensions::PendingExtensionManager::Get(profile_)
->HasPendingExtensionFromSync();
if (synced && !has_pending_extension)
SetStatus(STATUS_NORMAL);
else
SetStatus(STATUS_SYNCING);
}
void AppSyncUIState::OnMaxSyncingTimer() {
SetStatus(STATUS_TIMED_OUT);
}
void AppSyncUIState::OnStateChanged(syncer::SyncService* sync) {
DCHECK(sync_service_);
CheckAppSync();
}
void AppSyncUIState::OnExtensionLoaded(content::BrowserContext* browser_context,
const extensions::Extension* extension) {
CheckAppSync();
}
|