Add SocketWrapperStrand

This commit is contained in:
Vinnie Falco
2013-08-21 18:01:50 -07:00
parent 9fcab37445
commit 34527fbbe4
4 changed files with 77 additions and 4 deletions

View File

@@ -89,6 +89,7 @@
<ClInclude Include="..\..\modules\beast_asio\sockets\beast_SocketBase.h" />
<ClInclude Include="..\..\modules\beast_asio\sockets\beast_SocketWrapper.h" />
<ClInclude Include="..\..\modules\beast_asio\sockets\beast_SslContext.h" />
<ClInclude Include="..\..\modules\beast_asio\sockets\beast_StrandSocketWrapper.h" />
<ClInclude Include="..\..\modules\beast_asio\system\beast_BoostIncludes.h" />
<ClInclude Include="..\..\modules\beast_asio\system\beast_OpenSSLIncludes.h" />
<ClInclude Include="..\..\modules\beast_asio\tests\beast_TestPeer.h" />

View File

@@ -908,6 +908,9 @@
<ClInclude Include="..\..\modules\beast_core\memory\beast_PagedFreeStore.h">
<Filter>beast_core\memory</Filter>
</ClInclude>
<ClInclude Include="..\..\modules\beast_asio\sockets\beast_StrandSocketWrapper.h">
<Filter>beast_asio\sockets</Filter>
</ClInclude>
</ItemGroup>
<ItemGroup>
<ClCompile Include="..\..\modules\beast_core\beast_core.cpp">

View File

@@ -74,13 +74,14 @@ namespace beast
#include "basics/beast_FixedInputBuffer.h"
#include "basics/beast_PeerRole.h"
#include "sockets/beast_SocketBase.h"
#include "sockets/beast_Socket.h"
#include "sockets/beast_SocketWrapper.h"
#include "sockets/beast_SocketBase.h"
#include "sockets/beast_Socket.h"
#include "sockets/beast_SocketWrapper.h"
#include "sockets/beast_StrandSocketWrapper.h"
#include "sockets/beast_SslContext.h"
#include "handshake/beast_InputParser.h"
#include "handshake/beast_HandshakeDetectLogic.h"
#include "handshake/beast_HandshakeDetectLogic.h"
#include "handshake/beast_HandshakeDetectLogicPROXY.h"
#include "handshake/beast_HandshakeDetectLogicSSL2.h"
#include "handshake/beast_HandshakeDetectLogicSSL3.h"

View File

@@ -0,0 +1,68 @@
//------------------------------------------------------------------------------
/*
This file is part of Beast: https://github.com/vinniefalco/Beast
Copyright 2013, Vinnie Falco <vinnie.falco@gmail.com>
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_STRANDSOCKETWRAPPER_H_INCLUDED
#define BEAST_STRANDSOCKETWRAPPER_H_INCLUDED
/** Wraps the async I/O of a SocketWrapper with an io_service::strand
To use this in a chain of wrappers, customize the Wrapper type.
*/
template <typename Object, typename Base = SocketWrapper <Object> >
class StrandSocketWrapper
: public Base
{
public:
template <typename Arg>
StrandSocketWrapper (Arg& arg)
: Base (arg)
, m_strand (this->get_io_service ())
{
}
template <typename Arg1, typename Arg2>
StrandSocketWrapper (Arg1& arg1, Arg2& arg2)
: Base (arg1, arg2)
, m_strand (this->get_io_service ())
{
}
//--------------------------------------------------------------------------
//
// basic_stream_socket
//
void async_read_some (MutableBuffers const& buffers, SharedHandlerPtr handler)
{
this->SocketWrapper <Object>::async_read_some (buffers,
newReadHandler (m_strand.wrap (handler)));
}
template <typename WriteHandler>
void async_write_some (ConstBuffers const& buffers,
BOOST_ASIO_MOVE_ARG(WriteHandler) handler)
{
this->SocketWrapper <Object>::async_write_some (buffers,
newWriteHandler (m_strand.wrap (handler)));
}
protected:
boost::asio::io_service::strand m_strand;
};
#endif