// // Copyright (c) 2013-2016 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) // #ifndef BEAST_HTTP_WRITE_HPP #define BEAST_HTTP_WRITE_HPP #include #include #include #include #include namespace beast { namespace http { /** Write a HTTP/1 message on a stream. This function is used to write a message to a stream. The call will block until one of the following conditions is true: @li The entire message is sent. @li An error occurs. This operation is implemented in terms of one or more calls to the stream's `write_some` function. The implementation will automatically perform chunk encoding if the contents of the message indicate that chunk encoding is required. If the semantics of the message indicate that the connection should be closed after the message is sent, the error thrown from this function will be `boost::asio::error::eof`. @param stream The stream to which the data is to be written. The type must support the @b `SyncWriteStream` concept. @param msg The message to write. @throws boost::system::error Thrown on failure. */ template void write(SyncWriteStream& stream, message_v1 const& msg); /** Write a HTTP/1 message on a stream. This function is used to write a message to a stream. The call will block until one of the following conditions is true: @li The entire message is sent. @li An error occurs. This operation is implemented in terms of one or more calls to the stream's `write_some` function. The implementation will automatically perform chunk encoding if the contents of the message indicate that chunk encoding is required. If the semantics of the message indicate that the connection should be closed after the message is sent, the error returned from this function will be `boost::asio::error::eof`. @param stream The stream to which the data is to be written. The type must support the @b `SyncWriteStream` concept. @param msg The message to write. @param ec Set to the error, if any occurred. */ template void write(SyncWriteStream& stream, message_v1 const& msg, error_code& ec); /** Start an asynchronous operation to write a HTTP/1 message to a stream. This function is used to asynchronously write a message to a stream. The function call always returns immediately. The asynchronous operation will continue until one of the following conditions is true: @li The entire message is sent. @li An error occurs. This operation is implemented in terms of one or more calls to the stream's `async_write_some` functions, and is known as a composed operation. The program must ensure that the stream performs no other write operations (such as @ref async_write, the stream's `async_write_some` function, or any other composed operations that perform writes) until this operation completes. The implementation will automatically perform chunk encoding if the contents of the message indicate that chunk encoding is required. If the semantics of the message indicate that the connection should be closed after the message is sent, the operation will complete with the error set to `boost::asio::error::eof`. @param stream The stream to which the data is to be written. The type must support the @b `AsyncWriteStream` concept. @param msg The message to send. @param handler The handler to be called when the request completes. Copies will be made of the handler as required. The equivalent function signature of the handler must be: @code void handler( error_code const& error // result of operation ); @endcode Regardless of whether the asynchronous operation completes immediately or not, the handler will not be invoked from within this function. Invocation of the handler will be performed in a manner equivalent to using `boost::asio::io_service::post`. @note The message object must remain valid at least until the completion handler is called, no copies are made. */ template #if GENERATING_DOCS void_or_deduced #else typename async_completion< WriteHandler, void(error_code)>::result_type #endif async_write(AsyncWriteStream& stream, message_v1 const& msg, WriteHandler&& handler); /** Serialize a HTTP/1 message to an ostream. The function converts the message to its HTTP/1 serialized representation and stores the result in the output stream. The implementation will automatically perform chunk encoding if the contents of the message indicate that chunk encoding is required. @param os The ostream to write to. @param msg The message to write. */ template std::ostream& operator<<(std::ostream& os, message_v1 const& msg); } // http } // beast #include #endif