1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "chrome/utility/profile_import_handler.h"
8 #include "base/location.h"
9 #include "base/memory/ref_counted.h"
10 #include "base/single_thread_task_runner.h"
11 #include "base/thread_task_runner_handle.h"
12 #include "base/threading/thread.h"
13 #include "chrome/common/importer/profile_import_process_messages.h"
14 #include "chrome/utility/importer/external_process_importer_bridge.h"
15 #include "chrome/utility/importer/importer.h"
16 #include "chrome/utility/importer/importer_creator.h"
17 #include "content/public/utility/utility_thread.h"
21 bool Send(IPC::Message
* message
) {
22 return content::UtilityThread::Get()->Send(message
);
27 ProfileImportHandler::ProfileImportHandler() : items_to_import_(0) {}
29 ProfileImportHandler::~ProfileImportHandler() {}
31 bool ProfileImportHandler::OnMessageReceived(const IPC::Message
& message
) {
33 IPC_BEGIN_MESSAGE_MAP(ProfileImportHandler
, message
)
34 IPC_MESSAGE_HANDLER(ProfileImportProcessMsg_StartImport
, OnImportStart
)
35 IPC_MESSAGE_HANDLER(ProfileImportProcessMsg_CancelImport
, OnImportCancel
)
36 IPC_MESSAGE_HANDLER(ProfileImportProcessMsg_ReportImportItemFinished
,
38 IPC_MESSAGE_UNHANDLED(handled
= false)
43 void ProfileImportHandler::OnImportStart(
44 const importer::SourceProfile
& source_profile
,
46 const base::DictionaryValue
& localized_strings
) {
47 content::UtilityThread::Get()->EnsureBlinkInitialized();
48 bridge_
= new ExternalProcessImporterBridge(
50 content::UtilityThread::Get(),
51 base::ThreadTaskRunnerHandle::Get().get());
52 importer_
= importer::CreateImporterByType(source_profile
.importer_type
);
53 if (!importer_
.get()) {
54 Send(new ProfileImportProcessHostMsg_Import_Finished(
55 false, "Importer could not be created."));
59 items_to_import_
= items
;
61 // Create worker thread in which importer runs.
62 import_thread_
.reset(new base::Thread("import_thread"));
64 import_thread_
->init_com_with_mta(false);
66 if (!import_thread_
->Start()) {
70 import_thread_
->task_runner()->PostTask(
71 FROM_HERE
, base::Bind(&Importer::StartImport
, importer_
.get(),
72 source_profile
, items
, bridge_
));
75 void ProfileImportHandler::OnImportCancel() {
79 void ProfileImportHandler::OnImportItemFinished(uint16 item
) {
80 items_to_import_
^= item
; // Remove finished item from mask.
81 // If we've finished with all items, notify the browser process.
82 if (items_to_import_
== 0) {
83 Send(new ProfileImportProcessHostMsg_Import_Finished(true, std::string()));
88 void ProfileImportHandler::ImporterCleanup() {
92 import_thread_
.reset();
93 content::UtilityThread::Get()->ReleaseProcessIfNeeded();