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
|
// Copyright (c) 2012 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.
#include "ppapi/c/pp_errors.h"
#include "ppapi/c/pp_var.h"
#include "ppapi/thunk/common.h"
#include "ppapi/thunk/thunk.h"
#include "ppapi/thunk/enter.h"
#include "ppapi/thunk/ppb_websocket_api.h"
#include "ppapi/thunk/resource_creation_api.h"
namespace ppapi {
namespace thunk {
namespace {
PP_Resource Create(PP_Instance instance) {
EnterFunction<ResourceCreationAPI> enter(instance, true);
if (enter.failed())
return 0;
return enter.functions()->CreateWebSocket(instance);
}
PP_Bool IsWebSocket(PP_Resource resource) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
return PP_FromBool(enter.succeeded());
}
int32_t Connect(PP_Resource resource,
PP_Var url,
const PP_Var protocols[],
uint32_t protocol_count,
PP_CompletionCallback callback) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
if (enter.failed())
return MayForceCallback(callback, PP_ERROR_BADRESOURCE);
int32_t result =
enter.object()->Connect(url, protocols, protocol_count, callback);
return MayForceCallback(callback, result);
}
int32_t Close(PP_Resource resource,
uint16_t code,
PP_Var reason,
PP_CompletionCallback callback) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
if (enter.failed())
return MayForceCallback(callback, PP_ERROR_BADRESOURCE);
int32_t result = enter.object()->Close(code, reason, callback);
return MayForceCallback(callback, result);
}
int32_t ReceiveMessage(PP_Resource resource,
PP_Var* message,
PP_CompletionCallback callback) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
if (enter.failed())
return MayForceCallback(callback, PP_ERROR_BADRESOURCE);
int32_t result = enter.object()->ReceiveMessage(message, callback);
return MayForceCallback(callback, result);
}
int32_t SendMessage(PP_Resource resource, PP_Var message) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
if (enter.failed())
return PP_ERROR_BADRESOURCE;
return enter.object()->SendMessage(message);
}
uint64_t GetBufferedAmount(PP_Resource resource) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
if (enter.failed())
return 0;
return enter.object()->GetBufferedAmount();
}
uint16_t GetCloseCode(PP_Resource resource) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
if (enter.failed())
return 0;
return enter.object()->GetCloseCode();
}
PP_Var GetCloseReason(PP_Resource resource) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
if (enter.failed())
return PP_MakeUndefined();
return enter.object()->GetCloseReason();
}
PP_Bool GetCloseWasClean(PP_Resource resource) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
if (enter.failed())
return PP_FALSE;
return enter.object()->GetCloseWasClean();
}
PP_Var GetExtensions(PP_Resource resource) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
if (enter.failed())
return PP_MakeUndefined();
return enter.object()->GetExtensions();
}
PP_Var GetProtocol(PP_Resource resource) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
if (enter.failed())
return PP_MakeUndefined();
return enter.object()->GetProtocol();
}
PP_WebSocketReadyState_Dev GetReadyState(PP_Resource resource) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
if (enter.failed())
return PP_WEBSOCKETREADYSTATE_INVALID_DEV;
return enter.object()->GetReadyState();
}
PP_Var GetURL(PP_Resource resource) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
if (enter.failed())
return PP_MakeUndefined();
return enter.object()->GetURL();
}
PP_Bool SetBinaryType(PP_Resource resource,
PP_WebSocketBinaryType_Dev binary_type) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
if (enter.failed())
return PP_FALSE;
return enter.object()->SetBinaryType(binary_type);
}
PP_WebSocketBinaryType_Dev GetBinaryType(PP_Resource resource) {
EnterResource<PPB_WebSocket_API> enter(resource, false);
if (enter.failed())
return PP_WEBSOCKETBINARYTYPE_INVALID;
return enter.object()->GetBinaryType();
}
const PPB_WebSocket_Dev_0_1 g_ppb_websocket_0_1_thunk = {
&Create,
&IsWebSocket,
&Connect,
&Close,
&ReceiveMessage,
&SendMessage,
&GetBufferedAmount,
&GetCloseCode,
&GetCloseReason,
&GetCloseWasClean,
&GetExtensions,
&GetProtocol,
&GetReadyState,
&GetURL
};
const PPB_WebSocket_Dev_0_9 g_ppb_websocket_0_9_thunk = {
&Create,
&IsWebSocket,
&Connect,
&Close,
&ReceiveMessage,
&SendMessage,
&GetBufferedAmount,
&GetCloseCode,
&GetCloseReason,
&GetCloseWasClean,
&GetExtensions,
&GetProtocol,
&GetReadyState,
&GetURL,
&SetBinaryType,
&GetBinaryType
};
} // namespace
const PPB_WebSocket_Dev_0_1* GetPPB_WebSocket_Dev_0_1_Thunk() {
return &g_ppb_websocket_0_1_thunk;
}
const PPB_WebSocket_Dev_0_9* GetPPB_WebSocket_Dev_0_9_Thunk() {
return &g_ppb_websocket_0_9_thunk;
}
} // namespace thunk
} // namespace ppapi
|