TLA Line data 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_DETAIL_IMPL_PORT_RULE_HPP
12 : #define BOOST_URL_RFC_DETAIL_IMPL_PORT_RULE_HPP
13 :
14 : #include <boost/url/detail/config.hpp>
15 : #include <boost/url/grammar/digit_chars.hpp>
16 : #include <boost/url/grammar/parse.hpp>
17 : #include <boost/url/grammar/unsigned_rule.hpp>
18 :
19 : namespace boost {
20 : namespace urls {
21 : namespace detail {
22 :
23 : BOOST_URL_CXX20_CONSTEXPR_OR_INLINE
24 : auto
25 HIT 788 : port_rule::
26 : parse(
27 : char const*& it,
28 : char const* end) const noexcept ->
29 : system::result<value_type>
30 : {
31 788 : value_type t;
32 788 : auto const start = it;
33 788 : while(
34 920 : it != end &&
35 716 : *it == '0')
36 : {
37 132 : ++it;
38 : }
39 :
40 788 : if (it != end)
41 : {
42 : grammar::unsigned_rule<std::uint16_t> r;
43 584 : auto it0 = it;
44 584 : auto rv = r.parse(it, end);
45 584 : if (rv)
46 : {
47 : // number < max uint16_t
48 528 : t.str = core::string_view(start, it);
49 528 : t.has_number = true;
50 528 : t.number = *rv;
51 549 : return t;
52 : }
53 56 : it = it0;
54 56 : if (grammar::digit_chars(*it))
55 : {
56 : // number > max uint16_t
57 21 : while (
58 366 : it != end &&
59 177 : grammar::digit_chars(*it))
60 : {
61 168 : ++it;
62 : }
63 21 : t.str = core::string_view(start, it);
64 21 : t.has_number = true;
65 21 : t.number = 0;
66 21 : return t;
67 : }
68 : }
69 : // no digits
70 239 : t.str = core::string_view(start, it);
71 239 : t.has_number = it != start;
72 239 : t.number = 0;
73 239 : return t;
74 : }
75 :
76 : BOOST_URL_CXX20_CONSTEXPR_OR_INLINE
77 : auto
78 6634 : port_part_rule_t::
79 : parse(
80 : char const*& it,
81 : char const* end) const noexcept ->
82 : system::result<value_type>
83 : {
84 6634 : value_type t;
85 6634 : if( it == end ||
86 5986 : *it != ':')
87 : {
88 6235 : t.has_port = false;
89 6235 : return t;
90 : }
91 399 : ++it;
92 399 : auto rv = grammar::parse(
93 399 : it, end, port_rule{});
94 399 : if(! rv)
95 MIS 0 : return rv.error();
96 HIT 399 : t.has_port = true;
97 399 : t.port = rv->str;
98 399 : t.has_number = rv->has_number;
99 399 : t.port_number = rv->number;
100 399 : return t;
101 : }
102 :
103 : } // detail
104 : } // urls
105 : } // boost
106 :
107 :
108 : #endif
|