cc: Make picture pile base thread safe.
[chromium-blink-merge.git] / content / renderer / pepper / ppb_graphics_3d_impl.cc
blob7111f56a7472e51ab3418868ad712505d086d978
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "content/renderer/pepper/ppb_graphics_3d_impl.h"
7 #include "base/bind.h"
8 #include "base/command_line.h"
9 #include "base/message_loop/message_loop.h"
10 #include "base/strings/utf_string_conversions.h"
11 #include "content/common/gpu/client/command_buffer_proxy_impl.h"
12 #include "content/common/gpu/client/gpu_channel_host.h"
13 #include "content/public/common/content_switches.h"
14 #include "content/public/common/web_preferences.h"
15 #include "content/renderer/pepper/host_globals.h"
16 #include "content/renderer/pepper/pepper_plugin_instance_impl.h"
17 #include "content/renderer/pepper/plugin_module.h"
18 #include "content/renderer/render_thread_impl.h"
19 #include "content/renderer/render_view_impl.h"
20 #include "gpu/command_buffer/client/gles2_implementation.h"
21 #include "ppapi/c/ppp_graphics_3d.h"
22 #include "ppapi/thunk/enter.h"
23 #include "third_party/WebKit/public/platform/WebString.h"
24 #include "third_party/WebKit/public/web/WebConsoleMessage.h"
25 #include "third_party/WebKit/public/web/WebDocument.h"
26 #include "third_party/WebKit/public/web/WebElement.h"
27 #include "third_party/WebKit/public/web/WebLocalFrame.h"
28 #include "third_party/WebKit/public/web/WebPluginContainer.h"
30 using ppapi::thunk::EnterResourceNoLock;
31 using ppapi::thunk::PPB_Graphics3D_API;
32 using blink::WebConsoleMessage;
33 using blink::WebLocalFrame;
34 using blink::WebPluginContainer;
35 using blink::WebString;
37 namespace content {
39 namespace {
40 const int32 kCommandBufferSize = 1024 * 1024;
41 const int32 kTransferBufferSize = 1024 * 1024;
43 } // namespace.
45 PPB_Graphics3D_Impl::PPB_Graphics3D_Impl(PP_Instance instance)
46 : PPB_Graphics3D_Shared(instance),
47 bound_to_instance_(false),
48 commit_pending_(false),
49 sync_point_(0),
50 has_alpha_(false),
51 command_buffer_(NULL),
52 weak_ptr_factory_(this) {}
54 PPB_Graphics3D_Impl::~PPB_Graphics3D_Impl() {
55 DestroyGLES2Impl();
56 if (command_buffer_) {
57 DCHECK(channel_.get());
58 channel_->DestroyCommandBuffer(command_buffer_);
59 command_buffer_ = NULL;
62 channel_ = NULL;
65 // static
66 PP_Resource PPB_Graphics3D_Impl::Create(PP_Instance instance,
67 PP_Resource share_context,
68 const int32_t* attrib_list) {
69 PPB_Graphics3D_API* share_api = NULL;
70 if (share_context) {
71 EnterResourceNoLock<PPB_Graphics3D_API> enter(share_context, true);
72 if (enter.failed())
73 return 0;
74 share_api = enter.object();
76 scoped_refptr<PPB_Graphics3D_Impl> graphics_3d(
77 new PPB_Graphics3D_Impl(instance));
78 if (!graphics_3d->Init(share_api, attrib_list))
79 return 0;
80 return graphics_3d->GetReference();
83 // static
84 PP_Resource PPB_Graphics3D_Impl::CreateRaw(
85 PP_Instance instance,
86 PP_Resource share_context,
87 const int32_t* attrib_list,
88 base::SharedMemoryHandle* shared_state_handle) {
89 PPB_Graphics3D_API* share_api = NULL;
90 if (share_context) {
91 EnterResourceNoLock<PPB_Graphics3D_API> enter(share_context, true);
92 if (enter.failed())
93 return 0;
94 share_api = enter.object();
96 scoped_refptr<PPB_Graphics3D_Impl> graphics_3d(
97 new PPB_Graphics3D_Impl(instance));
98 if (!graphics_3d->InitRaw(share_api, attrib_list, shared_state_handle))
99 return 0;
100 return graphics_3d->GetReference();
103 PP_Bool PPB_Graphics3D_Impl::SetGetBuffer(int32_t transfer_buffer_id) {
104 GetCommandBuffer()->SetGetBuffer(transfer_buffer_id);
105 return PP_TRUE;
108 scoped_refptr<gpu::Buffer> PPB_Graphics3D_Impl::CreateTransferBuffer(
109 uint32_t size,
110 int32_t* id) {
111 return GetCommandBuffer()->CreateTransferBuffer(size, id);
114 PP_Bool PPB_Graphics3D_Impl::DestroyTransferBuffer(int32_t id) {
115 GetCommandBuffer()->DestroyTransferBuffer(id);
116 return PP_TRUE;
119 PP_Bool PPB_Graphics3D_Impl::Flush(int32_t put_offset) {
120 GetCommandBuffer()->Flush(put_offset);
121 return PP_TRUE;
124 gpu::CommandBuffer::State PPB_Graphics3D_Impl::WaitForTokenInRange(
125 int32_t start,
126 int32_t end) {
127 GetCommandBuffer()->WaitForTokenInRange(start, end);
128 return GetCommandBuffer()->GetLastState();
131 gpu::CommandBuffer::State PPB_Graphics3D_Impl::WaitForGetOffsetInRange(
132 int32_t start,
133 int32_t end) {
134 GetCommandBuffer()->WaitForGetOffsetInRange(start, end);
135 return GetCommandBuffer()->GetLastState();
138 uint32_t PPB_Graphics3D_Impl::InsertSyncPoint() {
139 return command_buffer_->InsertSyncPoint();
142 uint32_t PPB_Graphics3D_Impl::InsertFutureSyncPoint() {
143 return command_buffer_->InsertFutureSyncPoint();
146 void PPB_Graphics3D_Impl::RetireSyncPoint(uint32_t sync_point) {
147 return command_buffer_->RetireSyncPoint(sync_point);
150 bool PPB_Graphics3D_Impl::BindToInstance(bool bind) {
151 bound_to_instance_ = bind;
152 return true;
155 bool PPB_Graphics3D_Impl::IsOpaque() { return !has_alpha_; }
157 void PPB_Graphics3D_Impl::ViewInitiatedPaint() {
158 commit_pending_ = false;
160 if (HasPendingSwap())
161 SwapBuffersACK(PP_OK);
164 void PPB_Graphics3D_Impl::ViewFlushedPaint() {}
166 int PPB_Graphics3D_Impl::GetCommandBufferRouteId() {
167 DCHECK(command_buffer_);
168 return command_buffer_->GetRouteID();
171 gpu::CommandBuffer* PPB_Graphics3D_Impl::GetCommandBuffer() {
172 return command_buffer_;
175 gpu::GpuControl* PPB_Graphics3D_Impl::GetGpuControl() {
176 return command_buffer_;
179 int32 PPB_Graphics3D_Impl::DoSwapBuffers() {
180 DCHECK(command_buffer_);
181 // We do not have a GLES2 implementation when using an OOP proxy.
182 // The plugin-side proxy is responsible for adding the SwapBuffers command
183 // to the command buffer in that case.
184 if (gles2_impl())
185 gles2_impl()->SwapBuffers();
187 // Since the backing texture has been updated, a new sync point should be
188 // inserted.
189 sync_point_ = command_buffer_->InsertSyncPoint();
191 if (bound_to_instance_) {
192 // If we are bound to the instance, we need to ask the compositor
193 // to commit our backing texture so that the graphics appears on the page.
194 // When the backing texture will be committed we get notified via
195 // ViewFlushedPaint().
197 // Don't need to check for NULL from GetPluginInstance since when we're
198 // bound, we know our instance is valid.
199 HostGlobals::Get()->GetInstance(pp_instance())->CommitBackingTexture();
200 commit_pending_ = true;
201 } else {
202 // Wait for the command to complete on the GPU to allow for throttling.
203 command_buffer_->SignalSyncPoint(
204 sync_point_,
205 base::Bind(&PPB_Graphics3D_Impl::OnSwapBuffers,
206 weak_ptr_factory_.GetWeakPtr()));
209 return PP_OK_COMPLETIONPENDING;
212 bool PPB_Graphics3D_Impl::Init(PPB_Graphics3D_API* share_context,
213 const int32_t* attrib_list) {
214 if (!InitRaw(share_context, attrib_list, NULL))
215 return false;
217 gpu::gles2::GLES2Implementation* share_gles2 = NULL;
218 if (share_context) {
219 share_gles2 =
220 static_cast<PPB_Graphics3D_Shared*>(share_context)->gles2_impl();
223 return CreateGLES2Impl(kCommandBufferSize, kTransferBufferSize, share_gles2);
226 bool PPB_Graphics3D_Impl::InitRaw(
227 PPB_Graphics3D_API* share_context,
228 const int32_t* attrib_list,
229 base::SharedMemoryHandle* shared_state_handle) {
230 PepperPluginInstanceImpl* plugin_instance =
231 HostGlobals::Get()->GetInstance(pp_instance());
232 if (!plugin_instance)
233 return false;
235 const WebPreferences& prefs =
236 static_cast<RenderViewImpl*>(plugin_instance->GetRenderView())
237 ->webkit_preferences();
238 // 3D access might be disabled or blacklisted.
239 if (!prefs.pepper_3d_enabled)
240 return false;
242 RenderThreadImpl* render_thread = RenderThreadImpl::current();
243 if (!render_thread)
244 return false;
246 channel_ = render_thread->EstablishGpuChannelSync(
247 CAUSE_FOR_GPU_LAUNCH_PEPPERPLATFORMCONTEXT3DIMPL_INITIALIZE);
248 if (!channel_.get())
249 return false;
251 gfx::Size surface_size;
252 std::vector<int32> attribs;
253 gfx::GpuPreference gpu_preference = gfx::PreferDiscreteGpu;
254 // TODO(alokp): Change GpuChannelHost::CreateOffscreenCommandBuffer()
255 // interface to accept width and height in the attrib_list so that
256 // we do not need to filter for width and height here.
257 if (attrib_list) {
258 for (const int32_t* attr = attrib_list; attr[0] != PP_GRAPHICS3DATTRIB_NONE;
259 attr += 2) {
260 switch (attr[0]) {
261 case PP_GRAPHICS3DATTRIB_WIDTH:
262 surface_size.set_width(attr[1]);
263 break;
264 case PP_GRAPHICS3DATTRIB_HEIGHT:
265 surface_size.set_height(attr[1]);
266 break;
267 case PP_GRAPHICS3DATTRIB_GPU_PREFERENCE:
268 gpu_preference =
269 (attr[1] == PP_GRAPHICS3DATTRIB_GPU_PREFERENCE_LOW_POWER)
270 ? gfx::PreferIntegratedGpu
271 : gfx::PreferDiscreteGpu;
272 break;
273 case PP_GRAPHICS3DATTRIB_ALPHA_SIZE:
274 has_alpha_ = attr[1] > 0;
275 // fall-through
276 default:
277 attribs.push_back(attr[0]);
278 attribs.push_back(attr[1]);
279 break;
282 attribs.push_back(PP_GRAPHICS3DATTRIB_NONE);
285 CommandBufferProxyImpl* share_buffer = NULL;
286 if (share_context) {
287 PPB_Graphics3D_Impl* share_graphics =
288 static_cast<PPB_Graphics3D_Impl*>(share_context);
289 share_buffer = share_graphics->command_buffer_;
292 command_buffer_ = channel_->CreateOffscreenCommandBuffer(
293 surface_size, share_buffer, attribs, GURL::EmptyGURL(), gpu_preference);
294 if (!command_buffer_)
295 return false;
296 if (!command_buffer_->Initialize())
297 return false;
298 if (shared_state_handle)
299 *shared_state_handle = command_buffer_->GetSharedStateHandle();
300 mailbox_ = gpu::Mailbox::Generate();
301 if (!command_buffer_->ProduceFrontBuffer(mailbox_))
302 return false;
303 sync_point_ = command_buffer_->InsertSyncPoint();
305 command_buffer_->SetChannelErrorCallback(base::Bind(
306 &PPB_Graphics3D_Impl::OnContextLost, weak_ptr_factory_.GetWeakPtr()));
308 command_buffer_->SetOnConsoleMessageCallback(base::Bind(
309 &PPB_Graphics3D_Impl::OnConsoleMessage, weak_ptr_factory_.GetWeakPtr()));
310 return true;
313 void PPB_Graphics3D_Impl::OnConsoleMessage(const std::string& message, int id) {
314 if (!bound_to_instance_)
315 return;
316 WebPluginContainer* container =
317 HostGlobals::Get()->GetInstance(pp_instance())->container();
318 if (!container)
319 return;
320 WebLocalFrame* frame = container->element().document().frame();
321 if (!frame)
322 return;
323 WebConsoleMessage console_message = WebConsoleMessage(
324 WebConsoleMessage::LevelError, WebString(base::UTF8ToUTF16(message)));
325 frame->addMessageToConsole(console_message);
328 void PPB_Graphics3D_Impl::OnSwapBuffers() {
329 if (HasPendingSwap()) {
330 // If we're off-screen, no need to trigger and wait for compositing.
331 // Just send the swap-buffers ACK to the plugin immediately.
332 commit_pending_ = false;
333 SwapBuffersACK(PP_OK);
337 void PPB_Graphics3D_Impl::OnContextLost() {
338 // Don't need to check for NULL from GetPluginInstance since when we're
339 // bound, we know our instance is valid.
340 if (bound_to_instance_) {
341 HostGlobals::Get()->GetInstance(pp_instance())->BindGraphics(pp_instance(),
345 // Send context lost to plugin. This may have been caused by a PPAPI call, so
346 // avoid re-entering.
347 base::MessageLoop::current()->PostTask(
348 FROM_HERE,
349 base::Bind(&PPB_Graphics3D_Impl::SendContextLost,
350 weak_ptr_factory_.GetWeakPtr()));
353 void PPB_Graphics3D_Impl::SendContextLost() {
354 // By the time we run this, the instance may have been deleted, or in the
355 // process of being deleted. Even in the latter case, we don't want to send a
356 // callback after DidDestroy.
357 PepperPluginInstanceImpl* instance =
358 HostGlobals::Get()->GetInstance(pp_instance());
359 if (!instance || !instance->container())
360 return;
362 // This PPB_Graphics3D_Impl could be deleted during the call to
363 // GetPluginInterface (which sends a sync message in some cases). We still
364 // send the Graphics3DContextLost to the plugin; the instance may care about
365 // that event even though this context has been destroyed.
366 PP_Instance this_pp_instance = pp_instance();
367 const PPP_Graphics3D* ppp_graphics_3d = static_cast<const PPP_Graphics3D*>(
368 instance->module()->GetPluginInterface(PPP_GRAPHICS_3D_INTERFACE));
369 // We have to check *again* that the instance exists, because it could have
370 // been deleted during GetPluginInterface(). Even the PluginModule could be
371 // deleted, but in that case, the instance should also be gone, so the
372 // GetInstance check covers both cases.
373 if (ppp_graphics_3d && HostGlobals::Get()->GetInstance(this_pp_instance))
374 ppp_graphics_3d->Graphics3DContextLost(this_pp_instance);
377 } // namespace content