include/boost/url/rfc/impl/uri_rule.hpp

97.0% Lines (32/33) 100.0% List of functions (1/1)
uri_rule.hpp
f(x) Functions (1)
Line TLA Hits Source Code
1 //
2 // Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com)
3 // Copyright (c) 2023 Alan de Freitas (alandefreitas@gmail.com)
4 //
5 // Distributed under the Boost Software License, Version 1.0. (See accompanying
6 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
7 //
8 // Official repository: https://github.com/boostorg/url
9 //
10
11 #ifndef BOOST_URL_RFC_IMPL_URI_RULE_HPP
12 #define BOOST_URL_RFC_IMPL_URI_RULE_HPP
13
14 #include <boost/url/detail/config.hpp>
15 #include <boost/url/url_view.hpp>
16 #include <boost/url/grammar/delim_rule.hpp>
17 #include <boost/url/grammar/tuple_rule.hpp>
18 #include <boost/url/grammar/optional_rule.hpp>
19 #include <boost/url/grammar/parse.hpp>
20 #include <boost/url/rfc/detail/fragment_part_rule.hpp>
21 #include <boost/url/rfc/detail/hier_part_rule.hpp>
22 #include <boost/url/rfc/detail/query_part_rule.hpp>
23 #include <boost/url/rfc/detail/scheme_rule.hpp>
24
25 namespace boost {
26 namespace urls {
27
28 BOOST_URL_CXX20_CONSTEXPR_OR_INLINE
29 auto
30 20054x implementation_defined::uri_rule_t::
31 parse(
32 char const*& it,
33 char const* const end
34 ) const noexcept ->
35 system::result<value_type>
36 {
37 20054x detail::url_impl u(detail::url_impl::from::string);
38 20054x u.cs_ = it;
39
40 // scheme
41 {
42 20054x auto rv = grammar::parse(
43 it, end,
44 20054x grammar::tuple_rule(
45 20054x detail::scheme_rule(),
46 20054x grammar::squelch(
47 20054x grammar::delim_rule(':'))));
48 20054x if(! rv)
49 12845x return rv.error();
50 7209x u.apply_scheme(rv->scheme);
51 }
52
53 // hier_part
54 {
55 auto rv = grammar::parse(
56 it, end,
57 7209x detail::hier_part_rule);
58 7209x if(! rv)
59 43x return rv.error();
60 7166x if(rv->has_authority)
61 6149x u.apply_authority(rv->authority.u_);
62 14332x u.apply_path(
63 7166x rv->path,
64 7166x rv->segment_count);
65 7209x }
66
67 // [ "?" query ]
68 {
69 7166x auto rv = grammar::parse(
70 it, end, detail::query_part_rule);
71 7166x if(! rv)
72 return rv.error();
73 7166x if(rv->has_query)
74 {
75 // map "?" to { {} }
76 7146x u.apply_query(
77 3573x rv->query,
78 3573x rv->count);
79 }
80 }
81
82 // [ "#" fragment ]
83 {
84 7166x auto rv = grammar::parse(
85 it, end, detail::fragment_part_rule);
86 7166x if(! rv)
87 1x return rv.error();
88 7165x if(rv->has_fragment)
89 500x u.apply_frag(rv->fragment);
90 }
91
92 7165x return url_view(u);
93 }
94
95 } // urls
96 } // boost
97
98
99 #endif
100