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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/351564777): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "ppapi/proxy/ppb_testing_proxy.h"
#include <stddef.h>
#include "base/notimplemented.h"
#include "base/run_loop.h"
#include "ppapi/c/private/ppb_testing_private.h"
#include "ppapi/proxy/enter_proxy.h"
#include "ppapi/proxy/plugin_dispatcher.h"
#include "ppapi/proxy/ppapi_messages.h"
#include "ppapi/shared_impl/ppapi_globals.h"
#include "ppapi/shared_impl/proxy_lock.h"
#include "ppapi/shared_impl/resource.h"
#include "ppapi/shared_impl/resource_tracker.h"
#include "ppapi/thunk/enter.h"
#include "ppapi/thunk/ppb_graphics_2d_api.h"
#include "ppapi/thunk/ppb_input_event_api.h"
using ppapi::thunk::EnterInstance;
using ppapi::thunk::EnterResource;
using ppapi::thunk::EnterResourceNoLock;
using ppapi::thunk::PPB_Graphics2D_API;
using ppapi::thunk::PPB_InputEvent_API;
namespace ppapi {
namespace proxy {
namespace {
PP_Bool ReadImageData(PP_Resource graphics_2d,
PP_Resource image,
const PP_Point* top_left) {
ProxyAutoLock lock;
Resource* image_object =
PpapiGlobals::Get()->GetResourceTracker()->GetResource(image);
if (!image_object)
return PP_FALSE;
Resource* graphics_2d_object =
PpapiGlobals::Get()->GetResourceTracker()->GetResource(graphics_2d);
if (!graphics_2d_object ||
image_object->pp_instance() != graphics_2d_object->pp_instance())
return PP_FALSE;
EnterResourceNoLock<PPB_Graphics2D_API> enter(graphics_2d, true);
if (enter.failed())
return PP_FALSE;
const HostResource& host_image = image_object->host_resource();
return enter.object()->ReadImageData(host_image.host_resource(), top_left) ?
PP_TRUE : PP_FALSE;
}
void RunMessageLoop(PP_Instance instance) {
CHECK(PpapiGlobals::Get()->GetMainThreadMessageLoop()->
BelongsToCurrentThread());
PpapiGlobals::Get()->RunMsgLoop();
}
void QuitMessageLoop(PP_Instance instance) {
CHECK(PpapiGlobals::Get()->GetMainThreadMessageLoop()->
BelongsToCurrentThread());
PpapiGlobals::Get()->QuitMsgLoop();
}
uint32_t GetLiveObjectsForInstance(PP_Instance instance_id) {
ProxyAutoLock lock;
PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance_id);
if (!dispatcher)
return static_cast<uint32_t>(-1);
uint32_t result = 0;
dispatcher->Send(new PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance(
API_ID_PPB_TESTING, instance_id, &result));
return result;
}
PP_Bool IsOutOfProcess() {
return PP_TRUE;
}
void SimulateInputEvent(PP_Instance instance_id, PP_Resource input_event) {
ProxyAutoLock lock;
PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance_id);
if (!dispatcher)
return;
EnterResourceNoLock<PPB_InputEvent_API> enter(input_event, false);
if (enter.failed())
return;
const InputEventData& input_event_data = enter.object()->GetInputEventData();
dispatcher->Send(new PpapiHostMsg_PPBTesting_SimulateInputEvent(
API_ID_PPB_TESTING, instance_id, input_event_data));
}
PP_Var GetDocumentURL(PP_Instance instance, PP_URLComponents_Dev* components) {
EnterInstance enter(instance);
if (enter.failed())
return PP_MakeUndefined();
return enter.functions()->GetDocumentURL(instance, components);
}
// TODO(dmichael): Ideally we could get a way to check the number of vars in the
// host-side tracker when running out-of-process, to make sure the proxy does
// not leak host-side vars.
uint32_t GetLiveVars(PP_Var live_vars[], uint32_t array_size) {
ProxyAutoLock lock;
std::vector<PP_Var> vars =
PpapiGlobals::Get()->GetVarTracker()->GetLiveVars();
for (size_t i = 0u;
i < std::min(static_cast<size_t>(array_size), vars.size());
++i)
live_vars[i] = vars[i];
return static_cast<uint32_t>(vars.size());
}
void SetMinimumArrayBufferSizeForShmem(PP_Instance instance,
uint32_t threshold) {
ProxyAutoLock lock;
RawVarDataGraph::SetMinimumArrayBufferSizeForShmemForTest(threshold);
PluginDispatcher* dispatcher = PluginDispatcher::GetForInstance(instance);
if (!dispatcher)
return;
dispatcher->Send(
new PpapiHostMsg_PPBTesting_SetMinimumArrayBufferSizeForShmem(
API_ID_PPB_TESTING, threshold));
}
void RunV8GC(PP_Instance instance) {
// TODO(raymes): Implement this if we need it.
NOTIMPLEMENTED();
}
const PPB_Testing_Private testing_interface = {
&ReadImageData,
&RunMessageLoop,
&QuitMessageLoop,
&GetLiveObjectsForInstance,
&IsOutOfProcess,
&SimulateInputEvent,
&GetDocumentURL,
&GetLiveVars,
&SetMinimumArrayBufferSizeForShmem,
&RunV8GC};
} // namespace
PPB_Testing_Proxy::PPB_Testing_Proxy(Dispatcher* dispatcher)
: InterfaceProxy(dispatcher),
ppb_testing_impl_(NULL) {
if (!dispatcher->IsPlugin()) {
ppb_testing_impl_ = static_cast<const PPB_Testing_Private*>(
dispatcher->local_get_interface()(PPB_TESTING_PRIVATE_INTERFACE));
}
}
PPB_Testing_Proxy::~PPB_Testing_Proxy() {
}
// static
const PPB_Testing_Private* PPB_Testing_Proxy::GetProxyInterface() {
return &testing_interface;
}
bool PPB_Testing_Proxy::OnMessageReceived(const IPC::Message& msg) {
if (!dispatcher()->permissions().HasPermission(PERMISSION_TESTING))
return false;
bool handled = true;
IPC_BEGIN_MESSAGE_MAP(PPB_Testing_Proxy, msg)
IPC_MESSAGE_HANDLER(PpapiHostMsg_PPBTesting_ReadImageData,
OnMsgReadImageData)
IPC_MESSAGE_HANDLER(PpapiHostMsg_PPBTesting_GetLiveObjectsForInstance,
OnMsgGetLiveObjectsForInstance)
IPC_MESSAGE_HANDLER(PpapiHostMsg_PPBTesting_SimulateInputEvent,
OnMsgSimulateInputEvent)
IPC_MESSAGE_HANDLER(
PpapiHostMsg_PPBTesting_SetMinimumArrayBufferSizeForShmem,
OnMsgSetMinimumArrayBufferSizeForShmem)
IPC_MESSAGE_UNHANDLED(handled = false)
IPC_END_MESSAGE_MAP()
return handled;
}
void PPB_Testing_Proxy::OnMsgReadImageData(
const HostResource& device_context_2d,
const HostResource& image,
const PP_Point& top_left,
PP_Bool* result) {
*result = ppb_testing_impl_->ReadImageData(
device_context_2d.host_resource(), image.host_resource(), &top_left);
}
void PPB_Testing_Proxy::OnMsgRunMessageLoop(PP_Instance instance) {
ppb_testing_impl_->RunMessageLoop(instance);
}
void PPB_Testing_Proxy::OnMsgQuitMessageLoop(PP_Instance instance) {
ppb_testing_impl_->QuitMessageLoop(instance);
}
void PPB_Testing_Proxy::OnMsgGetLiveObjectsForInstance(PP_Instance instance,
uint32_t* result) {
*result = ppb_testing_impl_->GetLiveObjectsForInstance(instance);
}
void PPB_Testing_Proxy::OnMsgSimulateInputEvent(
PP_Instance instance,
const InputEventData& input_event) {
scoped_refptr<PPB_InputEvent_Shared> input_event_impl(
new PPB_InputEvent_Shared(OBJECT_IS_PROXY, instance, input_event));
ppb_testing_impl_->SimulateInputEvent(instance,
input_event_impl->pp_resource());
}
void PPB_Testing_Proxy::OnMsgSetMinimumArrayBufferSizeForShmem(
uint32_t threshold) {
RawVarDataGraph::SetMinimumArrayBufferSizeForShmemForTest(threshold);
}
} // namespace proxy
} // namespace ppapi
|