Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(217)

Side by Side Diff: chrome/browser/component_updater/component_patcher_operation_out_of_process.cc

Issue 2566053002: Convert utility process out-of-process file patching to mojo (Closed)
Patch Set: Address review comments. Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/component_updater/component_patcher_operation_out_of_pr ocess.h" 5 #include "chrome/browser/component_updater/component_patcher_operation_out_of_pr ocess.h"
6 6
7 #include <memory>
8 #include <vector>
9
10 #include "base/bind.h" 7 #include "base/bind.h"
11 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/files/file.h"
12 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
13 #include "base/location.h" 11 #include "base/sequenced_task_runner.h"
14 #include "base/single_thread_task_runner.h" 12 #include "base/strings/string16.h"
15 #include "base/threading/thread_task_runner_handle.h"
16 #include "chrome/common/chrome_utility_messages.h"
17 #include "chrome/grit/generated_resources.h" 13 #include "chrome/grit/generated_resources.h"
18 #include "components/component_updater/component_updater_service.h"
19 #include "content/public/browser/browser_thread.h"
20 #include "content/public/browser/utility_process_host.h"
21 #include "content/public/browser/utility_process_host_client.h"
22 #include "courgette/courgette.h"
23 #include "courgette/third_party/bsdiff/bsdiff.h"
24 #include "ipc/ipc_message_macros.h"
25 #include "ui/base/l10n/l10n_util.h" 14 #include "ui/base/l10n/l10n_util.h"
26 15
27 namespace component_updater { 16 namespace component_updater {
28 17
29 class PatchHost : public content::UtilityProcessHostClient { 18 ChromeOutOfProcessPatcher::ChromeOutOfProcessPatcher() = default;
30 public:
31 PatchHost(base::Callback<void(int result)> callback,
32 scoped_refptr<base::SequencedTaskRunner> task_runner);
33 19
34 void StartProcess(std::unique_ptr<IPC::Message> message); 20 ChromeOutOfProcessPatcher::~ChromeOutOfProcessPatcher() = default;
35
36 private:
37 ~PatchHost() override;
38
39 void OnPatchFinished(int result);
40
41 // Overrides of content::UtilityProcessHostClient.
42 bool OnMessageReceived(const IPC::Message& message) override;
43
44 void OnProcessCrashed(int exit_code) override;
45
46 base::Callback<void(int result)> callback_;
47 scoped_refptr<base::SequencedTaskRunner> task_runner_;
48 };
49
50 PatchHost::PatchHost(base::Callback<void(int result)> callback,
51 scoped_refptr<base::SequencedTaskRunner> task_runner)
52 : callback_(callback), task_runner_(task_runner) {
53 }
54
55 PatchHost::~PatchHost() {
56 }
57
58 void PatchHost::StartProcess(std::unique_ptr<IPC::Message> message) {
59 // The DeltaUpdateOpPatchHost is not responsible for deleting the
60 // UtilityProcessHost object.
61 content::UtilityProcessHost* host = content::UtilityProcessHost::Create(
62 this, base::ThreadTaskRunnerHandle::Get().get());
63 host->SetName(l10n_util::GetStringUTF16(
64 IDS_UTILITY_PROCESS_COMPONENT_PATCHER_NAME));
65 host->Send(message.release());
66 }
67
68 bool PatchHost::OnMessageReceived(const IPC::Message& message) {
69 bool handled = true;
70 IPC_BEGIN_MESSAGE_MAP(PatchHost, message)
71 IPC_MESSAGE_HANDLER(ChromeUtilityHostMsg_PatchFile_Finished, OnPatchFinished)
72 IPC_MESSAGE_UNHANDLED(handled = false)
73 IPC_END_MESSAGE_MAP()
74 return handled;
75 }
76
77 void PatchHost::OnPatchFinished(int result) {
78 if (task_runner_.get()) {
79 task_runner_->PostTask(FROM_HERE, base::Bind(callback_, result));
80 task_runner_ = NULL;
81 }
82 }
83
84 void PatchHost::OnProcessCrashed(int exit_code) {
85 if (task_runner_.get()) {
86 task_runner_->PostTask(FROM_HERE, base::Bind(callback_, -1));
87 task_runner_ = NULL;
88 }
89 }
90
91 ChromeOutOfProcessPatcher::ChromeOutOfProcessPatcher() {
92 }
93
94 ChromeOutOfProcessPatcher::~ChromeOutOfProcessPatcher() {
95 }
96 21
97 void ChromeOutOfProcessPatcher::Patch( 22 void ChromeOutOfProcessPatcher::Patch(
98 const std::string& operation, 23 const std::string& operation,
99 scoped_refptr<base::SequencedTaskRunner> task_runner, 24 scoped_refptr<base::SequencedTaskRunner> task_runner,
100 const base::FilePath& input_abs_path, 25 const base::FilePath& input_abs_path,
101 const base::FilePath& patch_abs_path, 26 const base::FilePath& patch_abs_path,
102 const base::FilePath& output_abs_path, 27 const base::FilePath& output_abs_path,
103 base::Callback<void(int result)> callback) { 28 base::Callback<void(int result)> callback) {
104 host_ = new PatchHost(callback, task_runner); 29 DCHECK(task_runner);
105 IPC::PlatformFileForTransit input = IPC::TakePlatformFileForTransit( 30 DCHECK(!input_abs_path.empty());
106 base::File( 31 DCHECK(!patch_abs_path.empty());
107 input_abs_path, base::File::FLAG_OPEN | base::File::FLAG_READ)); 32 DCHECK(!output_abs_path.empty());
108 IPC::PlatformFileForTransit patch = IPC::TakePlatformFileForTransit( 33 DCHECK(!utility_process_mojo_client_);
109 base::File( 34
110 patch_abs_path, base::File::FLAG_OPEN | base::File::FLAG_READ)); 35 task_runner_ = std::move(task_runner);
111 IPC::PlatformFileForTransit output = IPC::TakePlatformFileForTransit( 36 callback_ = callback;
112 base::File( 37
113 output_abs_path, 38 base::File input_file(input_abs_path,
114 base::File::FLAG_CREATE | 39 base::File::FLAG_OPEN | base::File::FLAG_READ);
115 base::File::FLAG_WRITE | 40 base::File patch_file(patch_abs_path,
116 base::File::FLAG_EXCLUSIVE_WRITE)); 41 base::File::FLAG_OPEN | base::File::FLAG_READ);
117 std::unique_ptr<IPC::Message> patch_message; 42 base::File output_file(output_abs_path, base::File::FLAG_CREATE |
43 base::File::FLAG_WRITE |
44 base::File::FLAG_EXCLUSIVE_WRITE);
45
46 const base::string16 utility_process_name =
47 l10n_util::GetStringUTF16(IDS_UTILITY_PROCESS_COMPONENT_PATCHER_NAME);
48
49 utility_process_mojo_client_.reset(
50 new content::UtilityProcessMojoClient<chrome::mojom::FilePatcher>(
51 utility_process_name));
52 utility_process_mojo_client_->set_error_callback(
53 base::Bind(&ChromeOutOfProcessPatcher::PatchDone, this, -1));
54
55 utility_process_mojo_client_->Start(); // Start the utility process.
56
118 if (operation == update_client::kBsdiff) { 57 if (operation == update_client::kBsdiff) {
119 patch_message.reset(new ChromeUtilityMsg_PatchFileBsdiff( 58 utility_process_mojo_client_->service()->PatchFileBsdiff(
120 input, patch, output)); 59 std::move(input_file), std::move(patch_file), std::move(output_file),
60 base::Bind(&ChromeOutOfProcessPatcher::PatchDone, this));
121 } else if (operation == update_client::kCourgette) { 61 } else if (operation == update_client::kCourgette) {
122 patch_message.reset(new ChromeUtilityMsg_PatchFileCourgette( 62 utility_process_mojo_client_->service()->PatchFileCourgette(
123 input, patch, output)); 63 std::move(input_file), std::move(patch_file), std::move(output_file),
64 base::Bind(&ChromeOutOfProcessPatcher::PatchDone, this));
124 } else { 65 } else {
125 NOTREACHED(); 66 NOTREACHED();
126 } 67 }
68 }
127 69
128 content::BrowserThread::PostTask( 70 void ChromeOutOfProcessPatcher::PatchDone(int result) {
129 content::BrowserThread::IO, 71 utility_process_mojo_client_.reset(); // Terminate the utility process.
130 FROM_HERE, 72 task_runner_->PostTask(FROM_HERE, base::Bind(callback_, result));
131 base::Bind(
132 &PatchHost::StartProcess, host_, base::Passed(&patch_message)));
133 } 73 }
134 74
135 } // namespace component_updater 75 } // namespace component_updater
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698