123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569 |
- //
- // basic_socket_streambuf.hpp
- // ~~~~~~~~~~~~~~~~~~~~~~~~~~
- //
- // Copyright (c) 2003-2015 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)
- //
- #ifndef BOOST_ASIO_BASIC_SOCKET_STREAMBUF_HPP
- #define BOOST_ASIO_BASIC_SOCKET_STREAMBUF_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
- #include <boost/asio/detail/config.hpp>
- #if !defined(BOOST_ASIO_NO_IOSTREAM)
- #include <streambuf>
- #include <boost/asio/basic_socket.hpp>
- #include <boost/asio/deadline_timer_service.hpp>
- #include <boost/asio/detail/array.hpp>
- #include <boost/asio/detail/throw_error.hpp>
- #include <boost/asio/io_service.hpp>
- #include <boost/asio/stream_socket_service.hpp>
- #if defined(BOOST_ASIO_HAS_BOOST_DATE_TIME)
- # include <boost/asio/deadline_timer.hpp>
- #else
- # include <boost/asio/steady_timer.hpp>
- #endif
- #if !defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
- # include <boost/asio/detail/variadic_templates.hpp>
- // A macro that should expand to:
- // template <typename T1, ..., typename Tn>
- // basic_socket_streambuf<Protocol, StreamSocketService,
- // Time, TimeTraits, TimerService>* connect(
- // T1 x1, ..., Tn xn)
- // {
- // init_buffers();
- // this->basic_socket<Protocol, StreamSocketService>::close(ec_);
- // typedef typename Protocol::resolver resolver_type;
- // typedef typename resolver_type::query resolver_query;
- // resolver_query query(x1, ..., xn);
- // resolve_and_connect(query);
- // return !ec_ ? this : 0;
- // }
- // This macro should only persist within this file.
- # define BOOST_ASIO_PRIVATE_CONNECT_DEF(n) \
- template <BOOST_ASIO_VARIADIC_TPARAMS(n)> \
- basic_socket_streambuf<Protocol, StreamSocketService, \
- Time, TimeTraits, TimerService>* connect(BOOST_ASIO_VARIADIC_PARAMS(n)) \
- { \
- init_buffers(); \
- this->basic_socket<Protocol, StreamSocketService>::close(ec_); \
- typedef typename Protocol::resolver resolver_type; \
- typedef typename resolver_type::query resolver_query; \
- resolver_query query(BOOST_ASIO_VARIADIC_ARGS(n)); \
- resolve_and_connect(query); \
- return !ec_ ? this : 0; \
- } \
- /**/
- #endif // !defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
- #include <boost/asio/detail/push_options.hpp>
- namespace boost {
- namespace asio {
- namespace detail {
- // A separate base class is used to ensure that the io_service is initialised
- // prior to the basic_socket_streambuf's basic_socket base class.
- class socket_streambuf_base
- {
- protected:
- io_service io_service_;
- };
- } // namespace detail
- /// Iostream streambuf for a socket.
- template <typename Protocol,
- typename StreamSocketService = stream_socket_service<Protocol>,
- #if defined(BOOST_ASIO_HAS_BOOST_DATE_TIME) \
- || defined(GENERATING_DOCUMENTATION)
- typename Time = boost::posix_time::ptime,
- typename TimeTraits = boost::asio::time_traits<Time>,
- typename TimerService = deadline_timer_service<Time, TimeTraits> >
- #else
- typename Time = steady_timer::clock_type,
- typename TimeTraits = steady_timer::traits_type,
- typename TimerService = steady_timer::service_type>
- #endif
- class basic_socket_streambuf
- : public std::streambuf,
- private detail::socket_streambuf_base,
- public basic_socket<Protocol, StreamSocketService>
- {
- private:
- // These typedefs are intended keep this class's implementation independent
- // of whether it's using Boost.DateTime, Boost.Chrono or std::chrono.
- #if defined(BOOST_ASIO_HAS_BOOST_DATE_TIME)
- typedef TimeTraits traits_helper;
- #else
- typedef detail::chrono_time_traits<Time, TimeTraits> traits_helper;
- #endif
- public:
- /// The endpoint type.
- typedef typename Protocol::endpoint endpoint_type;
- #if defined(GENERATING_DOCUMENTATION)
- /// The time type.
- typedef typename TimeTraits::time_type time_type;
- /// The duration type.
- typedef typename TimeTraits::duration_type duration_type;
- #else
- typedef typename traits_helper::time_type time_type;
- typedef typename traits_helper::duration_type duration_type;
- #endif
- /// Construct a basic_socket_streambuf without establishing a connection.
- basic_socket_streambuf()
- : basic_socket<Protocol, StreamSocketService>(
- this->detail::socket_streambuf_base::io_service_),
- unbuffered_(false),
- timer_service_(0),
- timer_state_(no_timer)
- {
- init_buffers();
- }
- /// Destructor flushes buffered data.
- virtual ~basic_socket_streambuf()
- {
- if (pptr() != pbase())
- overflow(traits_type::eof());
- destroy_timer();
- }
- /// Establish a connection.
- /**
- * This function establishes a connection to the specified endpoint.
- *
- * @return \c this if a connection was successfully established, a null
- * pointer otherwise.
- */
- basic_socket_streambuf<Protocol, StreamSocketService,
- Time, TimeTraits, TimerService>* connect(
- const endpoint_type& endpoint)
- {
- init_buffers();
- this->basic_socket<Protocol, StreamSocketService>::close(ec_);
- if (timer_state_ == timer_has_expired)
- {
- ec_ = boost::asio::error::operation_aborted;
- return 0;
- }
- io_handler handler = { this };
- this->basic_socket<Protocol, StreamSocketService>::async_connect(
- endpoint, handler);
- ec_ = boost::asio::error::would_block;
- this->get_service().get_io_service().reset();
- do this->get_service().get_io_service().run_one();
- while (ec_ == boost::asio::error::would_block);
- return !ec_ ? this : 0;
- }
- #if defined(GENERATING_DOCUMENTATION)
- /// Establish a connection.
- /**
- * This function automatically establishes a connection based on the supplied
- * resolver query parameters. The arguments are used to construct a resolver
- * query object.
- *
- * @return \c this if a connection was successfully established, a null
- * pointer otherwise.
- */
- template <typename T1, ..., typename TN>
- basic_socket_streambuf<Protocol, StreamSocketService>* connect(
- T1 t1, ..., TN tn);
- #elif defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
- template <typename... T>
- basic_socket_streambuf<Protocol, StreamSocketService,
- Time, TimeTraits, TimerService>* connect(T... x)
- {
- init_buffers();
- this->basic_socket<Protocol, StreamSocketService>::close(ec_);
- typedef typename Protocol::resolver resolver_type;
- typedef typename resolver_type::query resolver_query;
- resolver_query query(x...);
- resolve_and_connect(query);
- return !ec_ ? this : 0;
- }
- #else
- BOOST_ASIO_VARIADIC_GENERATE(BOOST_ASIO_PRIVATE_CONNECT_DEF)
- #endif
- /// Close the connection.
- /**
- * @return \c this if a connection was successfully established, a null
- * pointer otherwise.
- */
- basic_socket_streambuf<Protocol, StreamSocketService,
- Time, TimeTraits, TimerService>* close()
- {
- sync();
- this->basic_socket<Protocol, StreamSocketService>::close(ec_);
- if (!ec_)
- init_buffers();
- return !ec_ ? this : 0;
- }
- /// Get the last error associated with the stream buffer.
- /**
- * @return An \c error_code corresponding to the last error from the stream
- * buffer.
- */
- const boost::system::error_code& puberror() const
- {
- return error();
- }
- /// Get the stream buffer's expiry time as an absolute time.
- /**
- * @return An absolute time value representing the stream buffer's expiry
- * time.
- */
- time_type expires_at() const
- {
- return timer_service_
- ? timer_service_->expires_at(timer_implementation_)
- : time_type();
- }
- /// Set the stream buffer's expiry time as an absolute time.
- /**
- * This function sets the expiry time associated with the stream. Stream
- * operations performed after this time (where the operations cannot be
- * completed using the internal buffers) will fail with the error
- * boost::asio::error::operation_aborted.
- *
- * @param expiry_time The expiry time to be used for the stream.
- */
- void expires_at(const time_type& expiry_time)
- {
- construct_timer();
- boost::system::error_code ec;
- timer_service_->expires_at(timer_implementation_, expiry_time, ec);
- boost::asio::detail::throw_error(ec, "expires_at");
- start_timer();
- }
- /// Get the stream buffer's expiry time relative to now.
- /**
- * @return A relative time value representing the stream buffer's expiry time.
- */
- duration_type expires_from_now() const
- {
- return traits_helper::subtract(expires_at(), traits_helper::now());
- }
- /// Set the stream buffer's expiry time relative to now.
- /**
- * This function sets the expiry time associated with the stream. Stream
- * operations performed after this time (where the operations cannot be
- * completed using the internal buffers) will fail with the error
- * boost::asio::error::operation_aborted.
- *
- * @param expiry_time The expiry time to be used for the timer.
- */
- void expires_from_now(const duration_type& expiry_time)
- {
- construct_timer();
- boost::system::error_code ec;
- timer_service_->expires_from_now(timer_implementation_, expiry_time, ec);
- boost::asio::detail::throw_error(ec, "expires_from_now");
- start_timer();
- }
- protected:
- int_type underflow()
- {
- if (gptr() == egptr())
- {
- if (timer_state_ == timer_has_expired)
- {
- ec_ = boost::asio::error::operation_aborted;
- return traits_type::eof();
- }
- io_handler handler = { this };
- this->get_service().async_receive(this->get_implementation(),
- boost::asio::buffer(boost::asio::buffer(get_buffer_) + putback_max),
- 0, handler);
- ec_ = boost::asio::error::would_block;
- this->get_service().get_io_service().reset();
- do this->get_service().get_io_service().run_one();
- while (ec_ == boost::asio::error::would_block);
- if (ec_)
- return traits_type::eof();
- setg(&get_buffer_[0], &get_buffer_[0] + putback_max,
- &get_buffer_[0] + putback_max + bytes_transferred_);
- return traits_type::to_int_type(*gptr());
- }
- else
- {
- return traits_type::eof();
- }
- }
- int_type overflow(int_type c)
- {
- if (unbuffered_)
- {
- if (traits_type::eq_int_type(c, traits_type::eof()))
- {
- // Nothing to do.
- return traits_type::not_eof(c);
- }
- else
- {
- if (timer_state_ == timer_has_expired)
- {
- ec_ = boost::asio::error::operation_aborted;
- return traits_type::eof();
- }
- // Send the single character immediately.
- char_type ch = traits_type::to_char_type(c);
- io_handler handler = { this };
- this->get_service().async_send(this->get_implementation(),
- boost::asio::buffer(&ch, sizeof(char_type)), 0, handler);
- ec_ = boost::asio::error::would_block;
- this->get_service().get_io_service().reset();
- do this->get_service().get_io_service().run_one();
- while (ec_ == boost::asio::error::would_block);
- if (ec_)
- return traits_type::eof();
- return c;
- }
- }
- else
- {
- // Send all data in the output buffer.
- boost::asio::const_buffer buffer =
- boost::asio::buffer(pbase(), pptr() - pbase());
- while (boost::asio::buffer_size(buffer) > 0)
- {
- if (timer_state_ == timer_has_expired)
- {
- ec_ = boost::asio::error::operation_aborted;
- return traits_type::eof();
- }
- io_handler handler = { this };
- this->get_service().async_send(this->get_implementation(),
- boost::asio::buffer(buffer), 0, handler);
- ec_ = boost::asio::error::would_block;
- this->get_service().get_io_service().reset();
- do this->get_service().get_io_service().run_one();
- while (ec_ == boost::asio::error::would_block);
- if (ec_)
- return traits_type::eof();
- buffer = buffer + bytes_transferred_;
- }
- setp(&put_buffer_[0], &put_buffer_[0] + put_buffer_.size());
- // If the new character is eof then our work here is done.
- if (traits_type::eq_int_type(c, traits_type::eof()))
- return traits_type::not_eof(c);
- // Add the new character to the output buffer.
- *pptr() = traits_type::to_char_type(c);
- pbump(1);
- return c;
- }
- }
- int sync()
- {
- return overflow(traits_type::eof());
- }
- std::streambuf* setbuf(char_type* s, std::streamsize n)
- {
- if (pptr() == pbase() && s == 0 && n == 0)
- {
- unbuffered_ = true;
- setp(0, 0);
- return this;
- }
- return 0;
- }
- /// Get the last error associated with the stream buffer.
- /**
- * @return An \c error_code corresponding to the last error from the stream
- * buffer.
- */
- virtual const boost::system::error_code& error() const
- {
- return ec_;
- }
- private:
- void init_buffers()
- {
- setg(&get_buffer_[0],
- &get_buffer_[0] + putback_max,
- &get_buffer_[0] + putback_max);
- if (unbuffered_)
- setp(0, 0);
- else
- setp(&put_buffer_[0], &put_buffer_[0] + put_buffer_.size());
- }
- template <typename ResolverQuery>
- void resolve_and_connect(const ResolverQuery& query)
- {
- typedef typename Protocol::resolver resolver_type;
- typedef typename resolver_type::iterator iterator_type;
- resolver_type resolver(detail::socket_streambuf_base::io_service_);
- iterator_type i = resolver.resolve(query, ec_);
- if (!ec_)
- {
- iterator_type end;
- ec_ = boost::asio::error::host_not_found;
- while (ec_ && i != end)
- {
- this->basic_socket<Protocol, StreamSocketService>::close(ec_);
- if (timer_state_ == timer_has_expired)
- {
- ec_ = boost::asio::error::operation_aborted;
- return;
- }
- io_handler handler = { this };
- this->basic_socket<Protocol, StreamSocketService>::async_connect(
- *i, handler);
- ec_ = boost::asio::error::would_block;
- this->get_service().get_io_service().reset();
- do this->get_service().get_io_service().run_one();
- while (ec_ == boost::asio::error::would_block);
- ++i;
- }
- }
- }
- struct io_handler;
- friend struct io_handler;
- struct io_handler
- {
- basic_socket_streambuf* this_;
- void operator()(const boost::system::error_code& ec,
- std::size_t bytes_transferred = 0)
- {
- this_->ec_ = ec;
- this_->bytes_transferred_ = bytes_transferred;
- }
- };
- struct timer_handler;
- friend struct timer_handler;
- struct timer_handler
- {
- basic_socket_streambuf* this_;
- void operator()(const boost::system::error_code&)
- {
- time_type now = traits_helper::now();
- time_type expiry_time = this_->timer_service_->expires_at(
- this_->timer_implementation_);
- if (traits_helper::less_than(now, expiry_time))
- {
- this_->timer_state_ = timer_is_pending;
- this_->timer_service_->async_wait(this_->timer_implementation_, *this);
- }
- else
- {
- this_->timer_state_ = timer_has_expired;
- boost::system::error_code ec;
- this_->basic_socket<Protocol, StreamSocketService>::close(ec);
- }
- }
- };
- void construct_timer()
- {
- if (timer_service_ == 0)
- {
- TimerService& timer_service = use_service<TimerService>(
- detail::socket_streambuf_base::io_service_);
- timer_service.construct(timer_implementation_);
- timer_service_ = &timer_service;
- }
- }
- void destroy_timer()
- {
- if (timer_service_)
- timer_service_->destroy(timer_implementation_);
- }
- void start_timer()
- {
- if (timer_state_ != timer_is_pending)
- {
- timer_handler handler = { this };
- handler(boost::system::error_code());
- }
- }
- enum { putback_max = 8 };
- enum { buffer_size = 512 };
- boost::asio::detail::array<char, buffer_size> get_buffer_;
- boost::asio::detail::array<char, buffer_size> put_buffer_;
- bool unbuffered_;
- boost::system::error_code ec_;
- std::size_t bytes_transferred_;
- TimerService* timer_service_;
- typename TimerService::implementation_type timer_implementation_;
- enum state { no_timer, timer_is_pending, timer_has_expired } timer_state_;
- };
- } // namespace asio
- } // namespace boost
- #include <boost/asio/detail/pop_options.hpp>
- #if !defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
- # undef BOOST_ASIO_PRIVATE_CONNECT_DEF
- #endif // !defined(BOOST_ASIO_HAS_VARIADIC_TEMPLATES)
- #endif // !defined(BOOST_ASIO_NO_IOSTREAM)
- #endif // BOOST_ASIO_BASIC_SOCKET_STREAMBUF_HPP
|