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_IPVFUTURE_RULE_HPP
12 : #define BOOST_URL_RFC_DETAIL_IMPL_IPVFUTURE_RULE_HPP
13 :
14 : #include <boost/url/detail/config.hpp>
15 : #include <boost/url/rfc/detail/charsets.hpp>
16 : #include <boost/url/grammar/charset.hpp>
17 : #include <boost/url/grammar/delim_rule.hpp>
18 : #include <boost/url/grammar/error.hpp>
19 : #include <boost/url/grammar/hexdig_chars.hpp>
20 : #include <boost/url/grammar/parse.hpp>
21 : #include <boost/url/grammar/token_rule.hpp>
22 : #include <boost/url/grammar/tuple_rule.hpp>
23 :
24 : namespace boost {
25 : namespace urls {
26 : namespace detail {
27 :
28 : BOOST_URL_CXX20_CONSTEXPR_OR_INLINE
29 : auto
30 HIT 22 : ipvfuture_rule_t::
31 : parse(
32 : char const*& it,
33 : char const* const end
34 : ) const noexcept ->
35 : system::result<value_type>
36 : {
37 : constexpr auto
38 22 : minor_chars =
39 : unreserved_chars +
40 : sub_delim_chars + ':';
41 22 : auto const it0 = it;
42 : auto rv = grammar::parse(
43 : it, end,
44 22 : grammar::tuple_rule(
45 22 : grammar::delim_rule('v'),
46 22 : grammar::token_rule(
47 : grammar::hexdig_chars),
48 22 : grammar::delim_rule('.'),
49 44 : grammar::token_rule(minor_chars)));
50 22 : if(! rv)
51 7 : return rv.error();
52 15 : value_type t;
53 15 : t.major = std::get<0>(*rv);
54 15 : t.minor = std::get<1>(*rv);
55 : // token_rule guarantees non-empty tokens,
56 : // so major/minor are always non-empty here.
57 15 : BOOST_ASSERT(!t.major.empty());
58 15 : BOOST_ASSERT(!t.minor.empty());
59 30 : t.str = core::string_view(
60 15 : it0, it - it0);
61 15 : return t;
62 : }
63 :
64 : } // detail
65 : } // urls
66 : } // boost
67 :
68 :
69 : #endif
|