| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- //
- // Copyright (c) 2016-2017 Vinnie Falco (vinnie dot falco at gmail 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)
- //
- // Official repository: https://github.com/boostorg/beast
- //
- #ifndef BOOST_BEAST_WRITE_OSTREAM_HPP
- #define BOOST_BEAST_WRITE_OSTREAM_HPP
- #include <boost/beast/core/detail/config.hpp>
- #include <boost/beast/core/type_traits.hpp>
- #include <boost/beast/core/detail/ostream.hpp>
- #include <type_traits>
- #include <streambuf>
- #include <utility>
- namespace boost {
- namespace beast {
- /** Return an object representing a @b ConstBufferSequence.
- This function wraps a reference to a buffer sequence and permits
- the following operation:
- @li `operator<<` to `std::ostream`. No character translation is
- performed; unprintable and null characters will be transferred
- as-is to the output stream.
- @par Example
- @code
- multi_buffer b;
- ...
- std::cout << buffers(b.data()) << std::endl;
- @endcode
- @param b An object meeting the requirements of @b ConstBufferSequence
- to be streamed. The implementation will make a copy of this object.
- Ownership of the underlying memory is not transferred, the application
- is still responsible for managing its lifetime.
- */
- template<class ConstBufferSequence>
- #if BOOST_BEAST_DOXYGEN
- implementation_defined
- #else
- detail::buffers_helper<ConstBufferSequence>
- #endif
- buffers(ConstBufferSequence const& b)
- {
- static_assert(boost::asio::is_const_buffer_sequence<
- ConstBufferSequence>::value,
- "ConstBufferSequence requirements not met");
- return detail::buffers_helper<
- ConstBufferSequence>{b};
- }
- /** Return an output stream that formats values into a @b DynamicBuffer.
- This function wraps the caller provided @b DynamicBuffer into
- a `std::ostream` derived class, to allow `operator<<` stream style
- formatting operations.
- @par Example
- @code
- ostream(buffer) << "Hello, world!" << std::endl;
- @endcode
- @note Calling members of the underlying buffer before the output
- stream is destroyed results in undefined behavior.
- @param buffer An object meeting the requirements of @b DynamicBuffer
- into which the formatted output will be placed.
- @return An object derived from `std::ostream` which redirects output
- The wrapped dynamic buffer is not modified, a copy is made instead.
- Ownership of the underlying memory is not transferred, the application
- is still responsible for managing its lifetime. The caller is
- responsible for ensuring the dynamic buffer is not destroyed for the
- lifetime of the output stream.
- */
- template<class DynamicBuffer>
- #if BOOST_BEAST_DOXYGEN
- implementation_defined
- #else
- detail::ostream_helper<
- DynamicBuffer, char, std::char_traits<char>,
- detail::basic_streambuf_movable::value>
- #endif
- ostream(DynamicBuffer& buffer)
- {
- static_assert(
- boost::asio::is_dynamic_buffer<DynamicBuffer>::value,
- "DynamicBuffer requirements not met");
- return detail::ostream_helper<
- DynamicBuffer, char, std::char_traits<char>,
- detail::basic_streambuf_movable::value>{buffer};
- }
- } // beast
- } // boost
- #endif
|