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
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// From ppb_udp_socket.idl modified Wed Jan 27 17:10:16 2016.
#include <stdint.h>
#include "base/logging.h"
#include "ppapi/c/pp_completion_callback.h"
#include "ppapi/c/pp_errors.h"
#include "ppapi/c/ppb_udp_socket.h"
#include "ppapi/shared_impl/tracked_callback.h"
#include "ppapi/thunk/enter.h"
#include "ppapi/thunk/ppapi_thunk_export.h"
#include "ppapi/thunk/ppb_udp_socket_api.h"
namespace ppapi {
namespace thunk {
namespace {
PP_Resource Create(PP_Instance instance) {
VLOG(4) << "PPB_UDPSocket::Create()";
EnterResourceCreation enter(instance);
if (enter.failed())
return 0;
return enter.functions()->CreateUDPSocket(instance);
}
PP_Bool IsUDPSocket(PP_Resource resource) {
VLOG(4) << "PPB_UDPSocket::IsUDPSocket()";
EnterResource<PPB_UDPSocket_API> enter(resource, false);
return PP_FromBool(enter.succeeded());
}
int32_t Bind(PP_Resource udp_socket,
PP_Resource addr,
struct PP_CompletionCallback callback) {
VLOG(4) << "PPB_UDPSocket::Bind()";
EnterResource<PPB_UDPSocket_API> enter(udp_socket, callback, true);
if (enter.failed())
return enter.retval();
return enter.SetResult(enter.object()->Bind(addr, enter.callback()));
}
PP_Resource GetBoundAddress(PP_Resource udp_socket) {
VLOG(4) << "PPB_UDPSocket::GetBoundAddress()";
EnterResource<PPB_UDPSocket_API> enter(udp_socket, true);
if (enter.failed())
return 0;
return enter.object()->GetBoundAddress();
}
int32_t RecvFrom(PP_Resource udp_socket,
char* buffer,
int32_t num_bytes,
PP_Resource* addr,
struct PP_CompletionCallback callback) {
VLOG(4) << "PPB_UDPSocket::RecvFrom()";
EnterResource<PPB_UDPSocket_API> enter(udp_socket, callback, true);
if (enter.failed())
return enter.retval();
return enter.SetResult(
enter.object()->RecvFrom(buffer, num_bytes, addr, enter.callback()));
}
int32_t SendTo(PP_Resource udp_socket,
const char* buffer,
int32_t num_bytes,
PP_Resource addr,
struct PP_CompletionCallback callback) {
VLOG(4) << "PPB_UDPSocket::SendTo()";
EnterResource<PPB_UDPSocket_API> enter(udp_socket, callback, true);
if (enter.failed())
return enter.retval();
return enter.SetResult(
enter.object()->SendTo(buffer, num_bytes, addr, enter.callback()));
}
void Close(PP_Resource udp_socket) {
VLOG(4) << "PPB_UDPSocket::Close()";
EnterResource<PPB_UDPSocket_API> enter(udp_socket, true);
if (enter.failed())
return;
enter.object()->Close();
}
int32_t SetOption_1_0(PP_Resource udp_socket,
PP_UDPSocket_Option name,
struct PP_Var value,
struct PP_CompletionCallback callback) {
VLOG(4) << "PPB_UDPSocket::SetOption_1_0()";
EnterResource<PPB_UDPSocket_API> enter(udp_socket, callback, true);
if (enter.failed())
return enter.retval();
return enter.SetResult(
enter.object()->SetOption1_0(name, value, enter.callback()));
}
int32_t SetOption_1_1(PP_Resource udp_socket,
PP_UDPSocket_Option name,
struct PP_Var value,
struct PP_CompletionCallback callback) {
VLOG(4) << "PPB_UDPSocket::SetOption_1_1()";
EnterResource<PPB_UDPSocket_API> enter(udp_socket, callback, true);
if (enter.failed())
return enter.retval();
return enter.SetResult(
enter.object()->SetOption1_1(name, value, enter.callback()));
}
int32_t SetOption(PP_Resource udp_socket,
PP_UDPSocket_Option name,
struct PP_Var value,
struct PP_CompletionCallback callback) {
VLOG(4) << "PPB_UDPSocket::SetOption()";
EnterResource<PPB_UDPSocket_API> enter(udp_socket, callback, true);
if (enter.failed())
return enter.retval();
return enter.SetResult(
enter.object()->SetOption(name, value, enter.callback()));
}
int32_t JoinGroup(PP_Resource udp_socket,
PP_Resource group,
struct PP_CompletionCallback callback) {
VLOG(4) << "PPB_UDPSocket::JoinGroup()";
EnterResource<PPB_UDPSocket_API> enter(udp_socket, callback, true);
if (enter.failed())
return enter.retval();
return enter.SetResult(enter.object()->JoinGroup(group, enter.callback()));
}
int32_t LeaveGroup(PP_Resource udp_socket,
PP_Resource group,
struct PP_CompletionCallback callback) {
VLOG(4) << "PPB_UDPSocket::LeaveGroup()";
EnterResource<PPB_UDPSocket_API> enter(udp_socket, callback, true);
if (enter.failed())
return enter.retval();
return enter.SetResult(enter.object()->LeaveGroup(group, enter.callback()));
}
const PPB_UDPSocket_1_0 g_ppb_udpsocket_thunk_1_0 = {
&Create, &IsUDPSocket, &Bind, &GetBoundAddress,
&RecvFrom, &SendTo, &Close, &SetOption_1_0};
const PPB_UDPSocket_1_1 g_ppb_udpsocket_thunk_1_1 = {
&Create, &IsUDPSocket, &Bind, &GetBoundAddress,
&RecvFrom, &SendTo, &Close, &SetOption_1_1};
const PPB_UDPSocket_1_2 g_ppb_udpsocket_thunk_1_2 = {
&Create, &IsUDPSocket, &Bind, &GetBoundAddress, &RecvFrom,
&SendTo, &Close, &SetOption, &JoinGroup, &LeaveGroup};
} // namespace
PPAPI_THUNK_EXPORT const PPB_UDPSocket_1_0* GetPPB_UDPSocket_1_0_Thunk() {
return &g_ppb_udpsocket_thunk_1_0;
}
PPAPI_THUNK_EXPORT const PPB_UDPSocket_1_1* GetPPB_UDPSocket_1_1_Thunk() {
return &g_ppb_udpsocket_thunk_1_1;
}
PPAPI_THUNK_EXPORT const PPB_UDPSocket_1_2* GetPPB_UDPSocket_1_2_Thunk() {
return &g_ppb_udpsocket_thunk_1_2;
}
} // namespace thunk
} // namespace ppapi
|