mirror of
https://github.com/boostorg/asio.git
synced 2026-01-28 18:52:09 +00:00
........
r48414 | chris_kohlhoff | 2008-08-28 22:03:46 +1000 (Thu, 28 Aug 2008) | 2 lines
Fix uninitialised event handles in asio::detail::thread in external mode.
........
r48415 | chris_kohlhoff | 2008-08-28 22:04:21 +1000 (Thu, 28 Aug 2008) | 2 lines
Fix duplicate variable warning.
........
r48416 | chris_kohlhoff | 2008-08-28 22:06:42 +1000 (Thu, 28 Aug 2008) | 3 lines
Fix duplicate variable warning. Use get_io_service() rather than
deprecated io_service() function.
........
r48417 | chris_kohlhoff | 2008-08-28 22:09:09 +1000 (Thu, 28 Aug 2008) | 2 lines
Use get_io_service() rather than deprecated io_service() function.
........
r48418 | chris_kohlhoff | 2008-08-28 22:11:47 +1000 (Thu, 28 Aug 2008) | 9 lines
Change the CompletionCondition concept so that:
- It is now evaluated before the first call to the underlying
*_some() operation, as well as after every operation.
- The return value is a number of bytes, which indicates the maximum
length to be transferred on the subsequent *_some() operation. If
the return value is 0 then the composed operation completes.
Add missing unit tests for read_at and write_at.
........
r48490 | chris_kohlhoff | 2008-08-31 18:58:49 +1000 (Sun, 31 Aug 2008) | 2 lines
Don't build serial port test code when serial ports are not available.
........
r48491 | chris_kohlhoff | 2008-08-31 19:01:59 +1000 (Sun, 31 Aug 2008) | 3 lines
Refactor reactive socket implementation so that synchronous read, write,
accept and connect operations don't modify data associated with the socket.
........
r48495 | chris_kohlhoff | 2008-08-31 21:38:52 +1000 (Sun, 31 Aug 2008) | 2 lines
Add class to allow use of arbitrary Windows overlapped I/O operations.
........
r48524 | chris_kohlhoff | 2008-09-02 09:04:35 +1000 (Tue, 02 Sep 2008) | 3 lines
Add support for using an eventfd descriptor on linux to interrupt a blocked
epoll/select reactor.
........
r48525 | chris_kohlhoff | 2008-09-02 09:05:05 +1000 (Tue, 02 Sep 2008) | 3 lines
Use templates to handle iovec structures that have an iov_base member of
type char*.
........
r48526 | chris_kohlhoff | 2008-09-02 09:07:29 +1000 (Tue, 02 Sep 2008) | 2 lines
Fix error in comment.
........
r48527 | chris_kohlhoff | 2008-09-02 18:46:46 +1000 (Tue, 02 Sep 2008) | 2 lines
Fix to compile with MSVC 7.1.
........
r48535 | chris_kohlhoff | 2008-09-02 21:34:18 +1000 (Tue, 02 Sep 2008) | 2 lines
Add const overloads of the lowest_layer member functions.
........
r48558 | chris_kohlhoff | 2008-09-03 18:56:43 +1000 (Wed, 03 Sep 2008) | 2 lines
Oops, changeset 48535 accidentally reverted 48527's fix.
........
r48559 | chris_kohlhoff | 2008-09-03 18:57:48 +1000 (Wed, 03 Sep 2008) | 2 lines
Add a workaround for a possible gcc 4.3 optimiser bug.
........
r48560 | chris_kohlhoff | 2008-09-03 19:06:10 +1000 (Wed, 03 Sep 2008) | 2 lines
Explicitly specify return type with bind to keep some compilers happy.
........
r48561 | chris_kohlhoff | 2008-09-03 19:08:04 +1000 (Wed, 03 Sep 2008) | 2 lines
Update completion_condition documentation to match new signature.
........
r48562 | chris_kohlhoff | 2008-09-03 21:36:43 +1000 (Wed, 03 Sep 2008) | 2 lines
Add windows/transmit_file example.
........
r48563 | chris_kohlhoff | 2008-09-03 21:46:02 +1000 (Wed, 03 Sep 2008) | 2 lines
Document BOOST_ASIO_DISABLE_EVENTFD macro.
........
r48564 | chris_kohlhoff | 2008-09-03 21:54:06 +1000 (Wed, 03 Sep 2008) | 2 lines
Add windows::overlapped_ptr to the reference index page.
........
r48565 | chris_kohlhoff | 2008-09-03 22:28:07 +1000 (Wed, 03 Sep 2008) | 2 lines
Regenerate documentation.
........
r48683 | chris_kohlhoff | 2008-09-09 22:59:43 +1000 (Tue, 09 Sep 2008) | 2 lines
Add windows example directory.
........
r48684 | chris_kohlhoff | 2008-09-09 23:00:07 +1000 (Tue, 09 Sep 2008) | 2 lines
Remove generated tags file.
........
r48685 | chris_kohlhoff | 2008-09-09 23:01:16 +1000 (Tue, 09 Sep 2008) | 2 lines
Version bump.
........
r48686 | chris_kohlhoff | 2008-09-09 23:02:22 +1000 (Tue, 09 Sep 2008) | 2 lines
Handle SSL library errors.
........
r48715 | chris_kohlhoff | 2008-09-11 10:05:57 +1000 (Thu, 11 Sep 2008) | 2 lines
Clarify which resolve functions perform forward or reverse resolution.
........
[SVN r49194]
242 lines
6.1 KiB
C++
242 lines
6.1 KiB
C++
//
|
|
// third_party_lib.cpp
|
|
// ~~~~~~~~~~~~~~~~~~~
|
|
//
|
|
// Copyright (c) 2003-2008 Christopher M. Kohlhoff (chris at kohlhoff dot com)
|
|
//
|
|
// 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)
|
|
//
|
|
|
|
#include <boost/asio.hpp>
|
|
#include <boost/array.hpp>
|
|
#include <boost/bind.hpp>
|
|
#include <boost/shared_ptr.hpp>
|
|
#include <boost/enable_shared_from_this.hpp>
|
|
|
|
using boost::asio::ip::tcp;
|
|
|
|
namespace third_party_lib {
|
|
|
|
// Simulation of a third party library that wants to perform read and write
|
|
// operations directly on a socket. It needs to be polled to determine whether
|
|
// it requires a read or write operation, and notified when the socket is ready
|
|
// for reading or writing.
|
|
class session
|
|
{
|
|
public:
|
|
session(tcp::socket& socket)
|
|
: socket_(socket),
|
|
state_(reading)
|
|
{
|
|
}
|
|
|
|
// Returns true if the third party library wants to be notified when the
|
|
// socket is ready for reading.
|
|
bool want_read() const
|
|
{
|
|
return state_ == reading;
|
|
}
|
|
|
|
// Notify that third party library that it should perform its read operation.
|
|
void do_read(boost::system::error_code& ec)
|
|
{
|
|
if (std::size_t len = socket_.read_some(boost::asio::buffer(data_), ec))
|
|
{
|
|
write_buffer_ = boost::asio::buffer(data_, len);
|
|
state_ = writing;
|
|
}
|
|
}
|
|
|
|
// Returns true if the third party library wants to be notified when the
|
|
// socket is ready for writing.
|
|
bool want_write() const
|
|
{
|
|
return state_ == writing;
|
|
}
|
|
|
|
// Notify that third party library that it should perform its write operation.
|
|
void do_write(boost::system::error_code& ec)
|
|
{
|
|
if (std::size_t len = socket_.write_some(
|
|
boost::asio::buffer(write_buffer_), ec))
|
|
{
|
|
write_buffer_ = write_buffer_ + len;
|
|
state_ = boost::asio::buffer_size(write_buffer_) > 0 ? writing : reading;
|
|
}
|
|
}
|
|
|
|
private:
|
|
tcp::socket& socket_;
|
|
enum { reading, writing } state_;
|
|
boost::array<char, 128> data_;
|
|
boost::asio::const_buffer write_buffer_;
|
|
};
|
|
|
|
} // namespace third_party_lib
|
|
|
|
// The glue between asio's sockets and the third party library.
|
|
class connection
|
|
: public boost::enable_shared_from_this<connection>
|
|
{
|
|
public:
|
|
typedef boost::shared_ptr<connection> pointer;
|
|
|
|
static pointer create(boost::asio::io_service& io_service)
|
|
{
|
|
return pointer(new connection(io_service));
|
|
}
|
|
|
|
tcp::socket& socket()
|
|
{
|
|
return socket_;
|
|
}
|
|
|
|
void start()
|
|
{
|
|
// Put the socket into non-blocking mode.
|
|
tcp::socket::non_blocking_io non_blocking_io(true);
|
|
socket_.io_control(non_blocking_io);
|
|
|
|
start_operations();
|
|
}
|
|
|
|
private:
|
|
connection(boost::asio::io_service& io_service)
|
|
: socket_(io_service),
|
|
session_impl_(socket_),
|
|
read_in_progress_(false),
|
|
write_in_progress_(false)
|
|
{
|
|
}
|
|
|
|
void start_operations()
|
|
{
|
|
// Start a read operation if the third party library wants one.
|
|
if (session_impl_.want_read() && !read_in_progress_)
|
|
{
|
|
read_in_progress_ = true;
|
|
socket_.async_read_some(
|
|
boost::asio::null_buffers(),
|
|
boost::bind(&connection::handle_read,
|
|
shared_from_this(),
|
|
boost::asio::placeholders::error));
|
|
}
|
|
|
|
// Start a write operation if the third party library wants one.
|
|
if (session_impl_.want_write() && !write_in_progress_)
|
|
{
|
|
write_in_progress_ = true;
|
|
socket_.async_write_some(
|
|
boost::asio::null_buffers(),
|
|
boost::bind(&connection::handle_write,
|
|
shared_from_this(),
|
|
boost::asio::placeholders::error));
|
|
}
|
|
}
|
|
|
|
void handle_read(boost::system::error_code ec)
|
|
{
|
|
read_in_progress_ = false;
|
|
|
|
// Notify third party library that it can perform a read.
|
|
if (!ec)
|
|
session_impl_.do_read(ec);
|
|
|
|
// The third party library successfully performed a read on the socket.
|
|
// Start new read or write operations based on what it now wants.
|
|
if (!ec || ec == boost::asio::error::would_block)
|
|
start_operations();
|
|
|
|
// Otherwise, an error occurred. Closing the socket cancels any outstanding
|
|
// asynchronous read or write operations. The connection object will be
|
|
// destroyed automatically once those outstanding operations complete.
|
|
else
|
|
socket_.close();
|
|
}
|
|
|
|
void handle_write(boost::system::error_code ec)
|
|
{
|
|
write_in_progress_ = false;
|
|
|
|
// Notify third party library that it can perform a write.
|
|
if (!ec)
|
|
session_impl_.do_write(ec);
|
|
|
|
// The third party library successfully performed a write on the socket.
|
|
// Start new read or write operations based on what it now wants.
|
|
if (!ec || ec == boost::asio::error::would_block)
|
|
start_operations();
|
|
|
|
// Otherwise, an error occurred. Closing the socket cancels any outstanding
|
|
// asynchronous read or write operations. The connection object will be
|
|
// destroyed automatically once those outstanding operations complete.
|
|
else
|
|
socket_.close();
|
|
}
|
|
|
|
private:
|
|
tcp::socket socket_;
|
|
third_party_lib::session session_impl_;
|
|
bool read_in_progress_;
|
|
bool write_in_progress_;
|
|
};
|
|
|
|
class server
|
|
{
|
|
public:
|
|
server(boost::asio::io_service& io_service, unsigned short port)
|
|
: acceptor_(io_service, tcp::endpoint(tcp::v4(), port))
|
|
{
|
|
start_accept();
|
|
}
|
|
|
|
private:
|
|
void start_accept()
|
|
{
|
|
connection::pointer new_connection =
|
|
connection::create(acceptor_.io_service());
|
|
|
|
acceptor_.async_accept(new_connection->socket(),
|
|
boost::bind(&server::handle_accept, this, new_connection,
|
|
boost::asio::placeholders::error));
|
|
}
|
|
|
|
void handle_accept(connection::pointer new_connection,
|
|
const boost::system::error_code& error)
|
|
{
|
|
if (!error)
|
|
{
|
|
new_connection->start();
|
|
start_accept();
|
|
}
|
|
}
|
|
|
|
tcp::acceptor acceptor_;
|
|
};
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
try
|
|
{
|
|
if (argc != 2)
|
|
{
|
|
std::cerr << "Usage: third_party_lib <port>\n";
|
|
return 1;
|
|
}
|
|
|
|
boost::asio::io_service io_service;
|
|
|
|
using namespace std; // For atoi.
|
|
server s(io_service, atoi(argv[1]));
|
|
|
|
io_service.run();
|
|
}
|
|
catch (std::exception& e)
|
|
{
|
|
std::cerr << "Exception: " << e.what() << "\n";
|
|
}
|
|
|
|
return 0;
|
|
}
|