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
|
// Copyright 2014 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/chrome_select_file_dialog_factory_win.h"
#include <Windows.h>
#include <commdlg.h>
#include "base/bind.h"
#include "base/bind_helpers.h"
#include "base/callback.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/metrics/field_trial.h"
#include "base/strings/string16.h"
#include "base/synchronization/waitable_event.h"
#include "base/win/metro.h"
#include "chrome/common/chrome_utility_messages.h"
#include "content/public/browser/utility_process_host.h"
#include "content/public/browser/utility_process_host_client.h"
#include "ipc/ipc_message_macros.h"
#include "ui/base/win/open_file_name_win.h"
#include "ui/shell_dialogs/select_file_dialog_win.h"
namespace {
bool CallMetroOPENFILENAMEMethod(const char* method_name, OPENFILENAME* ofn) {
typedef BOOL (*MetroOPENFILENAMEMethod)(OPENFILENAME*);
MetroOPENFILENAMEMethod metro_method = NULL;
HMODULE metro_module = base::win::GetMetroModule();
if (metro_module != NULL) {
metro_method = reinterpret_cast<MetroOPENFILENAMEMethod>(
::GetProcAddress(metro_module, method_name));
}
if (metro_method != NULL)
return metro_method(ofn) == TRUE;
NOTREACHED();
return false;
}
bool ShouldIsolateShellOperations() {
return base::FieldTrialList::FindFullName("IsolateShellOperations") ==
"Enabled";
}
// Receives the GetOpenFileName result from the utility process.
class GetOpenFileNameClient : public content::UtilityProcessHostClient {
public:
GetOpenFileNameClient();
// Blocks until the GetOpenFileName result is received (including failure to
// launch or a crash of the utility process).
void WaitForCompletion();
// Returns the selected directory.
const base::FilePath& directory() const { return directory_; }
// Returns the list of selected filenames. Each should be interpreted as a
// child of directory().
const std::vector<base::FilePath>& filenames() const { return filenames_; }
// UtilityProcessHostClient implementation
virtual void OnProcessCrashed(int exit_code) override;
virtual void OnProcessLaunchFailed() override;
virtual bool OnMessageReceived(const IPC::Message& message) override;
protected:
virtual ~GetOpenFileNameClient();
private:
void OnResult(const base::FilePath& directory,
const std::vector<base::FilePath>& filenames);
void OnFailure();
base::FilePath directory_;
std::vector<base::FilePath> filenames_;
base::WaitableEvent event_;
DISALLOW_COPY_AND_ASSIGN(GetOpenFileNameClient);
};
GetOpenFileNameClient::GetOpenFileNameClient() : event_(true, false) {
}
void GetOpenFileNameClient::WaitForCompletion() {
event_.Wait();
}
void GetOpenFileNameClient::OnProcessCrashed(int exit_code) {
event_.Signal();
}
void GetOpenFileNameClient::OnProcessLaunchFailed() {
event_.Signal();
}
bool GetOpenFileNameClient::OnMessageReceived(const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(GetOpenFileNameClient, message)
IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_GetOpenFileName_Failed,
OnFailure)
IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_GetOpenFileName_Result,
OnResult)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
GetOpenFileNameClient::~GetOpenFileNameClient() {}
void GetOpenFileNameClient::OnResult(
const base::FilePath& directory,
const std::vector<base::FilePath>& filenames) {
directory_ = directory;
filenames_ = filenames;
event_.Signal();
}
void GetOpenFileNameClient::OnFailure() {
event_.Signal();
}
// Initiates IPC with a new utility process using |client|. Instructs the
// utility process to call GetOpenFileName with |ofn|. |current_task_runner|
// must be the currently executing task runner.
void DoInvokeGetOpenFileName(
OPENFILENAME* ofn,
scoped_refptr<GetOpenFileNameClient> client,
const scoped_refptr<base::SequencedTaskRunner>& current_task_runner) {
DCHECK(current_task_runner->RunsTasksOnCurrentThread());
base::WeakPtr<content::UtilityProcessHost> utility_process_host(
content::UtilityProcessHost::Create(client, current_task_runner)
->AsWeakPtr());
utility_process_host->DisableSandbox();
utility_process_host->Send(new ChromeUtilityMsg_GetOpenFileName(
ofn->hwndOwner,
ofn->Flags & ~OFN_ENABLEHOOK, // We can't send a hook function over IPC.
ui::win::OpenFileName::GetFilters(ofn),
base::FilePath(ofn->lpstrInitialDir ? ofn->lpstrInitialDir
: base::string16()),
base::FilePath(ofn->lpstrFile)));
}
// Invokes GetOpenFileName in a utility process. Blocks until the result is
// received. Uses |blocking_task_runner| for IPC.
bool GetOpenFileNameInUtilityProcess(
const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner,
OPENFILENAME* ofn) {
scoped_refptr<GetOpenFileNameClient> client(new GetOpenFileNameClient);
blocking_task_runner->PostTask(
FROM_HERE,
base::Bind(&DoInvokeGetOpenFileName,
base::Unretained(ofn), client, blocking_task_runner));
client->WaitForCompletion();
if (!client->filenames().size())
return false;
ui::win::OpenFileName::SetResult(
client->directory(), client->filenames(), ofn);
return true;
}
// Implements GetOpenFileName for CreateWinSelectFileDialog by delegating either
// to Metro or a utility process.
bool GetOpenFileNameImpl(
const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner,
OPENFILENAME* ofn) {
if (base::win::IsMetroProcess())
return CallMetroOPENFILENAMEMethod("MetroGetOpenFileName", ofn);
if (ShouldIsolateShellOperations())
return GetOpenFileNameInUtilityProcess(blocking_task_runner, ofn);
return ::GetOpenFileName(ofn) == TRUE;
}
class GetSaveFileNameClient : public content::UtilityProcessHostClient {
public:
GetSaveFileNameClient();
// Blocks until the GetSaveFileName result is received (including failure to
// launch or a crash of the utility process).
void WaitForCompletion();
// Returns the selected path.
const base::FilePath& path() const { return path_; }
// Returns the index of the user-selected filter.
int one_based_filter_index() const { return one_based_filter_index_; }
// UtilityProcessHostClient implementation
virtual void OnProcessCrashed(int exit_code) override;
virtual void OnProcessLaunchFailed() override;
virtual bool OnMessageReceived(const IPC::Message& message) override;
protected:
virtual ~GetSaveFileNameClient();
private:
void OnResult(const base::FilePath& path, int one_based_filter_index);
void OnFailure();
base::FilePath path_;
int one_based_filter_index_;
base::WaitableEvent event_;
DISALLOW_COPY_AND_ASSIGN(GetSaveFileNameClient);
};
GetSaveFileNameClient::GetSaveFileNameClient()
: event_(true, false), one_based_filter_index_(0) {
}
void GetSaveFileNameClient::WaitForCompletion() {
event_.Wait();
}
void GetSaveFileNameClient::OnProcessCrashed(int exit_code) {
event_.Signal();
}
void GetSaveFileNameClient::OnProcessLaunchFailed() {
event_.Signal();
}
bool GetSaveFileNameClient::OnMessageReceived(const IPC::Message& message) {
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(GetSaveFileNameClient, message)
IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_GetSaveFileName_Failed,
OnFailure)
IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_GetSaveFileName_Result,
OnResult)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
GetSaveFileNameClient::~GetSaveFileNameClient() {}
void GetSaveFileNameClient::OnResult(const base::FilePath& path,
int one_based_filter_index) {
path_ = path;
one_based_filter_index_ = one_based_filter_index;
event_.Signal();
}
void GetSaveFileNameClient::OnFailure() {
event_.Signal();
}
// Initiates IPC with a new utility process using |client|. Instructs the
// utility process to call GetSaveFileName with |ofn|. |current_task_runner|
// must be the currently executing task runner.
void DoInvokeGetSaveFileName(
OPENFILENAME* ofn,
scoped_refptr<GetSaveFileNameClient> client,
const scoped_refptr<base::SequencedTaskRunner>& current_task_runner) {
DCHECK(current_task_runner->RunsTasksOnCurrentThread());
base::WeakPtr<content::UtilityProcessHost> utility_process_host(
content::UtilityProcessHost::Create(client, current_task_runner)
->AsWeakPtr());
utility_process_host->DisableSandbox();
ChromeUtilityMsg_GetSaveFileName_Params params;
params.owner = ofn->hwndOwner;
// We can't pass the hook function over IPC.
params.flags = ofn->Flags & ~OFN_ENABLEHOOK;
params.filters = ui::win::OpenFileName::GetFilters(ofn);
params.one_based_filter_index = ofn->nFilterIndex;
params.suggested_filename = base::FilePath(ofn->lpstrFile);
params.initial_directory = base::FilePath(
ofn->lpstrInitialDir ? ofn->lpstrInitialDir : base::string16());
params.default_extension =
ofn->lpstrDefExt ? base::string16(ofn->lpstrDefExt) : base::string16();
utility_process_host->Send(new ChromeUtilityMsg_GetSaveFileName(params));
}
// Invokes GetSaveFileName in a utility process. Blocks until the result is
// received. Uses |blocking_task_runner| for IPC.
bool GetSaveFileNameInUtilityProcess(
const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner,
OPENFILENAME* ofn) {
scoped_refptr<GetSaveFileNameClient> client(new GetSaveFileNameClient);
blocking_task_runner->PostTask(
FROM_HERE,
base::Bind(&DoInvokeGetSaveFileName,
base::Unretained(ofn), client, blocking_task_runner));
client->WaitForCompletion();
if (client->path().empty())
return false;
base::wcslcpy(ofn->lpstrFile, client->path().value().c_str(), ofn->nMaxFile);
ofn->nFilterIndex = client->one_based_filter_index();
return true;
}
// Implements GetSaveFileName for CreateWinSelectFileDialog by delegating either
// to Metro or a utility process.
bool GetSaveFileNameImpl(
const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner,
OPENFILENAME* ofn) {
if (base::win::IsMetroProcess())
return CallMetroOPENFILENAMEMethod("MetroGetSaveFileName", ofn);
if (ShouldIsolateShellOperations())
return GetSaveFileNameInUtilityProcess(blocking_task_runner, ofn);
return ::GetSaveFileName(ofn) == TRUE;
}
} // namespace
ChromeSelectFileDialogFactory::ChromeSelectFileDialogFactory(
const scoped_refptr<base::SequencedTaskRunner>& blocking_task_runner)
: blocking_task_runner_(blocking_task_runner) {
}
ChromeSelectFileDialogFactory::~ChromeSelectFileDialogFactory() {}
ui::SelectFileDialog* ChromeSelectFileDialogFactory::Create(
ui::SelectFileDialog::Listener* listener,
ui::SelectFilePolicy* policy) {
return ui::CreateWinSelectFileDialog(
listener,
policy,
base::Bind(GetOpenFileNameImpl, blocking_task_runner_),
base::Bind(GetSaveFileNameImpl, blocking_task_runner_));
}
|