123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511 |
- //
- // impl/buffered_write_stream.hpp
- // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- //
- // Copyright (c) 2003-2021 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_IMPL_BUFFERED_WRITE_STREAM_HPP
- #define BOOST_ASIO_IMPL_BUFFERED_WRITE_STREAM_HPP
- #if defined(_MSC_VER) && (_MSC_VER >= 1200)
- # pragma once
- #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
- #include <boost/asio/associated_allocator.hpp>
- #include <boost/asio/associated_executor.hpp>
- #include <boost/asio/detail/handler_alloc_helpers.hpp>
- #include <boost/asio/detail/handler_cont_helpers.hpp>
- #include <boost/asio/detail/handler_invoke_helpers.hpp>
- #include <boost/asio/detail/handler_type_requirements.hpp>
- #include <boost/asio/detail/non_const_lvalue.hpp>
- #include <boost/asio/detail/push_options.hpp>
- namespace boost {
- namespace asio {
- template <typename Stream>
- std::size_t buffered_write_stream<Stream>::flush()
- {
- std::size_t bytes_written = write(next_layer_,
- buffer(storage_.data(), storage_.size()));
- storage_.consume(bytes_written);
- return bytes_written;
- }
- template <typename Stream>
- std::size_t buffered_write_stream<Stream>::flush(boost::system::error_code& ec)
- {
- std::size_t bytes_written = write(next_layer_,
- buffer(storage_.data(), storage_.size()),
- transfer_all(), ec);
- storage_.consume(bytes_written);
- return bytes_written;
- }
- namespace detail
- {
- template <typename WriteHandler>
- class buffered_flush_handler
- {
- public:
- buffered_flush_handler(detail::buffered_stream_storage& storage,
- WriteHandler& handler)
- : storage_(storage),
- handler_(BOOST_ASIO_MOVE_CAST(WriteHandler)(handler))
- {
- }
- #if defined(BOOST_ASIO_HAS_MOVE)
- buffered_flush_handler(const buffered_flush_handler& other)
- : storage_(other.storage_),
- handler_(other.handler_)
- {
- }
- buffered_flush_handler(buffered_flush_handler&& other)
- : storage_(other.storage_),
- handler_(BOOST_ASIO_MOVE_CAST(WriteHandler)(other.handler_))
- {
- }
- #endif // defined(BOOST_ASIO_HAS_MOVE)
- void operator()(const boost::system::error_code& ec,
- const std::size_t bytes_written)
- {
- storage_.consume(bytes_written);
- handler_(ec, bytes_written);
- }
- //private:
- detail::buffered_stream_storage& storage_;
- WriteHandler handler_;
- };
- template <typename WriteHandler>
- inline asio_handler_allocate_is_deprecated
- asio_handler_allocate(std::size_t size,
- buffered_flush_handler<WriteHandler>* this_handler)
- {
- #if defined(BOOST_ASIO_NO_DEPRECATED)
- boost_asio_handler_alloc_helpers::allocate(size, this_handler->handler_);
- return asio_handler_allocate_is_no_longer_used();
- #else // defined(BOOST_ASIO_NO_DEPRECATED)
- return boost_asio_handler_alloc_helpers::allocate(
- size, this_handler->handler_);
- #endif // defined(BOOST_ASIO_NO_DEPRECATED)
- }
- template <typename WriteHandler>
- inline asio_handler_deallocate_is_deprecated
- asio_handler_deallocate(void* pointer, std::size_t size,
- buffered_flush_handler<WriteHandler>* this_handler)
- {
- boost_asio_handler_alloc_helpers::deallocate(
- pointer, size, this_handler->handler_);
- #if defined(BOOST_ASIO_NO_DEPRECATED)
- return asio_handler_deallocate_is_no_longer_used();
- #endif // defined(BOOST_ASIO_NO_DEPRECATED)
- }
- template <typename WriteHandler>
- inline bool asio_handler_is_continuation(
- buffered_flush_handler<WriteHandler>* this_handler)
- {
- return boost_asio_handler_cont_helpers::is_continuation(
- this_handler->handler_);
- }
- template <typename Function, typename WriteHandler>
- inline asio_handler_invoke_is_deprecated
- asio_handler_invoke(Function& function,
- buffered_flush_handler<WriteHandler>* this_handler)
- {
- boost_asio_handler_invoke_helpers::invoke(
- function, this_handler->handler_);
- #if defined(BOOST_ASIO_NO_DEPRECATED)
- return asio_handler_invoke_is_no_longer_used();
- #endif // defined(BOOST_ASIO_NO_DEPRECATED)
- }
- template <typename Function, typename WriteHandler>
- inline asio_handler_invoke_is_deprecated
- asio_handler_invoke(const Function& function,
- buffered_flush_handler<WriteHandler>* this_handler)
- {
- boost_asio_handler_invoke_helpers::invoke(
- function, this_handler->handler_);
- #if defined(BOOST_ASIO_NO_DEPRECATED)
- return asio_handler_invoke_is_no_longer_used();
- #endif // defined(BOOST_ASIO_NO_DEPRECATED)
- }
- template <typename Stream>
- class initiate_async_buffered_flush
- {
- public:
- typedef typename remove_reference<
- Stream>::type::lowest_layer_type::executor_type executor_type;
- explicit initiate_async_buffered_flush(
- typename remove_reference<Stream>::type& next_layer)
- : next_layer_(next_layer)
- {
- }
- executor_type get_executor() const BOOST_ASIO_NOEXCEPT
- {
- return next_layer_.lowest_layer().get_executor();
- }
- template <typename WriteHandler>
- void operator()(BOOST_ASIO_MOVE_ARG(WriteHandler) handler,
- buffered_stream_storage* storage) const
- {
- // If you get an error on the following line it means that your handler
- // does not meet the documented type requirements for a WriteHandler.
- BOOST_ASIO_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
- non_const_lvalue<WriteHandler> handler2(handler);
- async_write(next_layer_, buffer(storage->data(), storage->size()),
- buffered_flush_handler<typename decay<WriteHandler>::type>(
- *storage, handler2.value));
- }
- private:
- typename remove_reference<Stream>::type& next_layer_;
- };
- } // namespace detail
- #if !defined(GENERATING_DOCUMENTATION)
- template <typename WriteHandler, typename Allocator>
- struct associated_allocator<
- detail::buffered_flush_handler<WriteHandler>, Allocator>
- {
- typedef typename associated_allocator<WriteHandler, Allocator>::type type;
- static type get(const detail::buffered_flush_handler<WriteHandler>& h,
- const Allocator& a = Allocator()) BOOST_ASIO_NOEXCEPT
- {
- return associated_allocator<WriteHandler, Allocator>::get(h.handler_, a);
- }
- };
- template <typename WriteHandler, typename Executor>
- struct associated_executor<
- detail::buffered_flush_handler<WriteHandler>, Executor>
- : detail::associated_executor_forwarding_base<WriteHandler, Executor>
- {
- typedef typename associated_executor<WriteHandler, Executor>::type type;
- static type get(const detail::buffered_flush_handler<WriteHandler>& h,
- const Executor& ex = Executor()) BOOST_ASIO_NOEXCEPT
- {
- return associated_executor<WriteHandler, Executor>::get(h.handler_, ex);
- }
- };
- #endif // !defined(GENERATING_DOCUMENTATION)
- template <typename Stream>
- template <
- BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
- std::size_t)) WriteHandler>
- BOOST_ASIO_INITFN_AUTO_RESULT_TYPE(WriteHandler,
- void (boost::system::error_code, std::size_t))
- buffered_write_stream<Stream>::async_flush(
- BOOST_ASIO_MOVE_ARG(WriteHandler) handler)
- {
- return async_initiate<WriteHandler,
- void (boost::system::error_code, std::size_t)>(
- detail::initiate_async_buffered_flush<Stream>(next_layer_),
- handler, &storage_);
- }
- template <typename Stream>
- template <typename ConstBufferSequence>
- std::size_t buffered_write_stream<Stream>::write_some(
- const ConstBufferSequence& buffers)
- {
- using boost::asio::buffer_size;
- if (buffer_size(buffers) == 0)
- return 0;
- if (storage_.size() == storage_.capacity())
- this->flush();
- return this->copy(buffers);
- }
- template <typename Stream>
- template <typename ConstBufferSequence>
- std::size_t buffered_write_stream<Stream>::write_some(
- const ConstBufferSequence& buffers, boost::system::error_code& ec)
- {
- ec = boost::system::error_code();
- using boost::asio::buffer_size;
- if (buffer_size(buffers) == 0)
- return 0;
- if (storage_.size() == storage_.capacity() && !flush(ec))
- return 0;
- return this->copy(buffers);
- }
- namespace detail
- {
- template <typename ConstBufferSequence, typename WriteHandler>
- class buffered_write_some_handler
- {
- public:
- buffered_write_some_handler(detail::buffered_stream_storage& storage,
- const ConstBufferSequence& buffers, WriteHandler& handler)
- : storage_(storage),
- buffers_(buffers),
- handler_(BOOST_ASIO_MOVE_CAST(WriteHandler)(handler))
- {
- }
- #if defined(BOOST_ASIO_HAS_MOVE)
- buffered_write_some_handler(const buffered_write_some_handler& other)
- : storage_(other.storage_),
- buffers_(other.buffers_),
- handler_(other.handler_)
- {
- }
- buffered_write_some_handler(buffered_write_some_handler&& other)
- : storage_(other.storage_),
- buffers_(other.buffers_),
- handler_(BOOST_ASIO_MOVE_CAST(WriteHandler)(other.handler_))
- {
- }
- #endif // defined(BOOST_ASIO_HAS_MOVE)
- void operator()(const boost::system::error_code& ec, std::size_t)
- {
- if (ec)
- {
- const std::size_t length = 0;
- handler_(ec, length);
- }
- else
- {
- using boost::asio::buffer_size;
- std::size_t orig_size = storage_.size();
- std::size_t space_avail = storage_.capacity() - orig_size;
- std::size_t bytes_avail = buffer_size(buffers_);
- std::size_t length = bytes_avail < space_avail
- ? bytes_avail : space_avail;
- storage_.resize(orig_size + length);
- const std::size_t bytes_copied = boost::asio::buffer_copy(
- storage_.data() + orig_size, buffers_, length);
- handler_(ec, bytes_copied);
- }
- }
- //private:
- detail::buffered_stream_storage& storage_;
- ConstBufferSequence buffers_;
- WriteHandler handler_;
- };
- template <typename ConstBufferSequence, typename WriteHandler>
- inline asio_handler_allocate_is_deprecated
- asio_handler_allocate(std::size_t size,
- buffered_write_some_handler<
- ConstBufferSequence, WriteHandler>* this_handler)
- {
- #if defined(BOOST_ASIO_NO_DEPRECATED)
- boost_asio_handler_alloc_helpers::allocate(size, this_handler->handler_);
- return asio_handler_allocate_is_no_longer_used();
- #else // defined(BOOST_ASIO_NO_DEPRECATED)
- return boost_asio_handler_alloc_helpers::allocate(
- size, this_handler->handler_);
- #endif // defined(BOOST_ASIO_NO_DEPRECATED)
- }
- template <typename ConstBufferSequence, typename WriteHandler>
- inline asio_handler_deallocate_is_deprecated
- asio_handler_deallocate(void* pointer, std::size_t size,
- buffered_write_some_handler<
- ConstBufferSequence, WriteHandler>* this_handler)
- {
- boost_asio_handler_alloc_helpers::deallocate(
- pointer, size, this_handler->handler_);
- #if defined(BOOST_ASIO_NO_DEPRECATED)
- return asio_handler_deallocate_is_no_longer_used();
- #endif // defined(BOOST_ASIO_NO_DEPRECATED)
- }
- template <typename ConstBufferSequence, typename WriteHandler>
- inline bool asio_handler_is_continuation(
- buffered_write_some_handler<
- ConstBufferSequence, WriteHandler>* this_handler)
- {
- return boost_asio_handler_cont_helpers::is_continuation(
- this_handler->handler_);
- }
- template <typename Function, typename ConstBufferSequence,
- typename WriteHandler>
- inline asio_handler_invoke_is_deprecated
- asio_handler_invoke(Function& function,
- buffered_write_some_handler<
- ConstBufferSequence, WriteHandler>* this_handler)
- {
- boost_asio_handler_invoke_helpers::invoke(
- function, this_handler->handler_);
- #if defined(BOOST_ASIO_NO_DEPRECATED)
- return asio_handler_invoke_is_no_longer_used();
- #endif // defined(BOOST_ASIO_NO_DEPRECATED)
- }
- template <typename Function, typename ConstBufferSequence,
- typename WriteHandler>
- inline asio_handler_invoke_is_deprecated
- asio_handler_invoke(const Function& function,
- buffered_write_some_handler<
- ConstBufferSequence, WriteHandler>* this_handler)
- {
- boost_asio_handler_invoke_helpers::invoke(
- function, this_handler->handler_);
- #if defined(BOOST_ASIO_NO_DEPRECATED)
- return asio_handler_invoke_is_no_longer_used();
- #endif // defined(BOOST_ASIO_NO_DEPRECATED)
- }
- template <typename Stream>
- class initiate_async_buffered_write_some
- {
- public:
- typedef typename remove_reference<
- Stream>::type::lowest_layer_type::executor_type executor_type;
- explicit initiate_async_buffered_write_some(
- typename remove_reference<Stream>::type& next_layer)
- : next_layer_(next_layer)
- {
- }
- executor_type get_executor() const BOOST_ASIO_NOEXCEPT
- {
- return next_layer_.lowest_layer().get_executor();
- }
- template <typename WriteHandler, typename ConstBufferSequence>
- void operator()(BOOST_ASIO_MOVE_ARG(WriteHandler) handler,
- buffered_stream_storage* storage,
- const ConstBufferSequence& buffers) const
- {
- // If you get an error on the following line it means that your handler
- // does not meet the documented type requirements for a WriteHandler.
- BOOST_ASIO_WRITE_HANDLER_CHECK(WriteHandler, handler) type_check;
- using boost::asio::buffer_size;
- non_const_lvalue<WriteHandler> handler2(handler);
- if (buffer_size(buffers) == 0 || storage->size() < storage->capacity())
- {
- next_layer_.async_write_some(BOOST_ASIO_CONST_BUFFER(0, 0),
- buffered_write_some_handler<ConstBufferSequence,
- typename decay<WriteHandler>::type>(
- *storage, buffers, handler2.value));
- }
- else
- {
- initiate_async_buffered_flush<Stream>(this->next_layer_)(
- buffered_write_some_handler<ConstBufferSequence,
- typename decay<WriteHandler>::type>(
- *storage, buffers, handler2.value),
- storage);
- }
- }
- private:
- typename remove_reference<Stream>::type& next_layer_;
- };
- } // namespace detail
- #if !defined(GENERATING_DOCUMENTATION)
- template <typename ConstBufferSequence,
- typename WriteHandler, typename Allocator>
- struct associated_allocator<
- detail::buffered_write_some_handler<ConstBufferSequence, WriteHandler>,
- Allocator>
- {
- typedef typename associated_allocator<WriteHandler, Allocator>::type type;
- static type get(
- const detail::buffered_write_some_handler<
- ConstBufferSequence, WriteHandler>& h,
- const Allocator& a = Allocator()) BOOST_ASIO_NOEXCEPT
- {
- return associated_allocator<WriteHandler, Allocator>::get(h.handler_, a);
- }
- };
- template <typename ConstBufferSequence,
- typename WriteHandler, typename Executor>
- struct associated_executor<
- detail::buffered_write_some_handler<ConstBufferSequence, WriteHandler>,
- Executor>
- : detail::associated_executor_forwarding_base<WriteHandler, Executor>
- {
- typedef typename associated_executor<WriteHandler, Executor>::type type;
- static type get(
- const detail::buffered_write_some_handler<
- ConstBufferSequence, WriteHandler>& h,
- const Executor& ex = Executor()) BOOST_ASIO_NOEXCEPT
- {
- return associated_executor<WriteHandler, Executor>::get(h.handler_, ex);
- }
- };
- #endif // !defined(GENERATING_DOCUMENTATION)
- template <typename Stream>
- template <typename ConstBufferSequence,
- BOOST_ASIO_COMPLETION_TOKEN_FOR(void (boost::system::error_code,
- std::size_t)) WriteHandler>
- BOOST_ASIO_INITFN_AUTO_RESULT_TYPE(WriteHandler,
- void (boost::system::error_code, std::size_t))
- buffered_write_stream<Stream>::async_write_some(
- const ConstBufferSequence& buffers,
- BOOST_ASIO_MOVE_ARG(WriteHandler) handler)
- {
- return async_initiate<WriteHandler,
- void (boost::system::error_code, std::size_t)>(
- detail::initiate_async_buffered_write_some<Stream>(next_layer_),
- handler, &storage_, buffers);
- }
- template <typename Stream>
- template <typename ConstBufferSequence>
- std::size_t buffered_write_stream<Stream>::copy(
- const ConstBufferSequence& buffers)
- {
- using boost::asio::buffer_size;
- std::size_t orig_size = storage_.size();
- std::size_t space_avail = storage_.capacity() - orig_size;
- std::size_t bytes_avail = buffer_size(buffers);
- std::size_t length = bytes_avail < space_avail ? bytes_avail : space_avail;
- storage_.resize(orig_size + length);
- return boost::asio::buffer_copy(
- storage_.data() + orig_size, buffers, length);
- }
- } // namespace asio
- } // namespace boost
- #include <boost/asio/detail/pop_options.hpp>
- #endif // BOOST_ASIO_IMPL_BUFFERED_WRITE_STREAM_HPP
|