123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506 |
- #ifndef BOOST_BEAST_HTTP_PARSER_HPP
- #define BOOST_BEAST_HTTP_PARSER_HPP
- #include <boost/beast/core/detail/config.hpp>
- #include <boost/beast/http/basic_parser.hpp>
- #include <boost/beast/http/message.hpp>
- #include <boost/beast/http/type_traits.hpp>
- #include <boost/optional.hpp>
- #include <boost/throw_exception.hpp>
- #include <cstdint>
- #include <functional>
- #include <memory>
- #include <type_traits>
- #include <utility>
- namespace boost {
- namespace beast {
- namespace http {
- template<
- bool isRequest,
- class Body,
- class Allocator = std::allocator<char>>
- class parser
- : public basic_parser<isRequest>
- {
- static_assert(is_body<Body>::value,
- "Body type requirements not met");
- static_assert(is_body_reader<Body>::value,
- "BodyReader type requirements not met");
- template<bool, class, class>
- friend class parser;
- message<isRequest, Body, basic_fields<Allocator>> m_;
- typename Body::reader rd_;
- bool rd_inited_ = false;
- bool used_ = false;
- std::function<void(
- std::uint64_t,
- string_view,
- error_code&)> cb_h_;
- std::function<std::size_t(
- std::uint64_t,
- string_view,
- error_code&)> cb_b_;
- public:
-
- using value_type =
- message<isRequest, Body, basic_fields<Allocator>>;
-
- ~parser() = default;
-
- parser(parser const&) = delete;
-
- parser& operator=(parser const&) = delete;
-
- parser(parser&& other) = delete;
-
- parser();
-
- #if BOOST_BEAST_DOXYGEN
- template<class... Args>
- explicit
- parser(Args&&... args);
- #else
- template<class Arg1, class... ArgN,
- class = typename std::enable_if<
- ! detail::is_parser<typename
- std::decay<Arg1>::type>::value>::type>
- explicit
- parser(Arg1&& arg1, ArgN&&... argn);
- #endif
-
- #if BOOST_BEAST_DOXYGEN
- template<class OtherBody, class... Args>
- #else
- template<class OtherBody, class... Args,
- class = typename std::enable_if<
- ! std::is_same<Body, OtherBody>::value>::type>
- #endif
- explicit
- parser(parser<isRequest, OtherBody,
- Allocator>&& parser, Args&&... args);
-
- value_type const&
- get() const
- {
- return m_;
- }
-
- value_type&
- get()
- {
- return m_;
- }
-
- value_type
- release()
- {
- static_assert(std::is_move_constructible<decltype(m_)>::value,
- "MoveConstructible requirements not met");
- return std::move(m_);
- }
-
- template<class Callback>
- void
- on_chunk_header(Callback& cb)
- {
-
-
- BOOST_STATIC_ASSERT(! std::is_const<Callback>::value);
-
- BOOST_ASSERT(! rd_inited_);
- cb_h_ = std::ref(cb);
- }
-
- template<class Callback>
- void
- on_chunk_body(Callback& cb)
- {
-
-
- BOOST_STATIC_ASSERT(! std::is_const<Callback>::value);
-
- BOOST_ASSERT(! rd_inited_);
- cb_b_ = std::ref(cb);
- }
- private:
- parser(std::true_type);
- parser(std::false_type);
- template<class OtherBody, class... Args,
- class = typename std::enable_if<
- ! std::is_same<Body, OtherBody>::value>::type>
- parser(
- std::true_type,
- parser<isRequest, OtherBody, Allocator>&& parser,
- Args&&... args);
- template<class OtherBody, class... Args,
- class = typename std::enable_if<
- ! std::is_same<Body, OtherBody>::value>::type>
- parser(
- std::false_type,
- parser<isRequest, OtherBody, Allocator>&& parser,
- Args&&... args);
- template<class Arg1, class... ArgN,
- class = typename std::enable_if<
- ! detail::is_parser<typename
- std::decay<Arg1>::type>::value>::type>
- explicit
- parser(Arg1&& arg1, std::true_type, ArgN&&... argn);
- template<class Arg1, class... ArgN,
- class = typename std::enable_if<
- ! detail::is_parser<typename
- std::decay<Arg1>::type>::value>::type>
- explicit
- parser(Arg1&& arg1, std::false_type, ArgN&&... argn);
- void
- on_request_impl(
- verb method,
- string_view method_str,
- string_view target,
- int version,
- error_code& ec,
- std::true_type)
- {
-
-
-
-
-
- BOOST_ASSERT(! used_);
- if(used_)
- {
- BOOST_BEAST_ASSIGN_EC(ec, error::stale_parser);
- return;
- }
- used_ = true;
- m_.target(target);
- if(method != verb::unknown)
- m_.method(method);
- else
- m_.method_string(method_str);
- m_.version(version);
- }
- void
- on_request_impl(
- verb, string_view, string_view,
- int, error_code&, std::false_type)
- {
- }
- void
- on_request_impl(
- verb method,
- string_view method_str,
- string_view target,
- int version,
- error_code& ec) override
- {
- this->on_request_impl(
- method, method_str, target, version, ec,
- std::integral_constant<bool, isRequest>{});
- }
- void
- on_response_impl(
- int code,
- string_view reason,
- int version,
- error_code& ec,
- std::true_type)
- {
-
-
-
-
-
- BOOST_ASSERT(! used_);
- if(used_)
- {
- BOOST_BEAST_ASSIGN_EC(ec, error::stale_parser);
- return;
- }
- used_ = true;
- m_.result(code);
- m_.version(version);
- m_.reason(reason);
- }
- void
- on_response_impl(
- int, string_view, int,
- error_code&, std::false_type)
- {
- }
- void
- on_response_impl(
- int code,
- string_view reason,
- int version,
- error_code& ec) override
- {
- this->on_response_impl(
- code, reason, version, ec,
- std::integral_constant<bool, ! isRequest>{});
- }
- void
- on_field_impl(
- field name,
- string_view name_string,
- string_view value,
- error_code&) override
- {
- m_.insert(name, name_string, value);
- }
- void
- on_header_impl(error_code& ec) override
- {
- ec = {};
- }
- void
- on_body_init_impl(
- boost::optional<std::uint64_t> const& content_length,
- error_code& ec) override
- {
- rd_.init(content_length, ec);
- rd_inited_ = true;
- }
- std::size_t
- on_body_impl(
- string_view body,
- error_code& ec) override
- {
- return rd_.put(net::buffer(
- body.data(), body.size()), ec);
- }
- void
- on_chunk_header_impl(
- std::uint64_t size,
- string_view extensions,
- error_code& ec) override
- {
- if(cb_h_)
- return cb_h_(size, extensions, ec);
- }
- std::size_t
- on_chunk_body_impl(
- std::uint64_t remain,
- string_view body,
- error_code& ec) override
- {
- if(cb_b_)
- return cb_b_(remain, body, ec);
- return rd_.put(net::buffer(
- body.data(), body.size()), ec);
- }
- void
- on_finish_impl(
- error_code& ec) override
- {
- rd_.finish(ec);
- }
- };
- template<class Body, class Allocator = std::allocator<char>>
- using request_parser = parser<true, Body, Allocator>;
- template<class Body, class Allocator = std::allocator<char>>
- using response_parser = parser<false, Body, Allocator>;
- }
- }
- }
- #include <boost/beast/http/impl/parser.hpp>
- #endif
|