libs/url/include/boost/url/grammar/impl/token_rule.hpp

100.0% Lines (9/9) 100.0% Functions (7/8) 100.0% Branches (4/4)
libs/url/include/boost/url/grammar/impl/token_rule.hpp
Line Branch Hits Source Code
1 //
2 // Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com)
3 //
4 // Distributed under the Boost Software License, Version 1.0. (See accompanying
5 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6 //
7 // Official repository: https://github.com/boostorg/http_proto
8 //
9
10 #ifndef BOOST_URL_IMPL_GRAMMAR_TOKEN_RULE_HPP
11 #define BOOST_URL_IMPL_GRAMMAR_TOKEN_RULE_HPP
12
13 #include <boost/url/grammar/error.hpp>
14
15 namespace boost {
16 namespace urls {
17 namespace grammar {
18
19 template<class CharSet>
20 auto
21 653 implementation_defined::token_rule_t<CharSet>::
22 parse(
23 char const*& it,
24 char const* end
25 ) const noexcept ->
26 system::result<value_type>
27 {
28 653 auto const it0 = it;
29
2/2
✓ Branch 0 taken 6 times.
✓ Branch 1 taken 632 times.
653 if(it == end)
30 {
31 6 BOOST_URL_RETURN_EC(
32 error::need_more);
33 }
34 647 auto const& cs = this->get();
35 647 it = grammar::find_if_not(it, end, cs);
36
2/2
✓ Branch 0 taken 575 times.
✓ Branch 1 taken 57 times.
647 if(it != it0)
37 590 return core::string_view(it0, it - it0);
38 57 BOOST_URL_RETURN_EC(
39 error::mismatch);
40 }
41
42 } // grammar
43 } // urls
44 } // boost
45
46 #endif
47