summaryrefslogtreecommitdiffstats
path: root/ppapi/cpp/dev/tcp_socket_dev.cc
diff options
context:
space:
mode:
authoryzshen@chromium.org <yzshen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-13 06:48:36 +0000
committeryzshen@chromium.org <yzshen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-06-13 06:48:36 +0000
commitb1784f4dc9fbf104e4454796edf26d2f76e16a94 (patch)
tree476affcb92e4fa1e2f0772a935bc3f63f8164630 /ppapi/cpp/dev/tcp_socket_dev.cc
parentb1c988bcd7869765e1bd56e592787af123340516 (diff)
downloadchromium_src-b1784f4dc9fbf104e4454796edf26d2f76e16a94.zip
chromium_src-b1784f4dc9fbf104e4454796edf26d2f76e16a94.tar.gz
chromium_src-b1784f4dc9fbf104e4454796edf26d2f76e16a94.tar.bz2
Introduce PPB_TCPSocket_Dev.
This change exposes the PPB_TCPSocket_Dev interface and makes it to share the same backend as PPB_TCPSocket_Private. It doesn't include: - apps permission check; - TCP socket options that PPB_TCPSocket_Private doesn't support. These will be implemented in separate CLs. BUG=247225 TEST=newly added test_tcp_socket.{h,cc}. Review URL: https://chromiumcodereview.appspot.com/16667002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206014 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/cpp/dev/tcp_socket_dev.cc')
-rw-r--r--ppapi/cpp/dev/tcp_socket_dev.cc117
1 files changed, 117 insertions, 0 deletions
diff --git a/ppapi/cpp/dev/tcp_socket_dev.cc b/ppapi/cpp/dev/tcp_socket_dev.cc
new file mode 100644
index 0000000..4ff9514
--- /dev/null
+++ b/ppapi/cpp/dev/tcp_socket_dev.cc
@@ -0,0 +1,117 @@
+// 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/dev/tcp_socket_dev.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_Dev_0_1>() {
+ return PPB_TCPSOCKET_DEV_INTERFACE_0_1;
+}
+
+} // namespace
+
+TCPSocket_Dev::TCPSocket_Dev() {
+}
+
+TCPSocket_Dev::TCPSocket_Dev(const InstanceHandle& instance) {
+ if (has_interface<PPB_TCPSocket_Dev_0_1>()) {
+ PassRefFromConstructor(get_interface<PPB_TCPSocket_Dev_0_1>()->Create(
+ instance.pp_instance()));
+ }
+}
+
+TCPSocket_Dev::TCPSocket_Dev(PassRef, PP_Resource resource)
+ : Resource(PASS_REF, resource) {
+}
+
+TCPSocket_Dev::TCPSocket_Dev(const TCPSocket_Dev& other) : Resource(other) {
+}
+
+TCPSocket_Dev::~TCPSocket_Dev() {
+}
+
+TCPSocket_Dev& TCPSocket_Dev::operator=(const TCPSocket_Dev& other) {
+ Resource::operator=(other);
+ return *this;
+}
+
+// static
+bool TCPSocket_Dev::IsAvailable() {
+ return has_interface<PPB_TCPSocket_Dev_0_1>();
+}
+
+int32_t TCPSocket_Dev::Connect(const NetAddress_Dev& addr,
+ const CompletionCallback& callback) {
+ if (has_interface<PPB_TCPSocket_Dev_0_1>()) {
+ return get_interface<PPB_TCPSocket_Dev_0_1>()->Connect(
+ pp_resource(), addr.pp_resource(), callback.pp_completion_callback());
+ }
+ return callback.MayForce(PP_ERROR_NOINTERFACE);
+}
+
+NetAddress_Dev TCPSocket_Dev::GetLocalAddress() const {
+ if (has_interface<PPB_TCPSocket_Dev_0_1>()) {
+ return NetAddress_Dev(
+ PASS_REF,
+ get_interface<PPB_TCPSocket_Dev_0_1>()->GetLocalAddress(pp_resource()));
+ }
+ return NetAddress_Dev();
+}
+
+NetAddress_Dev TCPSocket_Dev::GetRemoteAddress() const {
+ if (has_interface<PPB_TCPSocket_Dev_0_1>()) {
+ return NetAddress_Dev(
+ PASS_REF,
+ get_interface<PPB_TCPSocket_Dev_0_1>()->GetRemoteAddress(
+ pp_resource()));
+ }
+ return NetAddress_Dev();
+}
+
+int32_t TCPSocket_Dev::Read(char* buffer,
+ int32_t bytes_to_read,
+ const CompletionCallback& callback) {
+ if (has_interface<PPB_TCPSocket_Dev_0_1>()) {
+ return get_interface<PPB_TCPSocket_Dev_0_1>()->Read(
+ pp_resource(), buffer, bytes_to_read,
+ callback.pp_completion_callback());
+ }
+ return callback.MayForce(PP_ERROR_NOINTERFACE);
+}
+
+int32_t TCPSocket_Dev::Write(const char* buffer,
+ int32_t bytes_to_write,
+ const CompletionCallback& callback) {
+ if (has_interface<PPB_TCPSocket_Dev_0_1>()) {
+ return get_interface<PPB_TCPSocket_Dev_0_1>()->Write(
+ pp_resource(), buffer, bytes_to_write,
+ callback.pp_completion_callback());
+ }
+ return callback.MayForce(PP_ERROR_NOINTERFACE);
+}
+
+void TCPSocket_Dev::Close() {
+ if (has_interface<PPB_TCPSocket_Dev_0_1>())
+ get_interface<PPB_TCPSocket_Dev_0_1>()->Close(pp_resource());
+}
+
+int32_t TCPSocket_Dev::SetOption(PP_TCPSocket_Option_Dev name,
+ const Var& value,
+ const CompletionCallback& callback) {
+ if (has_interface<PPB_TCPSocket_Dev_0_1>()) {
+ return get_interface<PPB_TCPSocket_Dev_0_1>()->SetOption(
+ pp_resource(), name, value.pp_var(), callback.pp_completion_callback());
+ }
+ return callback.MayForce(PP_ERROR_NOINTERFACE);
+}
+
+} // namespace pp