include/boost/url/rfc/detail/impl/userinfo_rule.hpp

95.8% Lines (23/24) 100.0% List of functions (1/1)
userinfo_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_DETAIL_IMPL_USERINFO_RULE_HPP
12 #define BOOST_URL_RFC_DETAIL_IMPL_USERINFO_RULE_HPP
13
14 #include <boost/url/detail/config.hpp>
15 #include <boost/url/rfc/pct_encoded_rule.hpp>
16 #include <boost/url/rfc/sub_delim_chars.hpp>
17 #include <boost/url/rfc/unreserved_chars.hpp>
18 #include <boost/url/grammar/parse.hpp>
19
20 namespace boost {
21 namespace urls {
22 namespace detail {
23
24 BOOST_URL_CXX20_CONSTEXPR_OR_INLINE
25 auto
26 6556x userinfo_rule_t::
27 parse(
28 char const*& it,
29 char const* const end
30 ) const noexcept ->
31 system::result<value_type>
32 {
33 6556x constexpr auto uchars =
34 unreserved_chars +
35 sub_delim_chars;
36 6556x constexpr auto pwchars =
37 uchars + ':';
38
39 6556x value_type t;
40
41 // user
42 6556x auto rv = grammar::parse(
43 6556x it, end, pct_encoded_rule(
44 6556x grammar::ref(uchars)));
45 6556x if(! rv)
46 8x return rv.error();
47 6548x t.user = *rv;
48
49 // ':'
50 6548x if( it == end ||
51 6249x *it != ':')
52 {
53 6012x t.has_password = false;
54 6012x t.password = {};
55 6012x return t;
56 }
57 536x ++it;
58
59 // pass
60 536x rv = grammar::parse(
61 536x it, end, pct_encoded_rule(
62 536x grammar::ref(pwchars)));
63 536x if(! rv)
64 return rv.error();
65
66 536x t.has_password = true;
67 536x t.password = *rv;
68 536x return t;
69 }
70
71 } // detail
72 } // urls
73 } // boost
74
75
76 #endif
77