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 "ppapi/proxy/ppb_core_proxy.h"
7 #include <stdlib.h> // For malloc
10 #include "base/debug/trace_event.h"
11 #include "base/logging.h"
12 #include "base/time/time.h"
13 #include "ppapi/c/pp_completion_callback.h"
14 #include "ppapi/c/pp_resource.h"
15 #include "ppapi/c/ppb_core.h"
16 #include "ppapi/proxy/plugin_dispatcher.h"
17 #include "ppapi/proxy/plugin_resource_tracker.h"
18 #include "ppapi/proxy/ppapi_messages.h"
19 #include "ppapi/shared_impl/ppapi_globals.h"
20 #include "ppapi/shared_impl/proxy_lock.h"
21 #include "ppapi/shared_impl/time_conversion.h"
28 void AddRefResource(PP_Resource resource
) {
29 ppapi::ProxyAutoLock lock
;
30 PpapiGlobals::Get()->GetResourceTracker()->AddRefResource(resource
);
33 void ReleaseResource(PP_Resource resource
) {
34 ppapi::ProxyAutoLock lock
;
35 PpapiGlobals::Get()->GetResourceTracker()->ReleaseResource(resource
);
39 return TimeToPPTime(base::Time::Now());
42 double GetTimeTicks() {
43 return TimeTicksToPPTimeTicks(base::TimeTicks::Now());
46 void CallbackWrapper(PP_CompletionCallback callback
, int32_t result
) {
47 TRACE_EVENT2("ppapi proxy", "CallOnMainThread callback",
48 "Func", reinterpret_cast<void*>(callback
.func
),
49 "UserData", callback
.user_data
);
50 CallWhileUnlocked(PP_RunCompletionCallback
, &callback
, result
);
53 void CallOnMainThread(int delay_in_ms
,
54 PP_CompletionCallback callback
,
56 DCHECK(callback
.func
);
58 // Some NaCl apps pass a negative delay, so we just sanitize to 0, to run as
59 // soon as possible. MessageLoop checks that the delay is non-negative.
66 PpapiGlobals::Get()->GetMainThreadMessageLoop()->PostDelayedTask(
68 RunWhileLocked(base::Bind(&CallbackWrapper
, callback
, result
)),
69 base::TimeDelta::FromMilliseconds(delay_in_ms
));
72 PP_Bool
IsMainThread() {
73 return PP_FromBool(PpapiGlobals::Get()->
74 GetMainThreadMessageLoop()->BelongsToCurrentThread());
77 const PPB_Core core_interface
= {
88 PPB_Core_Proxy::PPB_Core_Proxy(Dispatcher
* dispatcher
)
89 : InterfaceProxy(dispatcher
),
90 ppb_core_impl_(NULL
) {
91 if (!dispatcher
->IsPlugin()) {
92 ppb_core_impl_
= static_cast<const PPB_Core
*>(
93 dispatcher
->local_get_interface()(PPB_CORE_INTERFACE
));
97 PPB_Core_Proxy::~PPB_Core_Proxy() {
101 const PPB_Core
* PPB_Core_Proxy::GetPPB_Core_Interface() {
102 return &core_interface
;
105 bool PPB_Core_Proxy::OnMessageReceived(const IPC::Message
& msg
) {
110 IPC_BEGIN_MESSAGE_MAP(PPB_Core_Proxy
, msg
)
111 IPC_MESSAGE_HANDLER(PpapiHostMsg_PPBCore_AddRefResource
,
113 IPC_MESSAGE_HANDLER(PpapiHostMsg_PPBCore_ReleaseResource
,
114 OnMsgReleaseResource
)
115 IPC_MESSAGE_UNHANDLED(handled
= false)
116 IPC_END_MESSAGE_MAP()
117 // TODO(brettw) handle bad messages!
122 #if !defined(OS_NACL)
123 void PPB_Core_Proxy::OnMsgAddRefResource(const HostResource
& resource
) {
124 ppb_core_impl_
->AddRefResource(resource
.host_resource());
127 void PPB_Core_Proxy::OnMsgReleaseResource(const HostResource
& resource
) {
128 ppb_core_impl_
->ReleaseResource(resource
.host_resource());
130 #endif // !defined(OS_NACL)