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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
|
// Copyright (c) 2012 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/importer/external_process_importer_host.h"
#include "base/bind.h"
#include "chrome/browser/bookmarks/bookmark_model_factory.h"
#include "chrome/browser/chrome_notification_types.h"
#include "chrome/browser/importer/external_process_importer_client.h"
#include "chrome/browser/importer/firefox_profile_lock.h"
#include "chrome/browser/importer/importer_lock_dialog.h"
#include "chrome/browser/importer/importer_progress_observer.h"
#include "chrome/browser/importer/in_process_importer_bridge.h"
#include "chrome/browser/search_engines/template_url_service_factory.h"
#include "components/bookmarks/browser/bookmark_model.h"
#include "components/search_engines/template_url_service.h"
#include "content/public/browser/browser_thread.h"
using bookmarks::BookmarkModel;
using content::BrowserThread;
ExternalProcessImporterHost::ExternalProcessImporterHost()
: headless_(false),
parent_window_(NULL),
observer_(NULL),
profile_(NULL),
waiting_for_bookmarkbar_model_(false),
installed_bookmark_observer_(false),
is_source_readable_(true),
client_(NULL),
items_(0),
cancelled_(false),
weak_ptr_factory_(this) {
}
void ExternalProcessImporterHost::Cancel() {
cancelled_ = true;
// There is only a |client_| if the import was started.
if (client_)
client_->Cancel();
NotifyImportEnded(); // Tells the observer that we're done, and deletes us.
}
void ExternalProcessImporterHost::StartImportSettings(
const importer::SourceProfile& source_profile,
Profile* target_profile,
uint16_t items,
ProfileWriter* writer) {
// We really only support importing from one host at a time.
DCHECK(!profile_);
DCHECK(target_profile);
profile_ = target_profile;
writer_ = writer;
source_profile_ = source_profile;
items_ = items;
if (!CheckForFirefoxLock(source_profile)) {
Cancel();
return;
}
CheckForLoadedModels(items);
LaunchImportIfReady();
}
void ExternalProcessImporterHost::NotifyImportStarted() {
if (observer_)
observer_->ImportStarted();
}
void ExternalProcessImporterHost::NotifyImportItemStarted(
importer::ImportItem item) {
if (observer_)
observer_->ImportItemStarted(item);
}
void ExternalProcessImporterHost::NotifyImportItemEnded(
importer::ImportItem item) {
if (observer_)
observer_->ImportItemEnded(item);
}
void ExternalProcessImporterHost::NotifyImportEnded() {
DCHECK_CURRENTLY_ON(BrowserThread::UI);
firefox_lock_.reset();
if (observer_)
observer_->ImportEnded();
delete this;
}
ExternalProcessImporterHost::~ExternalProcessImporterHost() {
if (installed_bookmark_observer_) {
DCHECK(profile_);
BookmarkModelFactory::GetForProfile(profile_)->RemoveObserver(this);
}
}
void ExternalProcessImporterHost::LaunchImportIfReady() {
if (waiting_for_bookmarkbar_model_ || template_service_subscription_.get() ||
!is_source_readable_ || cancelled_)
return;
// This is the in-process half of the bridge, which catches data from the IPC
// pipe and feeds it to the ProfileWriter. The external process half of the
// bridge lives in the external process (see ProfileImportThread).
// The ExternalProcessImporterClient created in the next line owns the bridge,
// and will delete it.
InProcessImporterBridge* bridge =
new InProcessImporterBridge(writer_.get(),
weak_ptr_factory_.GetWeakPtr());
client_ = new ExternalProcessImporterClient(
weak_ptr_factory_.GetWeakPtr(), source_profile_, items_, bridge);
client_->Start();
}
void ExternalProcessImporterHost::BookmarkModelLoaded(BookmarkModel* model,
bool ids_reassigned) {
DCHECK(model->loaded());
model->RemoveObserver(this);
waiting_for_bookmarkbar_model_ = false;
installed_bookmark_observer_ = false;
LaunchImportIfReady();
}
void ExternalProcessImporterHost::BookmarkModelBeingDeleted(
BookmarkModel* model) {
installed_bookmark_observer_ = false;
}
void ExternalProcessImporterHost::BookmarkModelChanged() {
}
void ExternalProcessImporterHost::OnTemplateURLServiceLoaded() {
template_service_subscription_.reset();
LaunchImportIfReady();
}
void ExternalProcessImporterHost::ShowWarningDialog() {
DCHECK(!headless_);
importer::ShowImportLockDialog(
parent_window_,
base::Bind(&ExternalProcessImporterHost::OnImportLockDialogEnd,
weak_ptr_factory_.GetWeakPtr()));
}
void ExternalProcessImporterHost::OnImportLockDialogEnd(bool is_continue) {
if (is_continue) {
// User chose to continue, then we check the lock again to make
// sure that Firefox has been closed. Try to import the settings
// if successful. Otherwise, show a warning dialog.
firefox_lock_->Lock();
if (firefox_lock_->HasAcquired()) {
is_source_readable_ = true;
LaunchImportIfReady();
} else {
ShowWarningDialog();
}
} else {
NotifyImportEnded();
}
}
bool ExternalProcessImporterHost::CheckForFirefoxLock(
const importer::SourceProfile& source_profile) {
if (source_profile.importer_type != importer::TYPE_FIREFOX)
return true;
DCHECK(!firefox_lock_.get());
firefox_lock_.reset(new FirefoxProfileLock(source_profile.source_path));
if (firefox_lock_->HasAcquired())
return true;
// If fail to acquire the lock, we set the source unreadable and
// show a warning dialog, unless running without UI (in which case the import
// must be aborted).
is_source_readable_ = false;
if (headless_)
return false;
ShowWarningDialog();
return true;
}
void ExternalProcessImporterHost::CheckForLoadedModels(uint16_t items) {
// A target profile must be loaded by StartImportSettings().
DCHECK(profile_);
// BookmarkModel should be loaded before adding IE favorites. So we observe
// the BookmarkModel if needed, and start the task after it has been loaded.
if ((items & importer::FAVORITES) && !writer_->BookmarkModelIsLoaded()) {
BookmarkModelFactory::GetForProfile(profile_)->AddObserver(this);
waiting_for_bookmarkbar_model_ = true;
installed_bookmark_observer_ = true;
}
// Observes the TemplateURLService if needed to import search engines from the
// other browser. We also check to see if we're importing bookmarks because
// we can import bookmark keywords from Firefox as search engines.
if ((items & importer::SEARCH_ENGINES) || (items & importer::FAVORITES)) {
if (!writer_->TemplateURLServiceIsLoaded()) {
TemplateURLService* model =
TemplateURLServiceFactory::GetForProfile(profile_);
template_service_subscription_ = model->RegisterOnLoadedCallback(
base::Bind(&ExternalProcessImporterHost::OnTemplateURLServiceLoaded,
weak_ptr_factory_.GetWeakPtr()));
model->Load();
}
}
}
|