forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtcp_socket.cc
182 lines (157 loc) · 5.69 KB
/
tcp_socket.cc
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
// Copyright 2013 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/cpp/tcp_socket.h"
#include "ppapi/c/pp_errors.h"
#include "ppapi/cpp/completion_callback.h"
#include "ppapi/cpp/instance_handle.h"
#include "ppapi/cpp/module_impl.h"
namespace pp {
namespace {
template <> const char* interface_name<PPB_TCPSocket_1_0>() {
return PPB_TCPSOCKET_INTERFACE_1_0;
}
template <> const char* interface_name<PPB_TCPSocket_1_1>() {
return PPB_TCPSOCKET_INTERFACE_1_1;
}
} // namespace
TCPSocket::TCPSocket() {
}
TCPSocket::TCPSocket(const InstanceHandle& instance) {
if (has_interface<PPB_TCPSocket_1_1>()) {
PassRefFromConstructor(get_interface<PPB_TCPSocket_1_1>()->Create(
instance.pp_instance()));
} else if (has_interface<PPB_TCPSocket_1_0>()) {
PassRefFromConstructor(get_interface<PPB_TCPSocket_1_0>()->Create(
instance.pp_instance()));
}
}
TCPSocket::TCPSocket(PassRef, PP_Resource resource)
: Resource(PASS_REF, resource) {
}
TCPSocket::TCPSocket(const TCPSocket& other) : Resource(other) {
}
TCPSocket::~TCPSocket() {
}
TCPSocket& TCPSocket::operator=(const TCPSocket& other) {
Resource::operator=(other);
return *this;
}
// static
bool TCPSocket::IsAvailable() {
return has_interface<PPB_TCPSocket_1_1>() ||
has_interface<PPB_TCPSocket_1_0>();
}
int32_t TCPSocket::Bind(const NetAddress& addr,
const CompletionCallback& callback) {
if (has_interface<PPB_TCPSocket_1_1>()) {
return get_interface<PPB_TCPSocket_1_1>()->Bind(
pp_resource(), addr.pp_resource(), callback.pp_completion_callback());
}
return callback.MayForce(PP_ERROR_NOINTERFACE);
}
int32_t TCPSocket::Connect(const NetAddress& addr,
const CompletionCallback& callback) {
if (has_interface<PPB_TCPSocket_1_1>()) {
return get_interface<PPB_TCPSocket_1_1>()->Connect(
pp_resource(), addr.pp_resource(), callback.pp_completion_callback());
}
if (has_interface<PPB_TCPSocket_1_0>()) {
return get_interface<PPB_TCPSocket_1_0>()->Connect(
pp_resource(), addr.pp_resource(), callback.pp_completion_callback());
}
return callback.MayForce(PP_ERROR_NOINTERFACE);
}
NetAddress TCPSocket::GetLocalAddress() const {
if (has_interface<PPB_TCPSocket_1_1>()) {
return NetAddress(
PASS_REF,
get_interface<PPB_TCPSocket_1_1>()->GetLocalAddress(pp_resource()));
}
if (has_interface<PPB_TCPSocket_1_0>()) {
return NetAddress(
PASS_REF,
get_interface<PPB_TCPSocket_1_0>()->GetLocalAddress(pp_resource()));
}
return NetAddress();
}
NetAddress TCPSocket::GetRemoteAddress() const {
if (has_interface<PPB_TCPSocket_1_1>()) {
return NetAddress(
PASS_REF,
get_interface<PPB_TCPSocket_1_1>()->GetRemoteAddress(pp_resource()));
}
if (has_interface<PPB_TCPSocket_1_0>()) {
return NetAddress(
PASS_REF,
get_interface<PPB_TCPSocket_1_0>()->GetRemoteAddress(pp_resource()));
}
return NetAddress();
}
int32_t TCPSocket::Read(char* buffer,
int32_t bytes_to_read,
const CompletionCallback& callback) {
if (has_interface<PPB_TCPSocket_1_1>()) {
return get_interface<PPB_TCPSocket_1_1>()->Read(
pp_resource(), buffer, bytes_to_read,
callback.pp_completion_callback());
}
if (has_interface<PPB_TCPSocket_1_0>()) {
return get_interface<PPB_TCPSocket_1_0>()->Read(
pp_resource(), buffer, bytes_to_read,
callback.pp_completion_callback());
}
return callback.MayForce(PP_ERROR_NOINTERFACE);
}
int32_t TCPSocket::Write(const char* buffer,
int32_t bytes_to_write,
const CompletionCallback& callback) {
if (has_interface<PPB_TCPSocket_1_1>()) {
return get_interface<PPB_TCPSocket_1_1>()->Write(
pp_resource(), buffer, bytes_to_write,
callback.pp_completion_callback());
}
if (has_interface<PPB_TCPSocket_1_0>()) {
return get_interface<PPB_TCPSocket_1_0>()->Write(
pp_resource(), buffer, bytes_to_write,
callback.pp_completion_callback());
}
return callback.MayForce(PP_ERROR_NOINTERFACE);
}
int32_t TCPSocket::Listen(int32_t backlog,
const CompletionCallback& callback) {
if (has_interface<PPB_TCPSocket_1_1>()) {
return get_interface<PPB_TCPSocket_1_1>()->Listen(
pp_resource(), backlog, callback.pp_completion_callback());
}
return callback.MayForce(PP_ERROR_NOINTERFACE);
}
int32_t TCPSocket::Accept(
const CompletionCallbackWithOutput<TCPSocket>& callback) {
if (has_interface<PPB_TCPSocket_1_1>()) {
return get_interface<PPB_TCPSocket_1_1>()->Accept(
pp_resource(), callback.output(), callback.pp_completion_callback());
}
return callback.MayForce(PP_ERROR_NOINTERFACE);
}
void TCPSocket::Close() {
if (has_interface<PPB_TCPSocket_1_1>()) {
get_interface<PPB_TCPSocket_1_1>()->Close(pp_resource());
} else if (has_interface<PPB_TCPSocket_1_0>()) {
get_interface<PPB_TCPSocket_1_0>()->Close(pp_resource());
}
}
int32_t TCPSocket::SetOption(PP_TCPSocket_Option name,
const Var& value,
const CompletionCallback& callback) {
if (has_interface<PPB_TCPSocket_1_1>()) {
return get_interface<PPB_TCPSocket_1_1>()->SetOption(
pp_resource(), name, value.pp_var(), callback.pp_completion_callback());
}
if (has_interface<PPB_TCPSocket_1_0>()) {
return get_interface<PPB_TCPSocket_1_0>()->SetOption(
pp_resource(), name, value.pp_var(), callback.pp_completion_callback());
}
return callback.MayForce(PP_ERROR_NOINTERFACE);
}
} // namespace pp