// 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/udp_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" #include "ppapi/cpp/var.h" namespace pp { namespace { template <> const char* interface_name<PPB_UDPSocket_1_0>() { return PPB_UDPSOCKET_INTERFACE_1_0; } } // namespace UDPSocket::UDPSocket() { } UDPSocket::UDPSocket(const InstanceHandle& instance) { if (has_interface<PPB_UDPSocket_1_0>()) { PassRefFromConstructor(get_interface<PPB_UDPSocket_1_0>()->Create( instance.pp_instance())); } } UDPSocket::UDPSocket(PassRef, PP_Resource resource) : Resource(PASS_REF, resource) { } UDPSocket::UDPSocket(const UDPSocket& other) : Resource(other) { } UDPSocket::~UDPSocket() { } UDPSocket& UDPSocket::operator=(const UDPSocket& other) { Resource::operator=(other); return *this; } // static bool UDPSocket::IsAvailable() { return has_interface<PPB_UDPSocket_1_0>(); } int32_t UDPSocket::Bind(const NetAddress& addr, const CompletionCallback& callback) { if (has_interface<PPB_UDPSocket_1_0>()) { return get_interface<PPB_UDPSocket_1_0>()->Bind( pp_resource(), addr.pp_resource(), callback.pp_completion_callback()); } return callback.MayForce(PP_ERROR_NOINTERFACE); } NetAddress UDPSocket::GetBoundAddress() { if (has_interface<PPB_UDPSocket_1_0>()) { return NetAddress( PASS_REF, get_interface<PPB_UDPSocket_1_0>()->GetBoundAddress(pp_resource())); } return NetAddress(); } int32_t UDPSocket::RecvFrom( char* buffer, int32_t num_bytes, const CompletionCallbackWithOutput<NetAddress>& callback) { if (has_interface<PPB_UDPSocket_1_0>()) { return get_interface<PPB_UDPSocket_1_0>()->RecvFrom( pp_resource(), buffer, num_bytes, callback.output(), callback.pp_completion_callback()); } return callback.MayForce(PP_ERROR_NOINTERFACE); } int32_t UDPSocket::SendTo(const char* buffer, int32_t num_bytes, const NetAddress& addr, const CompletionCallback& callback) { if (has_interface<PPB_UDPSocket_1_0>()) { return get_interface<PPB_UDPSocket_1_0>()->SendTo( pp_resource(), buffer, num_bytes, addr.pp_resource(), callback.pp_completion_callback()); } return callback.MayForce(PP_ERROR_NOINTERFACE); } void UDPSocket::Close() { if (has_interface<PPB_UDPSocket_1_0>()) return get_interface<PPB_UDPSocket_1_0>()->Close(pp_resource()); } int32_t UDPSocket::SetOption(PP_UDPSocket_Option name, const Var& value, const CompletionCallback& callback) { if (has_interface<PPB_UDPSocket_1_0>()) { return get_interface<PPB_UDPSocket_1_0>()->SetOption( pp_resource(), name, value.pp_var(), callback.pp_completion_callback()); } return callback.MayForce(PP_ERROR_NOINTERFACE); } } // namespace pp