1 // Copyright 2013 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 // From ppb_tcp_socket.idl modified Sun Sep 15 16:14:21 2013.
7 #include "ppapi/c/pp_completion_callback.h"
8 #include "ppapi/c/pp_errors.h"
9 #include "ppapi/c/ppb_tcp_socket.h"
10 #include "ppapi/shared_impl/tracked_callback.h"
11 #include "ppapi/thunk/enter.h"
12 #include "ppapi/thunk/ppb_instance_api.h"
13 #include "ppapi/thunk/ppb_tcp_socket_api.h"
14 #include "ppapi/thunk/resource_creation_api.h"
15 #include "ppapi/thunk/thunk.h"
22 PP_Resource
Create_1_0(PP_Instance instance
) {
23 VLOG(4) << "PPB_TCPSocket::Create_1_0()";
24 EnterResourceCreation
enter(instance
);
27 return enter
.functions()->CreateTCPSocket1_0(instance
);
30 PP_Resource
Create(PP_Instance instance
) {
31 VLOG(4) << "PPB_TCPSocket::Create()";
32 EnterResourceCreation
enter(instance
);
35 return enter
.functions()->CreateTCPSocket(instance
);
38 PP_Bool
IsTCPSocket(PP_Resource resource
) {
39 VLOG(4) << "PPB_TCPSocket::IsTCPSocket()";
40 EnterResource
<PPB_TCPSocket_API
> enter(resource
, false);
41 return PP_FromBool(enter
.succeeded());
44 int32_t Bind(PP_Resource tcp_socket
,
46 struct PP_CompletionCallback callback
) {
47 VLOG(4) << "PPB_TCPSocket::Bind()";
48 EnterResource
<PPB_TCPSocket_API
> enter(tcp_socket
, callback
, true);
50 return enter
.retval();
51 return enter
.SetResult(enter
.object()->Bind(addr
, enter
.callback()));
54 int32_t Connect(PP_Resource tcp_socket
,
56 struct PP_CompletionCallback callback
) {
57 VLOG(4) << "PPB_TCPSocket::Connect()";
58 EnterResource
<PPB_TCPSocket_API
> enter(tcp_socket
, callback
, true);
60 return enter
.retval();
61 return enter
.SetResult(enter
.object()->Connect(addr
, enter
.callback()));
64 PP_Resource
GetLocalAddress(PP_Resource tcp_socket
) {
65 VLOG(4) << "PPB_TCPSocket::GetLocalAddress()";
66 EnterResource
<PPB_TCPSocket_API
> enter(tcp_socket
, true);
69 return enter
.object()->GetLocalAddress();
72 PP_Resource
GetRemoteAddress(PP_Resource tcp_socket
) {
73 VLOG(4) << "PPB_TCPSocket::GetRemoteAddress()";
74 EnterResource
<PPB_TCPSocket_API
> enter(tcp_socket
, true);
77 return enter
.object()->GetRemoteAddress();
80 int32_t Read(PP_Resource tcp_socket
,
82 int32_t bytes_to_read
,
83 struct PP_CompletionCallback callback
) {
84 VLOG(4) << "PPB_TCPSocket::Read()";
85 EnterResource
<PPB_TCPSocket_API
> enter(tcp_socket
, callback
, true);
87 return enter
.retval();
88 return enter
.SetResult(enter
.object()->Read(buffer
,
93 int32_t Write(PP_Resource tcp_socket
,
95 int32_t bytes_to_write
,
96 struct PP_CompletionCallback callback
) {
97 VLOG(4) << "PPB_TCPSocket::Write()";
98 EnterResource
<PPB_TCPSocket_API
> enter(tcp_socket
, callback
, true);
100 return enter
.retval();
101 return enter
.SetResult(enter
.object()->Write(buffer
,
106 int32_t Listen(PP_Resource tcp_socket
,
108 struct PP_CompletionCallback callback
) {
109 VLOG(4) << "PPB_TCPSocket::Listen()";
110 EnterResource
<PPB_TCPSocket_API
> enter(tcp_socket
, callback
, true);
112 return enter
.retval();
113 return enter
.SetResult(enter
.object()->Listen(backlog
, enter
.callback()));
116 int32_t Accept(PP_Resource tcp_socket
,
117 PP_Resource
* accepted_tcp_socket
,
118 struct PP_CompletionCallback callback
) {
119 VLOG(4) << "PPB_TCPSocket::Accept()";
120 EnterResource
<PPB_TCPSocket_API
> enter(tcp_socket
, callback
, true);
122 return enter
.retval();
123 return enter
.SetResult(enter
.object()->Accept(accepted_tcp_socket
,
127 void Close(PP_Resource tcp_socket
) {
128 VLOG(4) << "PPB_TCPSocket::Close()";
129 EnterResource
<PPB_TCPSocket_API
> enter(tcp_socket
, true);
132 enter
.object()->Close();
135 int32_t SetOption(PP_Resource tcp_socket
,
136 PP_TCPSocket_Option name
,
138 struct PP_CompletionCallback callback
) {
139 VLOG(4) << "PPB_TCPSocket::SetOption()";
140 EnterResource
<PPB_TCPSocket_API
> enter(tcp_socket
, callback
, true);
142 return enter
.retval();
143 return enter
.SetResult(enter
.object()->SetOption(name
,
148 const PPB_TCPSocket_1_0 g_ppb_tcpsocket_thunk_1_0
= {
160 const PPB_TCPSocket_1_1 g_ppb_tcpsocket_thunk_1_1
= {
177 const PPB_TCPSocket_1_0
* GetPPB_TCPSocket_1_0_Thunk() {
178 return &g_ppb_tcpsocket_thunk_1_0
;
181 const PPB_TCPSocket_1_1
* GetPPB_TCPSocket_1_1_Thunk() {
182 return &g_ppb_tcpsocket_thunk_1_1
;