forked from boostorg/beast
fix #123 fix #154 fix #265 This completely replaces the HTTP parser used to read and parse incoming messages. The new version is faster than the old one, and written in fewer lines. A summary of changes: * parse and async_parse renamed to read and async_read * basic_parser is optimized for linear buffers, use flat_streambuf for the best performance with these functions: - http::read - http::read_some - http::async_read - http::async_read_some * The overloads of read() and async_read() which take just a header have been removed, since they would throw away important parse metadata. * The derived class callbacks for basic_parser have been streamlined. All strings passed to callbacks are presented in their entirety, instead of being provided in pieces. These changes allow use-cases that were previously difficult or impossible, such as: - Efficient relaying - Late body type commitment - Expect: 100-continue handling
39 lines
1.0 KiB
C++
39 lines
1.0 KiB
C++
//
|
|
// Copyright (c) 2013-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)
|
|
//
|
|
|
|
#ifndef BEAST_HTTP_IMPL_MESSAGE_PARSER_IPP
|
|
#define BEAST_HTTP_IMPL_MESSAGE_PARSER_IPP
|
|
|
|
namespace beast {
|
|
namespace http {
|
|
|
|
template<bool isRequest, class Body, class Fields>
|
|
template<class Arg1, class... ArgN, class>
|
|
message_parser<isRequest, Body, Fields>::
|
|
message_parser(Arg1&& arg1, ArgN&&... argn)
|
|
: m_(std::forward<Arg1>(arg1),
|
|
std::forward<ArgN>(argn)...)
|
|
{
|
|
}
|
|
|
|
template<bool isRequest, class Body, class Fields>
|
|
template<class... Args>
|
|
message_parser<isRequest, Body, Fields>::
|
|
message_parser(header_parser<
|
|
isRequest, Fields>&& parser, Args&&... args)
|
|
: base_type(std::move(static_cast<basic_parser<
|
|
isRequest, false, header_parser<
|
|
isRequest, Fields>>&>(parser)))
|
|
, m_(parser.release(), std::forward<Args>(args)...)
|
|
{
|
|
}
|
|
|
|
} // http
|
|
} // beast
|
|
|
|
#endif
|