// // Copyright (c) 2016-2019 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/url // #ifndef BOOST_URL_RFC_IMPL_ABSOLUTE_URI_RULE_IPP #define BOOST_URL_RFC_IMPL_ABSOLUTE_URI_RULE_IPP #include #include #include #include #include #include #include #include #include namespace boost { namespace urls { auto absolute_uri_rule_t:: parse( char const*& it, char const* const end ) const noexcept -> result { detail::url_impl u(detail::url_impl::from::string); u.cs_ = it; // scheme { auto rv = grammar::parse( it, end, grammar::tuple_rule( detail::scheme_rule(), grammar::squelch( grammar::delim_rule(':')))); if(! rv) return rv.error(); u.apply_scheme(rv->scheme); } // hier_part { auto rv = grammar::parse( it, end, detail::hier_part_rule); if(! rv) return rv.error(); if(rv->has_authority) u.apply_authority(rv->authority); u.apply_path( rv->path, rv->segment_count); } // [ "?" query ] { auto rv = grammar::parse( it, end, detail::query_part_rule); if(! rv) return rv.error(); if(rv->has_query) { // map "?" to { {} } u.apply_query( rv->query, rv->count + rv->query.empty()); } } return u.construct(); } } // urls } // boost #endif