buffered_write_stream.hpp 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. //
  2. // buffered_write_stream.hpp
  3. // ~~~~~~~~~~~~~~~~~~~~~~~~~
  4. //
  5. // Copyright (c) 2003-2023 Christopher M. Kohlhoff (chris at kohlhoff dot com)
  6. //
  7. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. //
  10. #ifndef ASIO_BUFFERED_WRITE_STREAM_HPP
  11. #define ASIO_BUFFERED_WRITE_STREAM_HPP
  12. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  13. # pragma once
  14. #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
  15. #include "asio/detail/config.hpp"
  16. #include <cstddef>
  17. #include "asio/buffered_write_stream_fwd.hpp"
  18. #include "asio/buffer.hpp"
  19. #include "asio/completion_condition.hpp"
  20. #include "asio/detail/bind_handler.hpp"
  21. #include "asio/detail/buffered_stream_storage.hpp"
  22. #include "asio/detail/noncopyable.hpp"
  23. #include "asio/detail/type_traits.hpp"
  24. #include "asio/error.hpp"
  25. #include "asio/write.hpp"
  26. #include "asio/detail/push_options.hpp"
  27. namespace asio {
  28. namespace detail {
  29. template <typename> class initiate_async_buffered_flush;
  30. template <typename> class initiate_async_buffered_write_some;
  31. } // namespace detail
  32. /// Adds buffering to the write-related operations of a stream.
  33. /**
  34. * The buffered_write_stream class template can be used to add buffering to the
  35. * synchronous and asynchronous write operations of a stream.
  36. *
  37. * @par Thread Safety
  38. * @e Distinct @e objects: Safe.@n
  39. * @e Shared @e objects: Unsafe.
  40. *
  41. * @par Concepts:
  42. * AsyncReadStream, AsyncWriteStream, Stream, SyncReadStream, SyncWriteStream.
  43. */
  44. template <typename Stream>
  45. class buffered_write_stream
  46. : private noncopyable
  47. {
  48. public:
  49. /// The type of the next layer.
  50. typedef remove_reference_t<Stream> next_layer_type;
  51. /// The type of the lowest layer.
  52. typedef typename next_layer_type::lowest_layer_type lowest_layer_type;
  53. /// The type of the executor associated with the object.
  54. typedef typename lowest_layer_type::executor_type executor_type;
  55. #if defined(GENERATING_DOCUMENTATION)
  56. /// The default buffer size.
  57. static const std::size_t default_buffer_size = implementation_defined;
  58. #else
  59. ASIO_STATIC_CONSTANT(std::size_t, default_buffer_size = 1024);
  60. #endif
  61. /// Construct, passing the specified argument to initialise the next layer.
  62. template <typename Arg>
  63. explicit buffered_write_stream(Arg&& a)
  64. : next_layer_(static_cast<Arg&&>(a)),
  65. storage_(default_buffer_size)
  66. {
  67. }
  68. /// Construct, passing the specified argument to initialise the next layer.
  69. template <typename Arg>
  70. buffered_write_stream(Arg&& a,
  71. std::size_t buffer_size)
  72. : next_layer_(static_cast<Arg&&>(a)),
  73. storage_(buffer_size)
  74. {
  75. }
  76. /// Get a reference to the next layer.
  77. next_layer_type& next_layer()
  78. {
  79. return next_layer_;
  80. }
  81. /// Get a reference to the lowest layer.
  82. lowest_layer_type& lowest_layer()
  83. {
  84. return next_layer_.lowest_layer();
  85. }
  86. /// Get a const reference to the lowest layer.
  87. const lowest_layer_type& lowest_layer() const
  88. {
  89. return next_layer_.lowest_layer();
  90. }
  91. /// Get the executor associated with the object.
  92. executor_type get_executor() noexcept
  93. {
  94. return next_layer_.lowest_layer().get_executor();
  95. }
  96. /// Close the stream.
  97. void close()
  98. {
  99. next_layer_.close();
  100. }
  101. /// Close the stream.
  102. ASIO_SYNC_OP_VOID close(asio::error_code& ec)
  103. {
  104. next_layer_.close(ec);
  105. ASIO_SYNC_OP_VOID_RETURN(ec);
  106. }
  107. /// Flush all data from the buffer to the next layer. Returns the number of
  108. /// bytes written to the next layer on the last write operation. Throws an
  109. /// exception on failure.
  110. std::size_t flush();
  111. /// Flush all data from the buffer to the next layer. Returns the number of
  112. /// bytes written to the next layer on the last write operation, or 0 if an
  113. /// error occurred.
  114. std::size_t flush(asio::error_code& ec);
  115. /// Start an asynchronous flush.
  116. /**
  117. * @par Completion Signature
  118. * @code void(asio::error_code, std::size_t) @endcode
  119. */
  120. template <
  121. ASIO_COMPLETION_TOKEN_FOR(void (asio::error_code,
  122. std::size_t)) WriteHandler = default_completion_token_t<executor_type>>
  123. auto async_flush(
  124. WriteHandler&& handler = default_completion_token_t<executor_type>())
  125. -> decltype(
  126. async_initiate<WriteHandler,
  127. void (asio::error_code, std::size_t)>(
  128. declval<detail::initiate_async_buffered_flush<Stream>>(),
  129. handler, declval<detail::buffered_stream_storage*>()));
  130. /// Write the given data to the stream. Returns the number of bytes written.
  131. /// Throws an exception on failure.
  132. template <typename ConstBufferSequence>
  133. std::size_t write_some(const ConstBufferSequence& buffers);
  134. /// Write the given data to the stream. Returns the number of bytes written,
  135. /// or 0 if an error occurred and the error handler did not throw.
  136. template <typename ConstBufferSequence>
  137. std::size_t write_some(const ConstBufferSequence& buffers,
  138. asio::error_code& ec);
  139. /// Start an asynchronous write. The data being written must be valid for the
  140. /// lifetime of the asynchronous operation.
  141. /**
  142. * @par Completion Signature
  143. * @code void(asio::error_code, std::size_t) @endcode
  144. */
  145. template <typename ConstBufferSequence,
  146. ASIO_COMPLETION_TOKEN_FOR(void (asio::error_code,
  147. std::size_t)) WriteHandler = default_completion_token_t<executor_type>>
  148. auto async_write_some(const ConstBufferSequence& buffers,
  149. WriteHandler&& handler = default_completion_token_t<executor_type>())
  150. -> decltype(
  151. async_initiate<WriteHandler,
  152. void (asio::error_code, std::size_t)>(
  153. declval<detail::initiate_async_buffered_write_some<Stream>>(),
  154. handler, declval<detail::buffered_stream_storage*>(), buffers));
  155. /// Read some data from the stream. Returns the number of bytes read. Throws
  156. /// an exception on failure.
  157. template <typename MutableBufferSequence>
  158. std::size_t read_some(const MutableBufferSequence& buffers)
  159. {
  160. return next_layer_.read_some(buffers);
  161. }
  162. /// Read some data from the stream. Returns the number of bytes read or 0 if
  163. /// an error occurred.
  164. template <typename MutableBufferSequence>
  165. std::size_t read_some(const MutableBufferSequence& buffers,
  166. asio::error_code& ec)
  167. {
  168. return next_layer_.read_some(buffers, ec);
  169. }
  170. /// Start an asynchronous read. The buffer into which the data will be read
  171. /// must be valid for the lifetime of the asynchronous operation.
  172. /**
  173. * @par Completion Signature
  174. * @code void(asio::error_code, std::size_t) @endcode
  175. */
  176. template <typename MutableBufferSequence,
  177. ASIO_COMPLETION_TOKEN_FOR(void (asio::error_code,
  178. std::size_t)) ReadHandler = default_completion_token_t<executor_type>>
  179. auto async_read_some(const MutableBufferSequence& buffers,
  180. ReadHandler&& handler = default_completion_token_t<executor_type>())
  181. -> decltype(
  182. declval<conditional_t<true, Stream&, ReadHandler>>().async_read_some(
  183. buffers, static_cast<ReadHandler&&>(handler)))
  184. {
  185. return next_layer_.async_read_some(buffers,
  186. static_cast<ReadHandler&&>(handler));
  187. }
  188. /// Peek at the incoming data on the stream. Returns the number of bytes read.
  189. /// Throws an exception on failure.
  190. template <typename MutableBufferSequence>
  191. std::size_t peek(const MutableBufferSequence& buffers)
  192. {
  193. return next_layer_.peek(buffers);
  194. }
  195. /// Peek at the incoming data on the stream. Returns the number of bytes read,
  196. /// or 0 if an error occurred.
  197. template <typename MutableBufferSequence>
  198. std::size_t peek(const MutableBufferSequence& buffers,
  199. asio::error_code& ec)
  200. {
  201. return next_layer_.peek(buffers, ec);
  202. }
  203. /// Determine the amount of data that may be read without blocking.
  204. std::size_t in_avail()
  205. {
  206. return next_layer_.in_avail();
  207. }
  208. /// Determine the amount of data that may be read without blocking.
  209. std::size_t in_avail(asio::error_code& ec)
  210. {
  211. return next_layer_.in_avail(ec);
  212. }
  213. private:
  214. /// Copy data into the internal buffer from the specified source buffer.
  215. /// Returns the number of bytes copied.
  216. template <typename ConstBufferSequence>
  217. std::size_t copy(const ConstBufferSequence& buffers);
  218. /// The next layer.
  219. Stream next_layer_;
  220. // The data in the buffer.
  221. detail::buffered_stream_storage storage_;
  222. };
  223. } // namespace asio
  224. #include "asio/detail/pop_options.hpp"
  225. #include "asio/impl/buffered_write_stream.hpp"
  226. #endif // ASIO_BUFFERED_WRITE_STREAM_HPP