blob: fc503e83e86479ab2b1e0e6a4b0f1cdf131edf16 [file] [log] [blame]
// Copyright 2014 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/sync/sessions/session_data_type_controller.h"
#include "base/prefs/pref_service.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/glue/chrome_report_unrecoverable_error.h"
#include "chrome/browser/sync/glue/synced_window_delegate.h"
#include "chrome/browser/sync/sessions/synced_window_delegates_getter.h"
#include "chrome/common/pref_names.h"
#include "content/public/browser/browser_thread.h"
#include "content/public/browser/notification_details.h"
#include "content/public/browser/notification_service.h"
#include "content/public/browser/notification_source.h"
using content::BrowserThread;
namespace browser_sync {
SessionDataTypeController::SessionDataTypeController(
sync_driver::SyncApiComponentFactory* sync_factory,
Profile* profile,
SyncedWindowDelegatesGetter* synced_window_getter,
sync_driver::LocalDeviceInfoProvider* local_device)
: UIDataTypeController(
BrowserThread::GetMessageLoopProxyForThread(BrowserThread::UI),
base::Bind(&ChromeReportUnrecoverableError),
syncer::SESSIONS,
sync_factory),
profile_(profile),
synced_window_getter_(synced_window_getter),
local_device_(local_device),
waiting_on_session_restore_(false),
waiting_on_local_device_info_(false) {
DCHECK(local_device_);
pref_registrar_.Init(profile->GetPrefs());
pref_registrar_.Add(
prefs::kSavingBrowserHistoryDisabled,
base::Bind(&SessionDataTypeController::OnSavingBrowserHistoryPrefChanged,
base::Unretained(this)));
}
SessionDataTypeController::~SessionDataTypeController() {}
bool SessionDataTypeController::StartModels() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
std::set<browser_sync::SyncedWindowDelegate*> window =
synced_window_getter_->GetSyncedWindowDelegates();
for (std::set<browser_sync::SyncedWindowDelegate*>::const_iterator i =
window.begin(); i != window.end(); ++i) {
if ((*i)->IsSessionRestoreInProgress()) {
notification_registrar_.Add(
this,
chrome::NOTIFICATION_SESSION_RESTORE_COMPLETE,
content::Source<Profile>(profile_));
waiting_on_session_restore_ = true;
break;
}
}
if (!local_device_->GetLocalDeviceInfo()) {
subscription_ = local_device_->RegisterOnInitializedCallback(
base::Bind(&SessionDataTypeController::OnLocalDeviceInfoInitialized,
this));
waiting_on_local_device_info_ = true;
}
return !IsWaiting();
}
void SessionDataTypeController::StopModels() {
subscription_.reset();
notification_registrar_.RemoveAll();
}
bool SessionDataTypeController::ReadyForStart() const {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
return !profile_->GetPrefs()->GetBoolean(
prefs::kSavingBrowserHistoryDisabled);
}
bool SessionDataTypeController::IsWaiting() {
return waiting_on_session_restore_ || waiting_on_local_device_info_;
}
void SessionDataTypeController::MaybeCompleteLoading() {
if (state_ == MODEL_STARTING && !IsWaiting()) {
OnModelLoaded();
}
}
void SessionDataTypeController::Observe(
int type,
const content::NotificationSource& source,
const content::NotificationDetails& details) {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
DCHECK_EQ(chrome::NOTIFICATION_SESSION_RESTORE_COMPLETE, type);
DCHECK_EQ(profile_, content::Source<Profile>(source).ptr());
notification_registrar_.RemoveAll();
waiting_on_session_restore_ = false;
MaybeCompleteLoading();
}
void SessionDataTypeController::OnLocalDeviceInfoInitialized() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
subscription_.reset();
waiting_on_local_device_info_ = false;
MaybeCompleteLoading();
}
void SessionDataTypeController::OnSavingBrowserHistoryPrefChanged() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
if (profile_->GetPrefs()->GetBoolean(prefs::kSavingBrowserHistoryDisabled)) {
// If history and tabs persistence is turned off then generate an
// unrecoverable error. SESSIONS won't be a registered type on the next
// Chrome restart.
if (state() != NOT_RUNNING && state() != STOPPING) {
syncer::SyncError error(
FROM_HERE,
syncer::SyncError::DATATYPE_POLICY_ERROR,
"History and tab saving is now disabled by policy.",
syncer::SESSIONS);
OnSingleDataTypeUnrecoverableError(error);
}
}
}
} // namespace browser_sync