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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
|
// Copyright (c) 2010 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 "build/build_config.h"
#include "chrome/browser/user_data_manager.h"
#include <string>
#include "app/l10n_util.h"
#include "base/file_util.h"
#include "base/logging.h"
#include "base/message_loop.h"
#include "base/path_service.h"
#include "base/process_util.h"
#include "base/string_util.h"
#include "chrome/browser/browser_process.h"
#include "chrome/browser/chrome_thread.h"
#include "chrome/common/chrome_constants.h"
#include "chrome/common/chrome_paths.h"
#include "chrome/common/chrome_switches.h"
#include "chrome/installer/util/browser_distribution.h"
#include "grit/chromium_strings.h"
#if defined(OS_WIN)
#include <windows.h>
#include "chrome/browser/shell_integration.h"
#include "chrome/installer/util/shell_util.h"
#endif
namespace {
// Helper to start chrome for a given profile index. The helper takes care of
// enumerating profiles on the file thread and then it launches Chrome for the
// appropriate profile on the original thread.
// An instance of this class should always be created on the heap, and it will
// delete itself when the launch is done.
class LaunchChromeForProfileIndexHelper : GetProfilesHelper::Delegate {
public:
// Creates an instance with the given data manager and to launch chrome for
// the profile with the given index.
LaunchChromeForProfileIndexHelper(const UserDataManager* manager, int index);
virtual ~LaunchChromeForProfileIndexHelper();
// Starts the asynchronous launch.
void StartLaunch();
// GetProfilesHelper::Delegate method.
void OnGetProfilesDone(const std::vector<std::wstring>& profiles);
private:
int index_;
const UserDataManager* manager_;
scoped_refptr<GetProfilesHelper> profiles_helper_;
DISALLOW_COPY_AND_ASSIGN(LaunchChromeForProfileIndexHelper);
};
// Helper to update global user data dir profiles list.
class UserDataDirProfilesUpdater : GetProfilesHelper::Delegate {
public:
UserDataDirProfilesUpdater();
virtual ~UserDataDirProfilesUpdater();
// Request profiles via GetProfilesHelper.
void Run();
// GetProfilesHelper::Delegate method.
void OnGetProfilesDone(const std::vector<std::wstring>& profiles);
private:
scoped_refptr<GetProfilesHelper> profiles_helper_;
DISALLOW_COPY_AND_ASSIGN(UserDataDirProfilesUpdater);
};
LaunchChromeForProfileIndexHelper::LaunchChromeForProfileIndexHelper(
const UserDataManager* manager,
int index)
: index_(index),
manager_(manager),
ALLOW_THIS_IN_INITIALIZER_LIST(
profiles_helper_(new GetProfilesHelper(this))) {
DCHECK(manager);
}
LaunchChromeForProfileIndexHelper::~LaunchChromeForProfileIndexHelper() {
profiles_helper_->OnDelegateDeleted();
}
void LaunchChromeForProfileIndexHelper::StartLaunch() {
profiles_helper_->GetProfiles(NULL);
}
void LaunchChromeForProfileIndexHelper::OnGetProfilesDone(
const std::vector<std::wstring>& profiles) {
if (index_ >= 0 && index_ < static_cast<int>(profiles.size()))
manager_->LaunchChromeForProfile(profiles[index_]);
// We are done, delete ourselves.
delete this;
}
UserDataDirProfilesUpdater::UserDataDirProfilesUpdater()
: ALLOW_THIS_IN_INITIALIZER_LIST(
profiles_helper_(new GetProfilesHelper(this))) {
}
UserDataDirProfilesUpdater::~UserDataDirProfilesUpdater() {
profiles_helper_->OnDelegateDeleted();
}
void UserDataDirProfilesUpdater::Run() {
profiles_helper_->GetProfiles(NULL);
}
void UserDataDirProfilesUpdater::OnGetProfilesDone(
const std::vector<std::wstring>& profiles) {
g_browser_process->user_data_dir_profiles() = profiles;
// We are done, delete ourselves.
delete this;
}
} // namespace
// Separator used in folder names between the prefix and the profile name.
// For e.g. a folder for the profile "Joe" would be named "User Data-Joe".
static const wchar_t kProfileFolderSeparator[] = L"-";
// static
UserDataManager* UserDataManager::instance_ = NULL;
// static
UserDataManager* UserDataManager::Create() {
DCHECK(!instance_);
FilePath user_path;
PathService::Get(chrome::DIR_USER_DATA, &user_path);
instance_ = new UserDataManager(user_path);
return instance_;
}
// static
UserDataManager* UserDataManager::Get() {
DCHECK(instance_);
return instance_;
}
UserDataManager::UserDataManager(const FilePath& user_data_root)
: user_data_root_(user_data_root) {
// Determine current profile name and current folder name.
current_folder_name_ = user_data_root.BaseName().ToWStringHack();
bool success = GetProfileNameFromFolderName(current_folder_name_,
¤t_profile_name_);
// The current profile is a default profile if the current user data folder
// name is just kUserDataDirname or when the folder name doesn't have the
// kUserDataDirname as prefix.
is_current_profile_default_ =
!success || (current_folder_name_ == chrome::kUserDataDirname);
// (TODO:munjal) Fix issue 5070:
// http://code.google.com/p/chromium/issues/detail?id=5070
user_data_root_ = user_data_root_.DirName();
}
UserDataManager::~UserDataManager() {
if (instance_ == this)
instance_ = NULL;
}
// static
bool UserDataManager::GetProfileNameFromFolderName(
const std::wstring& folder_name,
std::wstring* profile_name) {
// The folder name should start with a specific prefix for it to be a valid
// profile folder.
if (folder_name.find(chrome::kUserDataDirname) != 0)
return false;
// Seems like we cannot use arraysize macro for externally defined constants.
// Is there a way?
unsigned int prefix_length = wcslen(chrome::kUserDataDirname);
// Subtract 1 from the size of the array for trailing null character.
unsigned int separator_length = arraysize(kProfileFolderSeparator) - 1;
// It's safe to use profile_name variable for intermediate values since we
// will always return true now.
*profile_name = folder_name.substr(prefix_length);
// Remove leading separator if present.
if (profile_name->find_first_of(kProfileFolderSeparator) == 0)
*profile_name = profile_name->substr(separator_length);
if (profile_name->empty())
*profile_name = chrome::kNotSignedInProfile;
return true;
}
// static
std::wstring UserDataManager::GetFolderNameFromProfileName(
const std::wstring& profile_name) {
std::wstring folder_name = chrome::kUserDataDirname;
if (profile_name != chrome::kNotSignedInProfile) {
folder_name += kProfileFolderSeparator;
folder_name += profile_name;
}
return folder_name;
}
std::wstring UserDataManager::GetUserDataFolderForProfile(
const std::wstring& profile_name) const {
std::wstring folder_name = GetFolderNameFromProfileName(profile_name);
FilePath folder_path = user_data_root_.Append(
FilePath::FromWStringHack(folder_name));
return folder_path.ToWStringHack();
}
void UserDataManager::LaunchChromeForProfile(
const std::wstring& profile_name) const {
std::wstring user_data_dir = GetUserDataFolderForProfile(profile_name);
FilePath command;
PathService::Get(base::FILE_EXE, &command);
CommandLine command_line(command);
command_line.AppendSwitch(switches::kEnableUserDataDirProfiles);
command_line.AppendSwitchWithValue(switches::kUserDataDir,
user_data_dir);
FilePath local_state_path;
PathService::Get(chrome::FILE_LOCAL_STATE, &local_state_path);
command_line.AppendSwitchWithValue(switches::kParentProfile,
local_state_path.ToWStringHack());
base::LaunchApp(command_line, false, false, NULL);
}
void UserDataManager::LaunchChromeForProfile(int index) const {
// Helper deletes itself when done.
LaunchChromeForProfileIndexHelper* helper =
new LaunchChromeForProfileIndexHelper(this, index);
helper->StartLaunch();
}
void UserDataManager::GetProfiles(std::vector<std::wstring>* profiles) const {
// This function should be called on the file thread.
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::FILE));
file_util::FileEnumerator file_enum(user_data_root_, false,
file_util::FileEnumerator::DIRECTORIES);
std::wstring folder_name;
while (!(folder_name = file_enum.Next().ToWStringHack()).empty()) {
folder_name = file_util::GetFilenameFromPath(folder_name);
std::wstring profile_name;
if (GetProfileNameFromFolderName(folder_name, &profile_name))
profiles->push_back(profile_name);
}
}
bool UserDataManager::CreateShortcutForProfileInFolder(
const FilePath& folder,
const std::wstring& profile_name) const {
#if defined(OS_WIN)
std::wstring exe_path;
if (!PathService::Get(base::FILE_EXE, &exe_path))
return false;
// Working directory.
std::wstring exe_folder = file_util::GetDirectoryFromPath(exe_path);
// Command and arguments.
std::wstring cmd;
cmd = StringPrintf(L"\"%ls\"", exe_path.c_str());
std::wstring user_data_dir = GetUserDataFolderForProfile(profile_name);
std::wstring args = CommandLine::PrefixedSwitchStringWithValue(
switches::kUserDataDir,
user_data_dir);
args = StringPrintf(L"\"%ls\"", args.c_str());
// Shortcut path.
std::wstring shortcut_name = l10n_util::GetStringF(
IDS_START_IN_PROFILE_SHORTCUT_NAME,
profile_name);
shortcut_name.append(L".lnk");
FilePath shortcut_path = folder.Append(shortcut_name);
// Profile path from user_data_dir.
FilePath profile_path = FilePath(user_data_dir).Append(
chrome::kNotSignedInProfile);
return file_util::CreateShortcutLink(
cmd.c_str(),
shortcut_path.value().c_str(),
exe_folder.c_str(),
args.c_str(),
NULL,
exe_path.c_str(),
0,
ShellIntegration::GetChromiumAppId(profile_path).c_str());
#else
// TODO(port): should probably use freedesktop.org standard for desktop files.
// See shell_integration.h for an implementation; but this code is reportedly
// obsolete.
NOTIMPLEMENTED();
return false;
#endif
}
bool UserDataManager::CreateDesktopShortcutForProfile(
const std::wstring& profile_name) const {
#if defined(OS_WIN)
std::wstring desktop_path;
if (!ShellUtil::GetDesktopPath(false, &desktop_path))
return false;
return CreateShortcutForProfileInFolder(FilePath(desktop_path), profile_name);
#else
// TODO(port): should probably use freedesktop.org standard for desktop files.
// See shell_integration.h for an implementation; but this code is reportedly
// obsolete.
NOTIMPLEMENTED();
return false;
#endif
}
void UserDataManager::RefreshUserDataDirProfiles() const {
// UserDataDirProfilesUpdater will delete itself when done.
UserDataDirProfilesUpdater* updater = new UserDataDirProfilesUpdater();
updater->Run();
}
GetProfilesHelper::GetProfilesHelper(Delegate* delegate)
: delegate_(delegate),
message_loop_(NULL) {
}
void GetProfilesHelper::GetProfiles(MessageLoop* target_loop) {
// If the target loop is not NULL then use the target loop, or if it's NULL
// then use the current message loop to post a task on it later when we are
// done building a list of profiles.
if (target_loop) {
message_loop_ = target_loop;
} else {
message_loop_ = MessageLoop::current();
}
DCHECK(message_loop_);
ChromeThread::PostTask(
ChromeThread::FILE, FROM_HERE,
NewRunnableMethod(this, &GetProfilesHelper::GetProfilesFromManager));
}
// Records that the delegate is closed.
void GetProfilesHelper::OnDelegateDeleted() {
delegate_ = NULL;
}
void GetProfilesHelper::GetProfilesFromManager() {
// This function should be called on the file thread.
DCHECK(ChromeThread::CurrentlyOn(ChromeThread::FILE));
// If the delegate is gone by now, no need to do any work.
if (!delegate_)
return;
scoped_ptr< std::vector<std::wstring> > profiles(
new std::vector<std::wstring>);
UserDataManager::Get()->GetProfiles(profiles.get());
// Post a task on the original thread to call the delegate.
message_loop_->PostTask(
FROM_HERE,
NewRunnableMethod(this,
&GetProfilesHelper::InvokeDelegate,
profiles.release()));
}
void GetProfilesHelper::InvokeDelegate(std::vector<std::wstring>* profiles) {
scoped_ptr< std::vector<std::wstring> > udd_profiles(profiles);
// If the delegate is gone by now, no need to do any work.
if (delegate_)
delegate_->OnGetProfilesDone(*udd_profiles.get());
}
|