| // Copyright 2014 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "components/webdata_services/web_data_service_wrapper.h" |
| |
| #include <memory> |
| |
| #include "base/feature_list.h" |
| #include "base/files/file_path.h" |
| #include "base/functional/bind.h" |
| #include "base/functional/callback.h" |
| #include "base/task/single_thread_task_runner.h" |
| #include "base/task/thread_pool.h" |
| #include "build/build_config.h" |
| #include "components/autofill/core/browser/geo/country_names.h" |
| #include "components/autofill/core/browser/webdata/autocomplete_sync_bridge.h" |
| #include "components/autofill/core/browser/webdata/autofill_profile_sync_bridge.h" |
| #include "components/autofill/core/browser/webdata/autofill_table.h" |
| #include "components/autofill/core/browser/webdata/autofill_wallet_metadata_sync_bridge.h" |
| #include "components/autofill/core/browser/webdata/autofill_wallet_offer_sync_bridge.h" |
| #include "components/autofill/core/browser/webdata/autofill_wallet_sync_bridge.h" |
| #include "components/autofill/core/browser/webdata/autofill_wallet_usage_data_sync_bridge.h" |
| #include "components/autofill/core/browser/webdata/autofill_webdata_service.h" |
| #include "components/autofill/core/browser/webdata/contact_info_sync_bridge.h" |
| #include "components/autofill/core/common/autofill_features.h" |
| #include "components/search_engines/keyword_table.h" |
| #include "components/search_engines/keyword_web_data_service.h" |
| #include "components/signin/public/webdata/token_service_table.h" |
| #include "components/signin/public/webdata/token_web_data.h" |
| #include "components/sync/base/features.h" |
| #include "components/webdata/common/web_database_service.h" |
| #include "components/webdata/common/webdata_constants.h" |
| |
| #if !BUILDFLAG(IS_IOS) |
| #include "components/payments/content/payment_manifest_web_data_service.h" |
| #include "components/payments/content/payment_method_manifest_table.h" |
| #include "components/payments/content/web_app_manifest_section_table.h" |
| #endif |
| |
| namespace { |
| |
| void InitAutofillSyncBridgesOnDBSequence( |
| scoped_refptr<base::SingleThreadTaskRunner> db_task_runner, |
| const scoped_refptr<autofill::AutofillWebDataService>& autofill_web_data, |
| const std::string& app_locale, |
| bool enable_contact_info_sync, |
| autofill::AutofillWebDataBackend* autofill_backend) { |
| DCHECK(db_task_runner->RunsTasksInCurrentSequence()); |
| |
| autofill::AutocompleteSyncBridge::CreateForWebDataServiceAndBackend( |
| autofill_web_data.get(), autofill_backend); |
| autofill::AutofillProfileSyncBridge::CreateForWebDataServiceAndBackend( |
| app_locale, autofill_backend, autofill_web_data.get()); |
| if (enable_contact_info_sync) { |
| autofill::ContactInfoSyncBridge::CreateForWebDataServiceAndBackend( |
| autofill_backend, autofill_web_data.get()); |
| } |
| } |
| |
| void InitWalletSyncBridgesOnDBSequence( |
| scoped_refptr<base::SingleThreadTaskRunner> db_task_runner, |
| const scoped_refptr<autofill::AutofillWebDataService>& autofill_web_data, |
| const std::string& app_locale, |
| autofill::AutofillWebDataBackend* autofill_backend) { |
| DCHECK(db_task_runner->RunsTasksInCurrentSequence()); |
| |
| autofill::AutofillWalletSyncBridge::CreateForWebDataServiceAndBackend( |
| app_locale, autofill_backend, autofill_web_data.get()); |
| autofill::AutofillWalletMetadataSyncBridge::CreateForWebDataServiceAndBackend( |
| app_locale, autofill_backend, autofill_web_data.get()); |
| } |
| |
| void InitWalletOfferSyncBridgeOnDBSequence( |
| scoped_refptr<base::SingleThreadTaskRunner> db_task_runner, |
| const scoped_refptr<autofill::AutofillWebDataService>& autofill_web_data, |
| autofill::AutofillWebDataBackend* autofill_backend) { |
| DCHECK(db_task_runner->RunsTasksInCurrentSequence()); |
| autofill::AutofillWalletOfferSyncBridge::CreateForWebDataServiceAndBackend( |
| autofill_backend, autofill_web_data.get()); |
| } |
| |
| void InitWalletUsageDataSyncBridgeOnDBSequence( |
| scoped_refptr<base::SingleThreadTaskRunner> db_task_runner, |
| const scoped_refptr<autofill::AutofillWebDataService>& autofill_web_data, |
| autofill::AutofillWebDataBackend* autofill_backend) { |
| DCHECK(db_task_runner->RunsTasksInCurrentSequence()); |
| autofill::AutofillWalletUsageDataSyncBridge:: |
| CreateForWebDataServiceAndBackend(autofill_backend, |
| autofill_web_data.get()); |
| } |
| |
| } // namespace |
| |
| WebDataServiceWrapper::WebDataServiceWrapper() {} |
| |
| WebDataServiceWrapper::WebDataServiceWrapper( |
| const base::FilePath& context_path, |
| const std::string& application_locale, |
| const scoped_refptr<base::SingleThreadTaskRunner>& ui_task_runner, |
| const ShowErrorCallback& show_error_callback) { |
| base::FilePath path = context_path.Append(kWebDataFilename); |
| // TODO(pkasting): http://crbug.com/740773 This should likely be sequenced, |
| // not single-threaded; it's also possible the various uses of this below |
| // should each use their own sequences instead of sharing this one. |
| auto db_task_runner = base::ThreadPool::CreateSingleThreadTaskRunner( |
| {base::MayBlock(), base::TaskPriority::USER_VISIBLE, |
| base::TaskShutdownBehavior::BLOCK_SHUTDOWN}); |
| profile_database_ = base::MakeRefCounted<WebDatabaseService>( |
| path, ui_task_runner, db_task_runner); |
| |
| // All tables objects that participate in managing the database must |
| // be added here. |
| profile_database_->AddTable(std::make_unique<autofill::AutofillTable>()); |
| profile_database_->AddTable(std::make_unique<KeywordTable>()); |
| profile_database_->AddTable(std::make_unique<TokenServiceTable>()); |
| #if !BUILDFLAG(IS_IOS) |
| profile_database_->AddTable( |
| std::make_unique<payments::PaymentMethodManifestTable>()); |
| profile_database_->AddTable( |
| std::make_unique<payments::WebAppManifestSectionTable>()); |
| #endif |
| profile_database_->LoadDatabase(); |
| |
| // Ensure the CountryNames instance has the locale set. It is used in |
| // the autofill profile bridge, but putting it into the bridge directly |
| // creates a data race with PDM, where the locale is set as well. This is |
| // a tmp solution until the bug below is resolved. |
| // TODO(1430250): Find a unified place for setting the locale |
| autofill::CountryNames::SetLocaleString(application_locale); |
| |
| profile_autofill_web_data_ = |
| base::MakeRefCounted<autofill::AutofillWebDataService>( |
| profile_database_, ui_task_runner, db_task_runner); |
| profile_autofill_web_data_->Init( |
| base::BindOnce(show_error_callback, ERROR_LOADING_AUTOFILL)); |
| |
| keyword_web_data_ = base::MakeRefCounted<KeywordWebDataService>( |
| profile_database_, ui_task_runner); |
| keyword_web_data_->Init( |
| base::BindOnce(show_error_callback, ERROR_LOADING_KEYWORD)); |
| |
| token_web_data_ = base::MakeRefCounted<TokenWebData>( |
| profile_database_, ui_task_runner, db_task_runner); |
| token_web_data_->Init( |
| base::BindOnce(show_error_callback, ERROR_LOADING_TOKEN)); |
| |
| #if !BUILDFLAG(IS_IOS) |
| payment_manifest_web_data_ = |
| base::MakeRefCounted<payments::PaymentManifestWebDataService>( |
| profile_database_, ui_task_runner); |
| payment_manifest_web_data_->Init( |
| base::BindOnce(show_error_callback, ERROR_LOADING_PAYMENT_MANIFEST)); |
| #endif |
| |
| profile_autofill_web_data_->GetAutofillBackend(base::BindOnce( |
| &InitAutofillSyncBridgesOnDBSequence, db_task_runner, |
| profile_autofill_web_data_, application_locale, |
| base::FeatureList::IsEnabled(syncer::kSyncEnableContactInfoDataType))); |
| profile_autofill_web_data_->GetAutofillBackend( |
| base::BindOnce(&InitWalletSyncBridgesOnDBSequence, db_task_runner, |
| profile_autofill_web_data_, application_locale)); |
| profile_autofill_web_data_->GetAutofillBackend( |
| base::BindOnce(&InitWalletOfferSyncBridgeOnDBSequence, db_task_runner, |
| profile_autofill_web_data_)); |
| if (base::FeatureList::IsEnabled(syncer::kSyncAutofillWalletUsageData)) { |
| profile_autofill_web_data_->GetAutofillBackend( |
| base::BindOnce(&InitWalletUsageDataSyncBridgeOnDBSequence, |
| db_task_runner, profile_autofill_web_data_)); |
| } |
| |
| base::FilePath account_storage_path; |
| #if BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_IOS) |
| account_storage_path = context_path.Append(kAccountWebDataFilename); |
| #else |
| account_storage_path = base::FilePath(WebDatabase::kInMemoryPath); |
| #endif // BUILDFLAG(IS_ANDROID) || BUILDFLAG(IS_IOS) |
| account_database_ = base::MakeRefCounted<WebDatabaseService>( |
| account_storage_path, ui_task_runner, db_task_runner); |
| account_database_->AddTable(std::make_unique<autofill::AutofillTable>()); |
| account_database_->LoadDatabase(); |
| |
| account_autofill_web_data_ = |
| base::MakeRefCounted<autofill::AutofillWebDataService>( |
| account_database_, ui_task_runner, db_task_runner); |
| account_autofill_web_data_->Init( |
| base::BindOnce(show_error_callback, ERROR_LOADING_ACCOUNT_AUTOFILL)); |
| account_autofill_web_data_->GetAutofillBackend( |
| base::BindOnce(&InitWalletSyncBridgesOnDBSequence, db_task_runner, |
| account_autofill_web_data_, application_locale)); |
| if (base::FeatureList::IsEnabled(syncer::kSyncAutofillWalletUsageData)) { |
| account_autofill_web_data_->GetAutofillBackend( |
| base::BindOnce(&InitWalletUsageDataSyncBridgeOnDBSequence, |
| db_task_runner, account_autofill_web_data_)); |
| } |
| } |
| |
| WebDataServiceWrapper::~WebDataServiceWrapper() {} |
| |
| void WebDataServiceWrapper::Shutdown() { |
| profile_autofill_web_data_->ShutdownOnUISequence(); |
| account_autofill_web_data_->ShutdownOnUISequence(); |
| keyword_web_data_->ShutdownOnUISequence(); |
| token_web_data_->ShutdownOnUISequence(); |
| |
| #if !BUILDFLAG(IS_IOS) |
| payment_manifest_web_data_->ShutdownOnUISequence(); |
| #endif |
| |
| profile_database_->ShutdownDatabase(); |
| account_database_->ShutdownDatabase(); |
| } |
| |
| scoped_refptr<autofill::AutofillWebDataService> |
| WebDataServiceWrapper::GetProfileAutofillWebData() { |
| return profile_autofill_web_data_.get(); |
| } |
| |
| scoped_refptr<autofill::AutofillWebDataService> |
| WebDataServiceWrapper::GetAccountAutofillWebData() { |
| return account_autofill_web_data_.get(); |
| } |
| |
| scoped_refptr<KeywordWebDataService> |
| WebDataServiceWrapper::GetKeywordWebData() { |
| return keyword_web_data_.get(); |
| } |
| |
| scoped_refptr<TokenWebData> WebDataServiceWrapper::GetTokenWebData() { |
| return token_web_data_.get(); |
| } |
| |
| #if !BUILDFLAG(IS_IOS) |
| scoped_refptr<payments::PaymentManifestWebDataService> |
| WebDataServiceWrapper::GetPaymentManifestWebData() { |
| return payment_manifest_web_data_.get(); |
| } |
| #endif |