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
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
|
// Copyright (c) 2011 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.
#if defined(ENABLE_GPU)
#include "base/bind.h"
#include "base/callback.h"
#include "base/debug/trace_event.h"
#include "base/process_util.h"
#include "base/shared_memory.h"
#include "build/build_config.h"
#include "content/common/child_thread.h"
#include "content/common/gpu/gpu_channel.h"
#include "content/common/gpu/gpu_channel_manager.h"
#include "content/common/gpu/gpu_command_buffer_stub.h"
#include "content/common/gpu/gpu_messages.h"
#include "content/common/gpu/gpu_watchdog.h"
#include "gpu/command_buffer/common/constants.h"
#include "ui/gfx/gl/gl_context.h"
#include "ui/gfx/gl/gl_surface.h"
#if defined(OS_WIN)
#include "base/win/wrapped_window_proc.h"
#elif defined(TOUCH_UI)
#include "content/common/gpu/image_transport_surface_linux.h"
#endif
using gpu::Buffer;
GpuCommandBufferStub::GpuCommandBufferStub(
GpuChannel* channel,
gfx::PluginWindowHandle handle,
const gfx::Size& size,
const gpu::gles2::DisallowedExtensions& disallowed_extensions,
const std::string& allowed_extensions,
const std::vector<int32>& attribs,
int32 route_id,
int32 renderer_id,
int32 render_view_id,
GpuWatchdog* watchdog,
bool software)
: channel_(channel),
handle_(handle),
initial_size_(size),
disallowed_extensions_(disallowed_extensions),
allowed_extensions_(allowed_extensions),
requested_attribs_(attribs),
route_id_(route_id),
software_(software),
last_flush_count_(0),
renderer_id_(renderer_id),
render_view_id_(render_view_id),
parent_stub_for_initialization_(),
parent_texture_for_initialization_(0),
watchdog_(watchdog),
task_factory_(ALLOW_THIS_IN_INITIALIZER_LIST(this)) {
}
GpuCommandBufferStub::~GpuCommandBufferStub() {
if (scheduler_.get()) {
scheduler_->Destroy();
}
GpuChannelManager* gpu_channel_manager = channel_->gpu_channel_manager();
gpu_channel_manager->Send(new GpuHostMsg_DestroyCommandBuffer(
handle_, renderer_id_, render_view_id_));
}
bool GpuCommandBufferStub::OnMessageReceived(const IPC::Message& message) {
// Always use IPC_MESSAGE_HANDLER_DELAY_REPLY for synchronous message handlers
// here. This is so the reply can be delayed if the scheduler is unscheduled.
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(GpuCommandBufferStub, message)
IPC_MESSAGE_HANDLER_DELAY_REPLY(GpuCommandBufferMsg_Initialize,
OnInitialize);
IPC_MESSAGE_HANDLER_DELAY_REPLY(GpuCommandBufferMsg_SetParent,
OnSetParent);
IPC_MESSAGE_HANDLER_DELAY_REPLY(GpuCommandBufferMsg_GetState, OnGetState);
IPC_MESSAGE_HANDLER_DELAY_REPLY(GpuCommandBufferMsg_Flush, OnFlush);
IPC_MESSAGE_HANDLER(GpuCommandBufferMsg_AsyncFlush, OnAsyncFlush);
IPC_MESSAGE_HANDLER(GpuCommandBufferMsg_Rescheduled, OnRescheduled);
IPC_MESSAGE_HANDLER_DELAY_REPLY(GpuCommandBufferMsg_CreateTransferBuffer,
OnCreateTransferBuffer);
IPC_MESSAGE_HANDLER_DELAY_REPLY(GpuCommandBufferMsg_RegisterTransferBuffer,
OnRegisterTransferBuffer);
IPC_MESSAGE_HANDLER_DELAY_REPLY(GpuCommandBufferMsg_DestroyTransferBuffer,
OnDestroyTransferBuffer);
IPC_MESSAGE_HANDLER_DELAY_REPLY(GpuCommandBufferMsg_GetTransferBuffer,
OnGetTransferBuffer);
IPC_MESSAGE_HANDLER(GpuCommandBufferMsg_CreateVideoDecoder,
OnCreateVideoDecoder)
IPC_MESSAGE_HANDLER(GpuCommandBufferMsg_DestroyVideoDecoder,
OnDestroyVideoDecoder)
IPC_MESSAGE_HANDLER(GpuCommandBufferMsg_ResizeOffscreenFrameBuffer,
OnResizeOffscreenFrameBuffer);
#if defined(OS_MACOSX)
IPC_MESSAGE_HANDLER(GpuCommandBufferMsg_SetWindowSize, OnSetWindowSize);
#endif // defined(OS_MACOSX)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
// If this message isn't intended for the stub, try to route it to the video
// decoder.
if (!handled && video_decoder_.get())
handled = video_decoder_->OnMessageReceived(message);
DCHECK(handled);
return handled;
}
bool GpuCommandBufferStub::Send(IPC::Message* message) {
return channel_->Send(message);
}
bool GpuCommandBufferStub::IsScheduled() {
return !scheduler_.get() || scheduler_->IsScheduled();
}
void GpuCommandBufferStub::OnInitializeFailed(IPC::Message* reply_message) {
scheduler_.reset();
command_buffer_.reset();
GpuCommandBufferMsg_Initialize::WriteReplyParams(reply_message, false);
Send(reply_message);
}
void GpuCommandBufferStub::OnInitialize(
base::SharedMemoryHandle ring_buffer,
int32 size,
IPC::Message* reply_message) {
DCHECK(!command_buffer_.get());
command_buffer_.reset(new gpu::CommandBufferService);
#if defined(OS_WIN)
// Windows dups the shared memory handle it receives into the current process
// and closes it when this variable goes out of scope.
base::SharedMemory shared_memory(ring_buffer,
false,
channel_->renderer_process());
#else
// POSIX receives a dup of the shared memory handle and closes the dup when
// this variable goes out of scope.
base::SharedMemory shared_memory(ring_buffer, false);
#endif
// Initialize the CommandBufferService and GpuScheduler.
if (command_buffer_->Initialize(&shared_memory, size)) {
scheduler_.reset(gpu::GpuScheduler::Create(command_buffer_.get(),
channel_,
NULL));
#if defined(TOUCH_UI)
if (software_) {
OnInitializeFailed(reply_message);
return;
}
scoped_refptr<gfx::GLSurface> surface;
if (handle_)
surface = ImageTransportSurface::CreateSurface(this);
else
surface = gfx::GLSurface::CreateOffscreenGLSurface(software_,
gfx::Size(1, 1));
if (!surface.get()) {
LOG(ERROR) << "GpuCommandBufferStub: failed to create surface.";
OnInitializeFailed(reply_message);
return;
}
scoped_refptr<gfx::GLContext> context(
gfx::GLContext::CreateGLContext(channel_->share_group(),
surface.get()));
if (!context.get()) {
LOG(ERROR) << "GpuCommandBufferStub: failed to create context.";
OnInitializeFailed(reply_message);
return;
}
if (scheduler_->InitializeCommon(
surface,
context,
initial_size_,
disallowed_extensions_,
allowed_extensions_.c_str(),
requested_attribs_)) {
#else
if (scheduler_->Initialize(
handle_,
initial_size_,
software_,
disallowed_extensions_,
allowed_extensions_.c_str(),
requested_attribs_,
channel_->share_group())) {
#endif
command_buffer_->SetPutOffsetChangeCallback(
NewCallback(scheduler_.get(),
&gpu::GpuScheduler::PutChanged));
command_buffer_->SetParseErrorCallback(
NewCallback(this, &GpuCommandBufferStub::OnParseError));
scheduler_->SetSwapBuffersCallback(
NewCallback(this, &GpuCommandBufferStub::OnSwapBuffers));
scheduler_->SetScheduledCallback(
NewCallback(channel_, &GpuChannel::OnScheduled));
scheduler_->SetTokenCallback(base::Bind(
&GpuCommandBufferStub::OnSetToken, base::Unretained(this)));
if (watchdog_)
scheduler_->SetCommandProcessedCallback(
NewCallback(this, &GpuCommandBufferStub::OnCommandProcessed));
#if defined(OS_MACOSX)
if (handle_) {
// This context conceptually puts its output directly on the
// screen, rendered by the accelerated plugin layer in
// RenderWidgetHostViewMac. Set up a pathway to notify the
// browser process when its contents change.
scheduler_->SetSwapBuffersCallback(
NewCallback(this,
&GpuCommandBufferStub::SwapBuffersCallback));
}
#endif // defined(OS_MACOSX)
// Set up a pathway for resizing the output window or framebuffer at the
// right time relative to other GL commands.
#if defined(TOUCH_UI)
if (handle_ == gfx::kNullPluginWindow) {
scheduler_->SetResizeCallback(
NewCallback(this, &GpuCommandBufferStub::ResizeCallback));
}
#else
scheduler_->SetResizeCallback(
NewCallback(this, &GpuCommandBufferStub::ResizeCallback));
#endif
if (parent_stub_for_initialization_) {
scheduler_->SetParent(parent_stub_for_initialization_->scheduler_.get(),
parent_texture_for_initialization_);
parent_stub_for_initialization_.reset();
parent_texture_for_initialization_ = 0;
}
} else {
OnInitializeFailed(reply_message);
return;
}
}
GpuCommandBufferMsg_Initialize::WriteReplyParams(reply_message, true);
Send(reply_message);
}
void GpuCommandBufferStub::OnSetParent(int32 parent_route_id,
uint32 parent_texture_id,
IPC::Message* reply_message) {
GpuCommandBufferStub* parent_stub = NULL;
if (parent_route_id != MSG_ROUTING_NONE) {
parent_stub = channel_->LookupCommandBuffer(parent_route_id);
}
bool result = true;
if (scheduler_.get()) {
gpu::GpuScheduler* parent_scheduler =
parent_stub ? parent_stub->scheduler_.get() : NULL;
result = scheduler_->SetParent(parent_scheduler, parent_texture_id);
} else {
// If we don't have a scheduler, it means that Initialize hasn't been called
// yet. Keep around the requested parent stub and texture so that we can set
// it in Initialize().
parent_stub_for_initialization_ = parent_stub ?
parent_stub->AsWeakPtr() : base::WeakPtr<GpuCommandBufferStub>();
parent_texture_for_initialization_ = parent_texture_id;
}
GpuCommandBufferMsg_SetParent::WriteReplyParams(reply_message, result);
Send(reply_message);
}
void GpuCommandBufferStub::OnGetState(IPC::Message* reply_message) {
gpu::CommandBuffer::State state = command_buffer_->GetState();
if (state.error == gpu::error::kLostContext &&
gfx::GLContext::LosesAllContextsOnContextLost())
channel_->LoseAllContexts();
GpuCommandBufferMsg_GetState::WriteReplyParams(reply_message, state);
Send(reply_message);
}
void GpuCommandBufferStub::OnParseError() {
TRACE_EVENT0("gpu", "GpuCommandBufferStub::OnParseError");
gpu::CommandBuffer::State state = command_buffer_->GetState();
IPC::Message* msg = new GpuCommandBufferMsg_Destroyed(
route_id_, state.context_lost_reason);
msg->set_unblock(true);
Send(msg);
}
void GpuCommandBufferStub::OnFlush(int32 put_offset,
int32 last_known_get,
uint32 flush_count,
IPC::Message* reply_message) {
TRACE_EVENT0("gpu", "GpuCommandBufferStub::OnFlush");
gpu::CommandBuffer::State state = command_buffer_->GetState();
if (flush_count - last_flush_count_ >= 0x8000000U) {
// We received this message out-of-order. This should not happen but is here
// to catch regressions. Ignore the message.
NOTREACHED() << "Received an AsyncFlush message out-of-order";
GpuCommandBufferMsg_Flush::WriteReplyParams(reply_message, state);
Send(reply_message);
} else {
last_flush_count_ = flush_count;
// Reply immediately if the client was out of date with the current get
// offset.
bool reply_immediately = state.get_offset != last_known_get;
if (reply_immediately) {
GpuCommandBufferMsg_Flush::WriteReplyParams(reply_message, state);
Send(reply_message);
}
// Process everything up to the put offset.
state = command_buffer_->FlushSync(put_offset, last_known_get);
// Lose all contexts if the context was lost.
if (state.error == gpu::error::kLostContext &&
gfx::GLContext::LosesAllContextsOnContextLost()) {
channel_->LoseAllContexts();
}
// Then if the client was up-to-date with the get offset, reply to the
// synchronpous IPC only after processing all commands are processed. This
// prevents the client from "spinning" when it fills up the command buffer.
// Otherwise, since the state has changed since the immediate reply, send
// an asyncronous state update back to the client.
if (!reply_immediately) {
GpuCommandBufferMsg_Flush::WriteReplyParams(reply_message, state);
Send(reply_message);
} else {
ReportState();
}
}
}
void GpuCommandBufferStub::OnAsyncFlush(int32 put_offset, uint32 flush_count) {
TRACE_EVENT0("gpu", "GpuCommandBufferStub::OnAsyncFlush");
if (flush_count - last_flush_count_ < 0x8000000U) {
last_flush_count_ = flush_count;
command_buffer_->Flush(put_offset);
} else {
// We received this message out-of-order. This should not happen but is here
// to catch regressions. Ignore the message.
NOTREACHED() << "Received a Flush message out-of-order";
}
ReportState();
}
void GpuCommandBufferStub::OnRescheduled() {
gpu::CommandBuffer::State state = command_buffer_->GetLastState();
command_buffer_->Flush(state.put_offset);
ReportState();
}
void GpuCommandBufferStub::OnCreateTransferBuffer(int32 size,
int32 id_request,
IPC::Message* reply_message) {
int32 id = command_buffer_->CreateTransferBuffer(size, id_request);
GpuCommandBufferMsg_CreateTransferBuffer::WriteReplyParams(reply_message, id);
Send(reply_message);
}
void GpuCommandBufferStub::OnRegisterTransferBuffer(
base::SharedMemoryHandle transfer_buffer,
size_t size,
int32 id_request,
IPC::Message* reply_message) {
#if defined(OS_WIN)
// Windows dups the shared memory handle it receives into the current process
// and closes it when this variable goes out of scope.
base::SharedMemory shared_memory(transfer_buffer,
false,
channel_->renderer_process());
#else
// POSIX receives a dup of the shared memory handle and closes the dup when
// this variable goes out of scope.
base::SharedMemory shared_memory(transfer_buffer, false);
#endif
int32 id = command_buffer_->RegisterTransferBuffer(&shared_memory,
size,
id_request);
GpuCommandBufferMsg_RegisterTransferBuffer::WriteReplyParams(reply_message,
id);
Send(reply_message);
}
void GpuCommandBufferStub::OnDestroyTransferBuffer(
int32 id,
IPC::Message* reply_message) {
command_buffer_->DestroyTransferBuffer(id);
Send(reply_message);
}
void GpuCommandBufferStub::OnGetTransferBuffer(
int32 id,
IPC::Message* reply_message) {
base::SharedMemoryHandle transfer_buffer = base::SharedMemoryHandle();
uint32 size = 0;
// Fail if the renderer process has not provided its process handle.
if (!channel_->renderer_process())
return;
Buffer buffer = command_buffer_->GetTransferBuffer(id);
if (buffer.shared_memory) {
// Assume service is responsible for duplicating the handle to the calling
// process.
buffer.shared_memory->ShareToProcess(channel_->renderer_process(),
&transfer_buffer);
size = buffer.size;
}
GpuCommandBufferMsg_GetTransferBuffer::WriteReplyParams(reply_message,
transfer_buffer,
size);
Send(reply_message);
}
void GpuCommandBufferStub::OnResizeOffscreenFrameBuffer(const gfx::Size& size) {
scheduler_->ResizeOffscreenFrameBuffer(size);
}
void GpuCommandBufferStub::OnSwapBuffers() {
TRACE_EVENT0("gpu", "GpuCommandBufferStub::OnSwapBuffers");
ReportState();
Send(new GpuCommandBufferMsg_SwapBuffers(route_id_));
}
void GpuCommandBufferStub::OnCommandProcessed() {
if (watchdog_)
watchdog_->CheckArmed();
}
#if defined(OS_MACOSX)
void GpuCommandBufferStub::OnSetWindowSize(const gfx::Size& size) {
GpuChannelManager* gpu_channel_manager = channel_->gpu_channel_manager();
// Try using the IOSurface version first.
uint64 new_backing_store = scheduler_->SetWindowSizeForIOSurface(size);
if (new_backing_store) {
GpuHostMsg_AcceleratedSurfaceSetIOSurface_Params params;
params.renderer_id = renderer_id_;
params.render_view_id = render_view_id_;
params.window = handle_;
params.width = size.width();
params.height = size.height();
params.identifier = new_backing_store;
gpu_channel_manager->Send(
new GpuHostMsg_AcceleratedSurfaceSetIOSurface(params));
} else {
// TODO(kbr): figure out what to do here. It wouldn't be difficult
// to support the compositor on 10.5, but the performance would be
// questionable.
NOTREACHED();
}
}
void GpuCommandBufferStub::SwapBuffersCallback() {
TRACE_EVENT0("gpu", "GpuCommandBufferStub::SwapBuffersCallback");
GpuChannelManager* gpu_channel_manager = channel_->gpu_channel_manager();
GpuHostMsg_AcceleratedSurfaceBuffersSwapped_Params params;
params.renderer_id = renderer_id_;
params.render_view_id = render_view_id_;
params.window = handle_;
params.surface_id = scheduler_->GetSurfaceId();
params.route_id = route_id();
params.swap_buffers_count = scheduler_->swap_buffers_count();
gpu_channel_manager->Send(
new GpuHostMsg_AcceleratedSurfaceBuffersSwapped(params));
scheduler_->SetScheduled(false);
}
void GpuCommandBufferStub::AcceleratedSurfaceBuffersSwapped(
uint64 swap_buffers_count) {
TRACE_EVENT1("gpu",
"GpuCommandBufferStub::AcceleratedSurfaceBuffersSwapped",
"frame", swap_buffers_count);
// Multiple swapbuffers may get consolidated together into a single
// AcceleratedSurfaceBuffersSwapped call. Since OnSwapBuffers expects to be
// called one time for every swap, make up the difference here.
uint64 delta = swap_buffers_count -
scheduler_->acknowledged_swap_buffers_count();
scheduler_->set_acknowledged_swap_buffers_count(swap_buffers_count);
for(uint64 i = 0; i < delta; i++) {
OnSwapBuffers();
// Wake up the GpuScheduler to start doing work again.
scheduler_->SetScheduled(true);
}
}
#endif // defined(OS_MACOSX)
void GpuCommandBufferStub::AddSetTokenCallback(
const base::Callback<void(int32)>& callback) {
set_token_callbacks_.push_back(callback);
}
void GpuCommandBufferStub::OnSetToken(int32 token) {
for (size_t i = 0; i < set_token_callbacks_.size(); ++i)
set_token_callbacks_[i].Run(token);
}
void GpuCommandBufferStub::ResizeCallback(gfx::Size size) {
if (handle_ == gfx::kNullPluginWindow) {
scheduler_->decoder()->ResizeOffscreenFrameBuffer(size);
scheduler_->decoder()->UpdateOffscreenFrameBufferSize();
} else {
#if defined(TOOLKIT_USES_GTK) && !defined(TOUCH_UI) || defined(OS_WIN)
GpuChannelManager* gpu_channel_manager = channel_->gpu_channel_manager();
gpu_channel_manager->Send(
new GpuHostMsg_ResizeView(renderer_id_,
render_view_id_,
route_id_,
size));
scheduler_->SetScheduled(false);
#endif
}
}
void GpuCommandBufferStub::ViewResized() {
#if defined(TOOLKIT_USES_GTK) && !defined(TOUCH_UI) || defined(OS_WIN)
DCHECK(handle_ != gfx::kNullPluginWindow);
scheduler_->SetScheduled(true);
// Recreate the view surface to match the window size. TODO(apatrick): this is
// likely not necessary on all platforms.
gfx::GLContext* context = scheduler_->decoder()->GetGLContext();
gfx::GLSurface* surface = scheduler_->decoder()->GetGLSurface();
context->ReleaseCurrent(surface);
if (surface) {
surface->Destroy();
surface->Initialize();
}
#endif
}
void GpuCommandBufferStub::ReportState() {
gpu::CommandBuffer::State state = command_buffer_->GetState();
if (state.error == gpu::error::kLostContext &&
gfx::GLContext::LosesAllContextsOnContextLost()) {
channel_->LoseAllContexts();
} else {
IPC::Message* msg = new GpuCommandBufferMsg_UpdateState(route_id_, state);
msg->set_unblock(true);
Send(msg);
}
}
void GpuCommandBufferStub::OnCreateVideoDecoder(
const std::vector<uint32>& configs) {
video_decoder_.reset(
new GpuVideoDecodeAccelerator(this, route_id_, this));
video_decoder_->Initialize(configs);
}
void GpuCommandBufferStub::OnDestroyVideoDecoder() {
LOG(ERROR) << "GpuCommandBufferStub::OnDestroyVideoDecoder";
video_decoder_.reset();
}
#endif // defined(ENABLE_GPU)
|