Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3163)

Unified Diff: chrome/browser/sync/glue/typed_url_data_type_controller.cc

Issue 6811003: [Sync] Make generic non-frontend thread datatype controller. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Copy paste :( Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/glue/typed_url_data_type_controller.cc
diff --git a/chrome/browser/sync/glue/typed_url_data_type_controller.cc b/chrome/browser/sync/glue/typed_url_data_type_controller.cc
index 93be84deffdcc7acc9029fe2f0f72f9acb506798..73776fe0e7e0720b87b27b2face9a192c5c1a81c 100644
--- a/chrome/browser/sync/glue/typed_url_data_type_controller.cc
+++ b/chrome/browser/sync/glue/typed_url_data_type_controller.cc
@@ -4,14 +4,10 @@
#include "chrome/browser/sync/glue/typed_url_data_type_controller.h"
-#include "base/logging.h"
#include "base/metrics/histogram.h"
#include "base/task.h"
-#include "base/time.h"
#include "chrome/browser/history/history.h"
#include "chrome/browser/profiles/profile.h"
-#include "chrome/browser/sync/glue/typed_url_change_processor.h"
-#include "chrome/browser/sync/glue/typed_url_model_associator.h"
#include "chrome/browser/sync/profile_sync_factory.h"
#include "chrome/browser/sync/profile_sync_service.h"
#include "content/browser/browser_thread.h"
@@ -26,11 +22,7 @@ class ControlTask : public HistoryDBTask {
virtual bool RunOnDBThread(history::HistoryBackend* backend,
history::HistoryDatabase* db) {
- if (start_) {
- controller_->StartImpl(backend);
- } else {
- controller_->StopImpl();
- }
+ controller_->RunOnHistoryThread(start_, backend);
// Release the reference to the controller. This ensures that
// the controller isn't held past its lifetime in unit tests.
@@ -47,104 +39,90 @@ class ControlTask : public HistoryDBTask {
TypedUrlDataTypeController::TypedUrlDataTypeController(
ProfileSyncFactory* profile_sync_factory,
- Profile* profile,
- ProfileSyncService* sync_service)
- : profile_sync_factory_(profile_sync_factory),
- profile_(profile),
- sync_service_(sync_service),
- state_(NOT_RUNNING),
- abort_association_(false),
- abort_association_complete_(false, false),
- datatype_stopped_(false, false) {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- DCHECK(profile_sync_factory);
- DCHECK(profile);
- DCHECK(sync_service);
+ Profile* profile)
+ : NonFrontendDataTypeController(profile_sync_factory,
+ profile),
+ backend_(NULL) {
}
TypedUrlDataTypeController::~TypedUrlDataTypeController() {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
}
-void TypedUrlDataTypeController::Start(StartCallback* start_callback) {
- VLOG(1) << "Starting typed_url data controller.";
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- DCHECK(start_callback);
- if (state_ != NOT_RUNNING || start_callback_.get()) {
- start_callback->Run(BUSY, FROM_HERE);
- delete start_callback;
- return;
+void TypedUrlDataTypeController::RunOnHistoryThread(bool start,
+ history::HistoryBackend* backend) {
+ DCHECK(!BrowserThread::CurrentlyOn(BrowserThread::UI));
+ // The only variable we can access here is backend_, since it is always
+ // read from the DB thread. Touching anything else could lead to memory
+ // corruption.
+ backend_ = backend;
+ if (start) {
+ StartAssociation();
+ } else {
+ StopAssociation();
}
+ backend_ = NULL;
+}
- start_callback_.reset(start_callback);
- abort_association_ = false;
-
- HistoryService* history = profile_->GetHistoryServiceWithoutCreating();
+bool TypedUrlDataTypeController::StartModels() {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ DCHECK_EQ(state(), MODEL_STARTING);
+ HistoryService* history = profile()->GetHistoryServiceWithoutCreating();
if (history) {
- set_state(ASSOCIATING);
history_service_ = history;
- history_service_->ScheduleDBTask(new ControlTask(this, true), this);
+ return true;
} else {
- set_state(MODEL_STARTING);
notification_registrar_.Add(this, NotificationType::HISTORY_LOADED,
NotificationService::AllSources());
+ return false;
}
}
+bool TypedUrlDataTypeController::StartAssociationAsync() {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ DCHECK_EQ(state(), ASSOCIATING);
+ DCHECK(history_service_.get());
+ history_service_->ScheduleDBTask(new ControlTask(this, true), this);
+ return true;
+}
+
+void TypedUrlDataTypeController::CreateSyncComponents() {
+ DCHECK(!BrowserThread::CurrentlyOn(BrowserThread::UI));
+ DCHECK_EQ(state(), ASSOCIATING);
+ DCHECK(backend_);
+ ProfileSyncFactory::SyncComponents sync_components =
+ profile_sync_factory()->CreateTypedUrlSyncComponents(
+ profile_sync_service(),
+ backend_,
+ this);
+ set_model_associator(sync_components.model_associator);
+ set_change_processor(sync_components.change_processor);
+}
+
void TypedUrlDataTypeController::Observe(NotificationType type,
const NotificationSource& source,
const NotificationDetails& details) {
- VLOG(1) << "History loaded observed.";
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ DCHECK_EQ(state(), MODEL_STARTING);
notification_registrar_.Remove(this,
NotificationType::HISTORY_LOADED,
NotificationService::AllSources());
-
- history_service_ = profile_->GetHistoryServiceWithoutCreating();
+ history_service_ = profile()->GetHistoryServiceWithoutCreating();
DCHECK(history_service_.get());
- history_service_->ScheduleDBTask(new ControlTask(this, true), this);
+ set_state(ASSOCIATING);
+ StopAssociationAsync();
}
-// TODO(sync): Blocking the UI thread at shutdown is bad. If we had a way of
-// distinguishing chrome shutdown from sync shutdown, we should be able to avoid
-// this (http://crbug.com/55662). Further, all this functionality should be
-// abstracted to a higher layer, where we could ensure all datatypes are doing
-// the same thing (http://crbug.com/76232).
-void TypedUrlDataTypeController::Stop() {
- VLOG(1) << "Stopping typed_url data type controller.";
+void TypedUrlDataTypeController::StopModels() {
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ DCHECK(state() == STOPPING || state() == NOT_RUNNING);
+ notification_registrar_.RemoveAll();
+}
- // If Stop() is called while Start() is waiting for association to
- // complete, we need to abort the association and wait for the DB
- // thread to finish the StartImpl() task.
- if (state_ == ASSOCIATING) {
- {
- base::AutoLock lock(abort_association_lock_);
- abort_association_ = true;
- if (model_associator_.get())
- model_associator_->AbortAssociation();
- }
- // Wait for the model association to abort.
- abort_association_complete_.Wait();
- StartDoneImpl(ABORTED, STOPPING);
- }
-
- // If Stop() is called while Start() is waiting for the history service to
- // load, abort the start.
- if (state_ == MODEL_STARTING)
- StartDoneImpl(ABORTED, STOPPING);
-
- DCHECK(!start_callback_.get());
-
- if (change_processor_ != NULL)
- sync_service_->DeactivateDataType(this, change_processor_.get());
-
- set_state(NOT_RUNNING);
+bool TypedUrlDataTypeController::StopAssociationAsync() {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ DCHECK_EQ(state(), STOPPING);
DCHECK(history_service_.get());
history_service_->ScheduleDBTask(new ControlTask(this, false), this);
- datatype_stopped_.Wait();
-}
-
-bool TypedUrlDataTypeController::enabled() {
return true;
}
@@ -157,125 +135,22 @@ browser_sync::ModelSafeGroup TypedUrlDataTypeController::model_safe_group()
return browser_sync::GROUP_HISTORY;
}
-std::string TypedUrlDataTypeController::name() const {
- // For logging only.
- return "typed_url";
-}
-
-DataTypeController::State TypedUrlDataTypeController::state() const {
- return state_;
-}
-
-void TypedUrlDataTypeController::StartImpl(history::HistoryBackend* backend) {
- VLOG(1) << "TypedUrl data type controller StartImpl called.";
- // No additional services need to be started before we can proceed
- // with model association.
- {
- base::AutoLock lock(abort_association_lock_);
- if (abort_association_) {
- abort_association_complete_.Signal();
- return;
- }
- ProfileSyncFactory::SyncComponents sync_components =
- profile_sync_factory_->CreateTypedUrlSyncComponents(
- sync_service_,
- backend,
- this);
- model_associator_.reset(sync_components.model_associator);
- change_processor_.reset(sync_components.change_processor);
- }
-
- if (!model_associator_->CryptoReadyIfNecessary()) {
- StartFailed(NEEDS_CRYPTO);
- return;
- }
-
- bool sync_has_nodes = false;
- if (!model_associator_->SyncModelHasUserCreatedNodes(&sync_has_nodes)) {
- StartFailed(UNRECOVERABLE_ERROR);
- return;
- }
-
- base::TimeTicks start_time = base::TimeTicks::Now();
- bool merge_success = model_associator_->AssociateModels();
- UMA_HISTOGRAM_TIMES("Sync.TypedUrlAssociationTime",
- base::TimeTicks::Now() - start_time);
- if (!merge_success) {
- StartFailed(ASSOCIATION_FAILED);
- return;
- }
-
- sync_service_->ActivateDataType(this, change_processor_.get());
- StartDone(!sync_has_nodes ? OK_FIRST_RUN : OK, RUNNING);
-}
-
-void TypedUrlDataTypeController::StartDone(
- DataTypeController::StartResult result,
- DataTypeController::State new_state) {
- VLOG(1) << "TypedUrl data type controller StartDone called.";
-
- abort_association_complete_.Signal();
- base::AutoLock lock(abort_association_lock_);
- if (!abort_association_) {
- BrowserThread::PostTask(BrowserThread::UI, FROM_HERE,
- NewRunnableMethod(
- this,
- &TypedUrlDataTypeController::StartDoneImpl,
- result,
- new_state));
- }
-}
-
-void TypedUrlDataTypeController::StartDoneImpl(
- DataTypeController::StartResult result,
- DataTypeController::State new_state) {
- VLOG(1) << "TypedUrl data type controller StartDoneImpl called.";
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- set_state(new_state);
- start_callback_->Run(result, FROM_HERE);
- start_callback_.reset();
-
- if (result == UNRECOVERABLE_ERROR || result == ASSOCIATION_FAILED) {
- UMA_HISTOGRAM_ENUMERATION("Sync.TypedUrlStartFailures",
- result,
- MAX_START_RESULT);
- }
-}
-
-void TypedUrlDataTypeController::StopImpl() {
- VLOG(1) << "TypedUrl data type controller StopImpl called.";
-
- if (model_associator_ != NULL)
- model_associator_->DisassociateModels();
-
- change_processor_.reset();
- model_associator_.reset();
-
- datatype_stopped_.Signal();
-}
-
-void TypedUrlDataTypeController::StartFailed(StartResult result) {
- change_processor_.reset();
- model_associator_.reset();
- StartDone(result, NOT_RUNNING);
-}
-
-void TypedUrlDataTypeController::OnUnrecoverableError(
+void TypedUrlDataTypeController::RecordUnrecoverableError(
const tracked_objects::Location& from_here,
const std::string& message) {
- BrowserThread::PostTask(
- BrowserThread::UI, FROM_HERE,
- NewRunnableMethod(this,
- &TypedUrlDataTypeController::OnUnrecoverableErrorImpl,
- from_here, message));
+ DCHECK(!BrowserThread::CurrentlyOn(BrowserThread::UI));
+ UMA_HISTOGRAM_COUNTS("Sync.TypedUrlRunFailures", 1);
}
-void TypedUrlDataTypeController::OnUnrecoverableErrorImpl(
- const tracked_objects::Location& from_here,
- const std::string& message) {
- DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
- UMA_HISTOGRAM_COUNTS("Sync.TypedUrlRunFailures", 1);
- sync_service_->OnUnrecoverableError(from_here, message);
+void TypedUrlDataTypeController::RecordAssociationTime(base::TimeDelta time) {
+ DCHECK(!BrowserThread::CurrentlyOn(BrowserThread::UI));
+ UMA_HISTOGRAM_TIMES("Sync.TypedUrlAssociationTime", time);
}
+void TypedUrlDataTypeController::RecordStartFailure(StartResult result) {
+ DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
+ UMA_HISTOGRAM_ENUMERATION("Sync.TypedUrlStartFailures",
+ result,
+ MAX_START_RESULT);
+}
} // namespace browser_sync
« no previous file with comments | « chrome/browser/sync/glue/typed_url_data_type_controller.h ('k') | chrome/browser/sync/profile_sync_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698