2016-05-07 17:06:46 -04:00
|
|
|
//
|
2017-07-24 09:42:36 -07:00
|
|
|
// Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail dot com)
|
2016-05-07 17:06:46 -04:00
|
|
|
//
|
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
|
//
|
2017-07-20 13:40:34 -07:00
|
|
|
// Official repository: https://github.com/boostorg/beast
|
|
|
|
|
//
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2017-07-20 13:40:34 -07:00
|
|
|
#ifndef BOOST_BEAST_WEBSOCKET_TEARDOWN_HPP
|
|
|
|
|
#define BOOST_BEAST_WEBSOCKET_TEARDOWN_HPP
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2017-07-20 13:40:34 -07:00
|
|
|
#include <boost/beast/config.hpp>
|
|
|
|
|
#include <boost/beast/websocket/error.hpp>
|
2017-07-20 08:01:46 -07:00
|
|
|
#include <boost/asio/ip/tcp.hpp>
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
2017-07-20 13:40:34 -07:00
|
|
|
namespace boost {
|
2017-07-20 08:01:46 -07:00
|
|
|
namespace beast {
|
|
|
|
|
namespace websocket {
|
|
|
|
|
|
2016-10-15 21:39:24 -04:00
|
|
|
/** Tag type used to find @ref beast::websocket::teardown and @ref beast::websocket::async_teardown overloads
|
2017-02-06 20:07:03 -05:00
|
|
|
|
2016-10-15 21:39:24 -04:00
|
|
|
Overloads of @ref beast::websocket::teardown and
|
|
|
|
|
@ref beast::websocket::async_teardown for user defined types
|
|
|
|
|
must take a value of type @ref teardown_tag in the first
|
2016-06-08 11:18:22 -04:00
|
|
|
argument in order to be found by the implementation.
|
|
|
|
|
*/
|
|
|
|
|
struct teardown_tag {};
|
|
|
|
|
|
2017-07-20 08:01:46 -07:00
|
|
|
/** Tear down a connection.
|
|
|
|
|
|
|
|
|
|
This tears down a connection. The implementation will call
|
2016-05-01 12:33:35 -04:00
|
|
|
the overload of this function based on the `Socket` parameter
|
|
|
|
|
used to consruct the socket. When `Socket` is a user defined
|
2017-07-20 08:01:46 -07:00
|
|
|
type, and not a `boost::asio::ip::tcp::socket` or any
|
|
|
|
|
`boost::asio::ssl::stream`, callers are responsible for
|
|
|
|
|
providing a suitable overload of this function.
|
|
|
|
|
|
|
|
|
|
@param socket The socket to tear down.
|
|
|
|
|
|
|
|
|
|
@param ec Set to the error if any occurred.
|
|
|
|
|
*/
|
|
|
|
|
template<class Socket>
|
|
|
|
|
void
|
2016-06-08 11:18:22 -04:00
|
|
|
teardown(teardown_tag, Socket& socket, error_code& ec)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
If you are trying to use OpenSSL and this goes off, you need to
|
2017-07-20 13:40:34 -07:00
|
|
|
add an include for <boost/beast/websocket/ssl.hpp>.
|
2016-06-08 11:18:22 -04:00
|
|
|
|
|
|
|
|
If you are creating an instance of beast::websocket::stream with your
|
|
|
|
|
own user defined type, you must provide an overload of teardown with
|
|
|
|
|
the corresponding signature (including the teardown_tag).
|
|
|
|
|
*/
|
|
|
|
|
static_assert(sizeof(Socket)==-1,
|
|
|
|
|
"Unknown Socket type in teardown.");
|
2016-08-02 13:37:41 +02:00
|
|
|
}
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
|
/** Start tearing down a connection.
|
|
|
|
|
|
|
|
|
|
This begins tearing down a connection asynchronously.
|
|
|
|
|
The implementation will call the overload of this function
|
2016-05-01 12:33:35 -04:00
|
|
|
based on the `Socket` parameter used to consruct the socket.
|
2017-07-20 08:01:46 -07:00
|
|
|
When `Stream` is a user defined type, and not a
|
|
|
|
|
`boost::asio::ip::tcp::socket` or any `boost::asio::ssl::stream`,
|
|
|
|
|
callers are responsible for providing a suitable overload
|
|
|
|
|
of this function.
|
|
|
|
|
|
|
|
|
|
@param socket The socket to tear down.
|
|
|
|
|
|
|
|
|
|
@param handler The handler to be called when the request completes.
|
|
|
|
|
Copies will be made of the handler as required. The equivalent
|
|
|
|
|
function signature of the handler must be:
|
|
|
|
|
@code void handler(
|
|
|
|
|
error_code const& error // result of operation
|
2016-06-08 11:18:22 -04:00
|
|
|
);
|
|
|
|
|
@endcode
|
2017-07-20 08:01:46 -07:00
|
|
|
Regardless of whether the asynchronous operation completes
|
|
|
|
|
immediately or not, the handler will not be invoked from within
|
|
|
|
|
this function. Invocation of the handler will be performed in a
|
|
|
|
|
manner equivalent to using boost::asio::io_service::post().
|
|
|
|
|
|
|
|
|
|
*/
|
2016-05-01 12:33:35 -04:00
|
|
|
template<class Socket, class TeardownHandler>
|
2017-07-20 08:01:46 -07:00
|
|
|
void
|
2016-06-08 11:18:22 -04:00
|
|
|
async_teardown(teardown_tag, Socket& socket, TeardownHandler&& handler)
|
|
|
|
|
{
|
|
|
|
|
/*
|
|
|
|
|
If you are trying to use OpenSSL and this goes off, you need to
|
2017-07-20 13:40:34 -07:00
|
|
|
add an include for <boost/beast/websocket/ssl.hpp>.
|
2016-06-08 11:18:22 -04:00
|
|
|
|
|
|
|
|
If you are creating an instance of beast::websocket::stream with your
|
|
|
|
|
own user defined type, you must provide an overload of teardown with
|
|
|
|
|
the corresponding signature (including the teardown_tag).
|
|
|
|
|
*/
|
|
|
|
|
static_assert(sizeof(Socket)==-1,
|
|
|
|
|
"Unknown Socket type in async_teardown.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // websocket
|
|
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
namespace websocket_helpers {
|
|
|
|
|
|
|
|
|
|
// Calls to teardown and async_teardown must be made from
|
|
|
|
|
// a namespace that does not contain any overloads of these
|
|
|
|
|
// functions. The websocket_helpers namespace is defined here
|
|
|
|
|
// for that purpose.
|
|
|
|
|
|
|
|
|
|
template<class Socket>
|
|
|
|
|
inline
|
|
|
|
|
void
|
|
|
|
|
call_teardown(Socket& socket, error_code& ec)
|
|
|
|
|
{
|
|
|
|
|
using websocket::teardown;
|
|
|
|
|
teardown(websocket::teardown_tag{}, socket, ec);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
template<class Socket, class TeardownHandler>
|
|
|
|
|
inline
|
|
|
|
|
void
|
|
|
|
|
call_async_teardown(Socket& socket, TeardownHandler&& handler)
|
|
|
|
|
{
|
|
|
|
|
using websocket::async_teardown;
|
|
|
|
|
async_teardown(websocket::teardown_tag{}, socket,
|
|
|
|
|
std::forward<TeardownHandler>(handler));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // websocket_helpers
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
2016-06-08 11:18:22 -04:00
|
|
|
namespace websocket {
|
|
|
|
|
|
2017-07-20 08:01:46 -07:00
|
|
|
/** Tear down a `boost::asio::ip::tcp::socket`.
|
|
|
|
|
|
|
|
|
|
This tears down a connection. The implementation will call
|
|
|
|
|
the overload of this function based on the `Stream` parameter
|
|
|
|
|
used to consruct the socket. When `Stream` is a user defined
|
|
|
|
|
type, and not a `boost::asio::ip::tcp::socket` or any
|
|
|
|
|
`boost::asio::ssl::stream`, callers are responsible for
|
|
|
|
|
providing a suitable overload of this function.
|
|
|
|
|
|
|
|
|
|
@param socket The socket to tear down.
|
|
|
|
|
|
|
|
|
|
@param ec Set to the error if any occurred.
|
|
|
|
|
*/
|
|
|
|
|
void
|
2016-06-08 11:18:22 -04:00
|
|
|
teardown(teardown_tag,
|
|
|
|
|
boost::asio::ip::tcp::socket& socket, error_code& ec);
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
|
/** Start tearing down a `boost::asio::ip::tcp::socket`.
|
|
|
|
|
|
|
|
|
|
This begins tearing down a connection asynchronously.
|
|
|
|
|
The implementation will call the overload of this function
|
|
|
|
|
based on the `Stream` parameter used to consruct the socket.
|
|
|
|
|
When `Stream` is a user defined type, and not a
|
|
|
|
|
`boost::asio::ip::tcp::socket` or any `boost::asio::ssl::stream`,
|
|
|
|
|
callers are responsible for providing a suitable overload
|
|
|
|
|
of this function.
|
|
|
|
|
|
|
|
|
|
@param socket The socket to tear down.
|
|
|
|
|
|
|
|
|
|
@param handler The handler to be called when the request completes.
|
|
|
|
|
Copies will be made of the handler as required. The equivalent
|
|
|
|
|
function signature of the handler must be:
|
|
|
|
|
@code void handler(
|
|
|
|
|
error_code const& error // result of operation
|
2016-06-08 11:18:22 -04:00
|
|
|
);
|
|
|
|
|
@endcode
|
2017-07-20 08:01:46 -07:00
|
|
|
Regardless of whether the asynchronous operation completes
|
|
|
|
|
immediately or not, the handler will not be invoked from within
|
|
|
|
|
this function. Invocation of the handler will be performed in a
|
|
|
|
|
manner equivalent to using boost::asio::io_service::post().
|
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
template<class TeardownHandler>
|
|
|
|
|
void
|
2016-06-08 11:18:22 -04:00
|
|
|
async_teardown(teardown_tag,
|
|
|
|
|
boost::asio::ip::tcp::socket& socket, TeardownHandler&& handler);
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
|
} // websocket
|
|
|
|
|
} // beast
|
2017-07-20 13:40:34 -07:00
|
|
|
} // boost
|
2017-07-20 08:01:46 -07:00
|
|
|
|
2017-07-20 13:40:34 -07:00
|
|
|
#include <boost/beast/websocket/impl/teardown.ipp>
|
2017-07-20 08:01:46 -07:00
|
|
|
|
|
|
|
|
#endif
|