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

Side by Side Diff: content/browser/renderer_host/pepper/pepper_renderer_connection.cc

Issue 55133010: [PPAPI] Fixed FileSystems from JavaScript not having a context. (Closed) Base URL: http://git.chromium.org/chromium/src.git@pepper-fs-fileio-test-disable
Patch Set: Nit: Return early, and un-indent code. Created 7 years, 1 month 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 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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 "content/browser/renderer_host/pepper/pepper_renderer_connection.h" 5 #include "content/browser/renderer_host/pepper/pepper_renderer_connection.h"
6 6
7 #include "base/bind.h"
8 #include "base/memory/ref_counted.h"
7 #include "content/browser/browser_child_process_host_impl.h" 9 #include "content/browser/browser_child_process_host_impl.h"
8 #include "content/browser/ppapi_plugin_process_host.h" 10 #include "content/browser/ppapi_plugin_process_host.h"
9 #include "content/browser/renderer_host/pepper/browser_ppapi_host_impl.h" 11 #include "content/browser/renderer_host/pepper/browser_ppapi_host_impl.h"
10 #include "content/common/pepper_renderer_instance_data.h" 12 #include "content/common/pepper_renderer_instance_data.h"
11 #include "content/common/view_messages.h" 13 #include "content/common/view_messages.h"
12 #include "content/browser/renderer_host/pepper/pepper_file_ref_host.h" 14 #include "content/browser/renderer_host/pepper/pepper_file_ref_host.h"
13 #include "content/browser/renderer_host/pepper/pepper_file_system_browser_host.h " 15 #include "content/browser/renderer_host/pepper/pepper_file_system_browser_host.h "
14 #include "content/public/browser/content_browser_client.h" 16 #include "content/public/browser/content_browser_client.h"
15 #include "content/public/common/content_client.h" 17 #include "content/public/common/content_client.h"
16 #include "ipc/ipc_message_macros.h" 18 #include "ipc/ipc_message_macros.h"
17 #include "ppapi/host/resource_host.h" 19 #include "ppapi/host/resource_host.h"
18 #include "ppapi/proxy/ppapi_message_utils.h" 20 #include "ppapi/proxy/ppapi_message_utils.h"
19 #include "ppapi/proxy/ppapi_messages.h" 21 #include "ppapi/proxy/ppapi_messages.h"
20 #include "ppapi/proxy/ppapi_message_utils.h" 22 #include "ppapi/proxy/ppapi_message_utils.h"
21 #include "ppapi/proxy/resource_message_params.h" 23 #include "ppapi/proxy/resource_message_params.h"
22 24
23 namespace content { 25 namespace content {
24 26
27 namespace {
28
29 // Responsible for creating the pending resource hosts, holding their IDs until
30 // all of them have been created for a single message, and sending the reply to
31 // say that the hosts have been created.
32 class PendingHostCreator
33 : public base::RefCounted<PendingHostCreator> {
34 public:
35 PendingHostCreator(BrowserPpapiHostImpl* host,
36 BrowserMessageFilter* connection,
37 int routing_id,
38 int sequence_id,
39 size_t nested_msgs_size);
40
41 // Adds the given resource host as a pending one. The host is remembered as
42 // host number |index|, and will ultimately be sent to the plugin to be
43 // attached to a real resource.
44 void AddPendingResourceHost(
45 size_t index,
46 scoped_ptr<ppapi::host::ResourceHost> resource_host);
47
48 private:
49 friend class base::RefCounted<PendingHostCreator>;
50
51 // When the last reference to this class is released, all of the resource
52 // hosts would have been added. This destructor sends the message to the
53 // plugin to tell it to attach real hosts to all of the pending hosts that
54 // have been added by this object.
55 ~PendingHostCreator();
56
57 BrowserPpapiHostImpl* host_;
58 BrowserMessageFilter* connection_;
59 int routing_id_;
60 int sequence_id_;
61 std::vector<int> pending_resource_host_ids_;
62 };
63
64 PendingHostCreator::PendingHostCreator(BrowserPpapiHostImpl* host,
65 BrowserMessageFilter* connection,
66 int routing_id,
67 int sequence_id,
68 size_t nested_msgs_size)
69 : host_(host),
70 connection_(connection),
71 routing_id_(routing_id),
72 sequence_id_(sequence_id),
73 pending_resource_host_ids_(nested_msgs_size, 0) {}
74
75 void PendingHostCreator::AddPendingResourceHost(
76 size_t index,
77 scoped_ptr<ppapi::host::ResourceHost> resource_host) {
78 pending_resource_host_ids_[index] =
79 host_->GetPpapiHost()->AddPendingResourceHost(resource_host.Pass());
80 }
81
82 PendingHostCreator::~PendingHostCreator() {
83 connection_->Send(new PpapiHostMsg_CreateResourceHostsFromHostReply(
84 routing_id_, sequence_id_, pending_resource_host_ids_));
85 }
86
87 } // namespace
88
25 PepperRendererConnection::PepperRendererConnection(int render_process_id) 89 PepperRendererConnection::PepperRendererConnection(int render_process_id)
26 : render_process_id_(render_process_id) { 90 : render_process_id_(render_process_id) {
27 // Only give the renderer permission for stable APIs. 91 // Only give the renderer permission for stable APIs.
28 in_process_host_.reset(new BrowserPpapiHostImpl(this, 92 in_process_host_.reset(new BrowserPpapiHostImpl(this,
29 ppapi::PpapiPermissions(), 93 ppapi::PpapiPermissions(),
30 "", 94 "",
31 base::FilePath(), 95 base::FilePath(),
32 base::FilePath(), 96 base::FilePath(),
33 true /* in_process */, 97 true /* in_process */,
34 false /* external_plugin */)); 98 false /* external_plugin */));
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 return handled; 150 return handled;
87 } 151 }
88 152
89 void PepperRendererConnection::OnMsgCreateResourceHostsFromHost( 153 void PepperRendererConnection::OnMsgCreateResourceHostsFromHost(
90 int routing_id, 154 int routing_id,
91 int child_process_id, 155 int child_process_id,
92 const ppapi::proxy::ResourceMessageCallParams& params, 156 const ppapi::proxy::ResourceMessageCallParams& params,
93 PP_Instance instance, 157 PP_Instance instance,
94 const std::vector<IPC::Message>& nested_msgs) { 158 const std::vector<IPC::Message>& nested_msgs) {
95 BrowserPpapiHostImpl* host = GetHostForChildProcess(child_process_id); 159 BrowserPpapiHostImpl* host = GetHostForChildProcess(child_process_id);
96
97 std::vector<int> pending_resource_host_ids(nested_msgs.size(), 0);
98 if (!host) { 160 if (!host) {
99 DLOG(ERROR) << "Invalid plugin process ID."; 161 DLOG(ERROR) << "Invalid plugin process ID.";
100 } else { 162 return;
101 for (size_t i = 0; i < nested_msgs.size(); ++i) { 163 }
102 const IPC::Message& nested_msg = nested_msgs[i]; 164
103 scoped_ptr<ppapi::host::ResourceHost> resource_host; 165 scoped_refptr<PendingHostCreator> creator = new PendingHostCreator(
104 if (host->IsValidInstance(instance)) { 166 host, this, routing_id, params.sequence(), nested_msgs.size());
105 if (nested_msg.type() == PpapiHostMsg_FileRef_CreateExternal::ID) { 167 for (size_t i = 0; i < nested_msgs.size(); ++i) {
106 // FileRef_CreateExternal is only permitted from the renderer. Because 168 const IPC::Message& nested_msg = nested_msgs[i];
107 // of this, we handle this message here and not in 169 scoped_ptr<ppapi::host::ResourceHost> resource_host;
108 // content_browser_pepper_host_factory.cc. 170 if (host->IsValidInstance(instance)) {
109 base::FilePath external_path; 171 if (nested_msg.type() == PpapiHostMsg_FileRef_CreateExternal::ID) {
110 if (ppapi::UnpackMessage<PpapiHostMsg_FileRef_CreateExternal>( 172 // FileRef_CreateExternal is only permitted from the renderer. Because
111 nested_msg, &external_path)) { 173 // of this, we handle this message here and not in
112 resource_host.reset(new PepperFileRefHost( 174 // content_browser_pepper_host_factory.cc.
113 host, instance, params.pp_resource(), external_path)); 175 base::FilePath external_path;
114 } 176 if (ppapi::UnpackMessage<PpapiHostMsg_FileRef_CreateExternal>(
115 } else if (nested_msg.type() == 177 nested_msg, &external_path)) {
116 PpapiHostMsg_FileSystem_CreateFromRenderer::ID) { 178 resource_host.reset(new PepperFileRefHost(
117 // Similarly, FileSystem_CreateFromRenderer is only permitted from the 179 host, instance, params.pp_resource(), external_path));
118 // renderer. 180 }
119 std::string root_url; 181 } else if (nested_msg.type() ==
120 PP_FileSystemType file_system_type; 182 PpapiHostMsg_FileSystem_CreateFromRenderer::ID) {
121 if (ppapi::UnpackMessage<PpapiHostMsg_FileSystem_CreateFromRenderer>( 183 // Similarly, FileSystem_CreateFromRenderer is only permitted from the
122 nested_msg, &root_url, &file_system_type)) { 184 // renderer.
123 resource_host.reset( 185 std::string root_url;
124 new PepperFileSystemBrowserHost(host, 186 PP_FileSystemType file_system_type;
125 instance, 187 if (ppapi::UnpackMessage<PpapiHostMsg_FileSystem_CreateFromRenderer>(
126 params.pp_resource(), 188 nested_msg, &root_url, &file_system_type)) {
127 GURL(root_url), 189 PepperFileSystemBrowserHost* browser_host =
128 file_system_type)); 190 new PepperFileSystemBrowserHost(host,
129 } 191 instance,
192 params.pp_resource(),
193 file_system_type);
194 resource_host.reset(browser_host);
195 // Open the file system resource host. This is an asynchronous
196 // operation, and we must only add the pending resource host and
197 // send the message once it completes.
198 browser_host->OpenExisting(
199 GURL(root_url),
200 base::Bind(
201 &PendingHostCreator::AddPendingResourceHost,
202 creator,
203 i,
204 base::Passed(&resource_host)));
205 // Do not fall through; the fall-through case adds the pending
206 // resource host to the list. We must do this asynchronously.
207 continue;
130 } 208 }
131 } 209 }
210 }
132 211
133 if (!resource_host.get()) { 212 if (!resource_host.get()) {
134 resource_host = host->GetPpapiHost()->CreateResourceHost( 213 resource_host = host->GetPpapiHost()->CreateResourceHost(
135 params, instance, nested_msg); 214 params, instance, nested_msg);
136 } 215 }
137 216
138 if (resource_host.get()) { 217 if (resource_host.get())
139 pending_resource_host_ids[i] = 218 creator->AddPendingResourceHost(i, resource_host.Pass());
140 host->GetPpapiHost()->AddPendingResourceHost(resource_host.Pass());
141 }
142 }
143 } 219 }
144 220
145 Send(new PpapiHostMsg_CreateResourceHostsFromHostReply( 221 // Note: All of the pending host IDs that were added as part of this
146 routing_id, params.sequence(), pending_resource_host_ids)); 222 // operation will automatically be sent to the plugin when |creator| is
223 // released. This may happen immediately, or (if there are asynchronous
224 // requests to create resource hosts), once all of them complete.
147 } 225 }
148 226
149 void PepperRendererConnection::OnMsgDidCreateInProcessInstance( 227 void PepperRendererConnection::OnMsgDidCreateInProcessInstance(
150 PP_Instance instance, 228 PP_Instance instance,
151 const PepperRendererInstanceData& instance_data) { 229 const PepperRendererInstanceData& instance_data) {
152 PepperRendererInstanceData data = instance_data; 230 PepperRendererInstanceData data = instance_data;
153 data.render_process_id = render_process_id_; 231 data.render_process_id = render_process_id_;
154 in_process_host_->AddInstance(instance, data); 232 in_process_host_->AddInstance(instance, data);
155 } 233 }
156 234
157 void PepperRendererConnection::OnMsgDidDeleteInProcessInstance( 235 void PepperRendererConnection::OnMsgDidDeleteInProcessInstance(
158 PP_Instance instance) { 236 PP_Instance instance) {
159 in_process_host_->DeleteInstance(instance); 237 in_process_host_->DeleteInstance(instance);
160 } 238 }
161 239
162 } // namespace content 240 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/renderer_host/pepper/pepper_file_system_browser_host.cc ('k') | ppapi/tests/test_post_message.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698