//------------------------------------------------------------------------------ /* This file is part of Beast: https://github.com/vinniefalco/Beast Copyright 2013, Vinnie Falco Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ //============================================================================== #ifndef BEAST_SOCKETWRAPPER_H_INCLUDED #define BEAST_SOCKETWRAPPER_H_INCLUDED /** Wraps a reference to any object and exports all availble interfaces. If the object does not support an interface, calling those member functions will behave as if a pure virtual was called. Note that only a reference to the underlying is stored. Management of the lifetime of the object is controlled by the caller. Examples of the type of Object: asio::ip::tcp::socket arg must be an io_context SocketWrapper will create and take ownership of the tcp::socket this_layer_type will be tcp::socket next_layer () returns a asio::ip::tcp::socket& lowest_layer () returns a asio::ip::tcp::socket& asio::ip::tcp::socket& arg must be an existing socket& The caller owns the underlying socket object this_layer_type will be tcp::socket next_layer () returns a asio::ip::tcp::socket& lowest_layer () returns a asio::ip::tcp::socket& asio::ssl::stream arg must be an io_context SocketWrapper creates and takes ownership of the ssl::stream WrappedObjecType will be asio::ssl::stream next_layer () returns a asio::ip::tcp::socket& lowest_layer () returns a asio::ip::tcp::socket& asio::ssl::stream arg must be an existing socket& The caller owns the socket, but SocketWrapper owns the ssl::stream this_layer_type will be asio::ssl::stream next_layer () returns a asio::ip::tcp::socket& lowest_layer () returns a asio::ip::tcp::socket& asio::ssl::stream > > This makes my head explode */ //------------------------------------------------------------------------------ namespace SocketWrapperMemberChecks { template struct EnableIf : boost::false_type { }; template <> struct EnableIf : boost::true_type { }; BEAST_DEFINE_IS_CALL_POSSIBLE(has_get_io_service, get_io_service); BEAST_DEFINE_IS_CALL_POSSIBLE(has_lowest_layer, lowest_layer); BEAST_DEFINE_IS_CALL_POSSIBLE(has_cancel, cancel); BEAST_DEFINE_IS_CALL_POSSIBLE(has_shutdown, shutdown); BEAST_DEFINE_IS_CALL_POSSIBLE(has_close, close); BEAST_DEFINE_IS_CALL_POSSIBLE(has_accept, accept); BEAST_DEFINE_IS_CALL_POSSIBLE(has_async_accept, async_accept); BEAST_DEFINE_IS_CALL_POSSIBLE(has_read_some, read_some); BEAST_DEFINE_IS_CALL_POSSIBLE(has_write_some, write_some); BEAST_DEFINE_IS_CALL_POSSIBLE(has_async_read_some, async_read_some); BEAST_DEFINE_IS_CALL_POSSIBLE(has_async_write_some, async_write_some); BEAST_DEFINE_IS_CALL_POSSIBLE(has_handshake, handshake); BEAST_DEFINE_IS_CALL_POSSIBLE(has_async_handshake, async_handshake); BEAST_DEFINE_IS_CALL_POSSIBLE(has_async_shutdown, async_shutdown); // Extracts the underlying socket type from the protocol of another asio object template struct native_socket { typedef void* socket_type; inline native_socket (Socket&) : m_socket (nullptr) { SocketBase::pure_virtual (); } inline socket_type& get () { SocketBase::pure_virtual (); return m_socket; } inline socket_type& operator-> () { return get (); } private: socket_type m_socket; }; // Enabled if T::protocol_type::socket exists as a type template struct native_socket >::type> { typedef typename T::protocol_type::socket socket_type; inline native_socket (Socket& peer) : m_socket_ptr (&peer.native_handle ()) { } inline socket_type& get () noexcept { return *m_socket_ptr; } inline socket_type& operator-> () noexcept { return get (); } private: socket_type* m_socket_ptr; }; }; //------------------------------------------------------------------------------ template class SocketWrapper : public Socket , public Uncopyable { public: template explicit SocketWrapper (Arg& arg) : m_object (arg) { } template SocketWrapper (Arg1& arg1, Arg2& arg2) : m_object (arg1, arg2) { } //-------------------------------------------------------------------------- // // accessors // // If you have access to the SocketWrapper itself instead of the Socket, // then these types and functions become available to you. If you want // to access things like next_layer() and lowest_layer() directly on the // underlying object, you might write: // // wrapper->this_layer().next_layer() // // We can't expose native versions of next_layer_type or next_layer() // because they may not exist in the underlying object and would cause // a compile error if we tried. // /** The type of the object being wrapped. */ typedef typename boost::remove_reference ::type this_layer_type; /** Get a reference to this layer. */ this_layer_type& this_layer () noexcept { return m_object; } /** Get a const reference to this layer. */ this_layer_type const& this_layer () const noexcept { return m_object; } //-------------------------------------------------------------------------- // // basic_io_object // boost::asio::io_service& get_io_service () { using namespace SocketWrapperMemberChecks; #if 0 // This is the one that doesn't work, (void) arg lists return get_io_service ( EnableIf ::value> ()); #else return get_io_service (boost::true_type ()); #endif } boost::asio::io_service& get_io_service ( boost::true_type) { return m_object.get_io_service (); } boost::asio::io_service& get_io_service ( boost::false_type) { pure_virtual (); return *static_cast (nullptr); } //-------------------------------------------------------------------------- // // basic_socket // #if 0 // This is a potential work-around for the problem with // the has_type_lowest_layer_type template, but requires // Boost 1.54 or later. // // This include will be needed: // // #include // // BOOST_TTI_HAS_TYPE(lowest_layer_type) #endif template struct has_type_lowest_layer_type { typedef char yes; typedef struct {char dummy[2];} no; template static yes f(typename C::lowest_layer_type*); template static no f(...); #ifdef _MSC_VER static bool const value = sizeof(f(0)) == 1; #else // This line fails to compile under Visual Studio 2012 static bool const value = sizeof(has_type_lowest_layer_type::f(0)) == 1; #endif }; void* lowest_layer (char const* type_name) const { using namespace SocketWrapperMemberChecks; return lowest_layer (type_name, EnableIf ::value> ()); } void* lowest_layer (char const* type_name, boost::true_type) const { char const* const name (typeid (typename this_layer_type::lowest_layer_type).name ()); if (strcmp (name, type_name) == 0) return const_cast (static_cast (&m_object.lowest_layer ())); return nullptr; } void* lowest_layer (char const*, boost::false_type) const { pure_virtual (); return nullptr; } //-------------------------------------------------------------------------- void* native_handle (char const* type_name) const { char const* const name (typeid (this_layer_type).name ()); if (strcmp (name, type_name) == 0) return const_cast (static_cast (&m_object)); return nullptr; } //-------------------------------------------------------------------------- error_code cancel (error_code& ec) { using namespace SocketWrapperMemberChecks; return cancel (ec, EnableIf ::value> ()); } error_code cancel (error_code& ec, boost::true_type) { return m_object.cancel (ec); } error_code cancel (error_code& ec, boost::false_type) { return pure_virtual (ec); } //-------------------------------------------------------------------------- error_code shutdown (shutdown_type what, error_code& ec) { using namespace SocketWrapperMemberChecks; return shutdown (what, ec, EnableIf ::value> ()); } error_code shutdown (shutdown_type what, error_code& ec, boost::true_type) { return m_object.shutdown (what, ec); } error_code shutdown (shutdown_type, error_code& ec, boost::false_type) { return pure_virtual (ec); } //-------------------------------------------------------------------------- error_code close (error_code& ec) { using namespace SocketWrapperMemberChecks; return close (ec, EnableIf ::value> ()); } error_code close (error_code& ec, boost::true_type) { return m_object.close (ec); } error_code close (error_code& ec, boost::false_type) { return pure_virtual (ec); } //-------------------------------------------------------------------------- // // basic_socket_acceptor // error_code accept (Socket& peer, error_code& ec) { using namespace SocketWrapperMemberChecks; typedef typename native_socket ::socket_type socket_type; return accept (peer, ec, EnableIf ::value> ()); } error_code accept (Socket& peer, error_code& ec, boost::true_type) { using namespace SocketWrapperMemberChecks; return m_object.accept ( native_socket (peer).get (), ec); } error_code accept (Socket&, error_code& ec, boost::false_type) { return pure_virtual (ec); } //-------------------------------------------------------------------------- BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code)) async_accept (Socket& peer, HandlerCall const& handler) { using namespace SocketWrapperMemberChecks; typedef typename native_socket ::socket_type socket_type; return async_accept (peer, handler, EnableIf ::value> ()); } BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code)) async_accept (Socket& peer, HandlerCall const& handler, boost::true_type) { using namespace SocketWrapperMemberChecks; return m_object.async_accept ( native_socket (peer).get (), handler); } BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code)) async_accept (Socket&, HandlerCall const& handler, boost::false_type) { #if BEAST_ASIO_HAS_FUTURE_RETURNS boost::asio::detail::async_result_init< HandlerCall, void (error_code)> init(handler); get_io_service ().post (HandlerCall (HandlerCall::Post (), init.handler, pure_virtual_error ())); return init.result.get(); #else get_io_service ().post (HandlerCall (HandlerCall::Post (), handler, pure_virtual_error ())); #endif } //-------------------------------------------------------------------------- // // basic_stream_socket // std::size_t read_some (MutableBuffers const& buffers, error_code& ec) { using namespace SocketWrapperMemberChecks; return read_some (buffers, ec, EnableIf ::value> ()); } template std::size_t read_some (MutableBufferSequence const& buffers, error_code& ec, boost::true_type) { return m_object.read_some (buffers, ec); } template std::size_t read_some (MutableBufferSequence const&, error_code& ec, boost::false_type) { pure_virtual (ec); return 0; } //-------------------------------------------------------------------------- std::size_t write_some (ConstBuffers const& buffers, error_code& ec) { using namespace SocketWrapperMemberChecks; return write_some (buffers, ec, EnableIf ::value> ()); } template std::size_t write_some (ConstBufferSequence const& buffers, error_code& ec, boost::true_type) { return m_object.write_some (buffers, ec); } template std::size_t write_some (ConstBufferSequence const&, error_code& ec, boost::false_type) { pure_virtual (ec); return 0; } //-------------------------------------------------------------------------- BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code, std::size_t)) async_read_some (MutableBuffers const& buffers, BOOST_ASIO_MOVE_ARG(HandlerCall) handler) { using namespace SocketWrapperMemberChecks; return async_read_some (buffers, BOOST_ASIO_MOVE_CAST(HandlerCall)(handler), EnableIf ::value> ()); } BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code, std::size_t)) async_read_some (MutableBuffers const& buffers, HandlerCall const& handler, boost::true_type) { return m_object.async_read_some (buffers, handler); } BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code, std::size_t)) async_read_some (MutableBuffers const&, HandlerCall const& handler, boost::false_type) { #if BEAST_ASIO_HAS_FUTURE_RETURNS boost::asio::detail::async_result_init< HandlerCall, void (error_code, std::size_t)> init(handler); get_io_service ().post (HandlerCall (HandlerCall::Post (), init.handler, pure_virtual_error (), 0)); return init.result.get(); #else get_io_service ().post (HandlerCall (HandlerCall::Post (), handler, pure_virtual_error (), 0)); #endif } //-------------------------------------------------------------------------- BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code, std::size_t)) async_write_some (ConstBuffers const& buffers, HandlerCall const& handler) { using namespace SocketWrapperMemberChecks; return async_write_some (buffers, handler, EnableIf ::value> ()); } BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code, std::size_t)) async_write_some (ConstBuffers const& buffers, HandlerCall const& handler, boost::true_type) { return m_object.async_write_some (buffers, handler); } BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code, std::size_t)) async_write_some (ConstBuffers const&, HandlerCall const& handler, boost::false_type) { #if BEAST_ASIO_HAS_FUTURE_RETURNS boost::asio::detail::async_result_init< HandlerCall, void (error_code, std::size_t)> init(handler); get_io_service ().post (HandlerCall (HandlerCall::Post (), init.handler, pure_virtual_error (), 0)); return init.result.get(); #else get_io_service ().post (HandlerCall (HandlerCall::Post (), handler, pure_virtual_error (), 0)); #endif } //-------------------------------------------------------------------------- // // ssl::stream // bool needs_handshake () { using namespace SocketWrapperMemberChecks; return has_handshake ::value || has_async_handshake ::value; } //-------------------------------------------------------------------------- error_code handshake (handshake_type type, error_code& ec) { using namespace SocketWrapperMemberChecks; return handshake (type, ec, EnableIf ::value> ()); } error_code handshake (handshake_type type, error_code& ec, boost::true_type) { return m_object.handshake (type, ec); } error_code handshake (handshake_type, error_code& ec, boost::false_type) { return pure_virtual (ec); } //-------------------------------------------------------------------------- BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code)) async_handshake (handshake_type type, HandlerCall const& handler) { using namespace SocketWrapperMemberChecks; return async_handshake (type, handler, EnableIf ::value> ()); } BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code)) async_handshake (handshake_type type, HandlerCall const& handler, boost::true_type) { return m_object.async_handshake (type, handler); } BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code)) async_handshake (handshake_type, HandlerCall const& handler, boost::false_type) { #if BEAST_ASIO_HAS_FUTURE_RETURNS boost::asio::detail::async_result_init< HandlerCall, void (error_code)> init(handler); get_io_service ().post (HandlerCall (HandlerCall::Post (), init.handler, pure_virtual_error ())); return init.result.get(); #else get_io_service ().post (HandlerCall (HandlerCall::Post (), handler, pure_virtual_error ())); #endif } //-------------------------------------------------------------------------- #if BEAST_ASIO_HAS_BUFFEREDHANDSHAKE error_code handshake (handshake_type type, ConstBuffers const& buffers, error_code& ec) { using namespace SocketWrapperMemberChecks; return handshake (type, buffers, ec, EnableIf ::value> ()); } error_code handshake (handshake_type type, ConstBuffers const& buffers, error_code& ec, boost::true_type) { return m_object.handshake (type, buffers, ec); } error_code handshake (handshake_type, ConstBuffers const&, error_code& ec, boost::false_type) { return pure_virtual (ec); } //-------------------------------------------------------------------------- BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code, std::size_t)) async_handshake (handshake_type type, ConstBuffers const& buffers, HandlerCall const& handler) { using namespace SocketWrapperMemberChecks; return async_handshake (type, buffers, handler, EnableIf ::value> ()); } BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code, std::size_t)) async_handshake (handshake_type type, ConstBuffers const& buffers, HandlerCall const& handler, boost::true_type) { return m_object.async_handshake (type, buffers, handler); } BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code, std::size_t)) async_handshake (handshake_type, ConstBuffers const&, HandlerCall const& handler, boost::false_type) { #if BEAST_ASIO_HAS_FUTURE_RETURNS boost::asio::detail::async_result_init< HandlerCall, void (error_code, std::size_t)> init(handler); get_io_service ().post (HandlerCall (HandlerCall::Post (), init.handler, pure_virtual_error (), 0)); return init.result.get(); #else get_io_service ().post (HandlerCall (HandlerCall::Post (), handler, pure_virtual_error (), 0)); #endif } #endif //-------------------------------------------------------------------------- error_code shutdown (error_code& ec) { using namespace SocketWrapperMemberChecks; return shutdown (ec, EnableIf ::value> ()); } error_code shutdown (error_code& ec, boost::true_type) { return m_object.shutdown (ec); } error_code shutdown (error_code& ec, boost::false_type) { return pure_virtual (ec); } //-------------------------------------------------------------------------- void async_shutdown (HandlerCall const& handler) { using namespace SocketWrapperMemberChecks; return async_shutdown (handler, EnableIf ::value> ()); } BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code)) async_shutdown (HandlerCall const& handler, boost::true_type) { return m_object.async_shutdown (handler); } BEAST_ASIO_INITFN_RESULT_TYPE_MEMBER(HandlerCall, void (error_code)) async_shutdown (HandlerCall const& handler, boost::false_type) { #if BEAST_ASIO_HAS_FUTURE_RETURNS boost::asio::detail::async_result_init< HandlerCall, void (error_code, std::size_t)> init(handler); get_io_service ().post (HandlerCall (HandlerCall::Post (), init.handler, pure_virtual_error ())); return init.result.get(); #else get_io_service ().post (HandlerCall (HandlerCall::Post (), handler, pure_virtual_error ())); #endif } private: Object m_object; }; #endif