123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- //
- // Copyright (c) 2016-2019 Vinnie Falco (vinnie dot falco at gmail dot com)
- //
- // Distributed under the Boost Software License, Version 1.0. (See accompanying
- // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- //
- // Official repository: https://github.com/boostorg/url
- //
- #ifndef BOOST_URL_GRAMMAR_DELIM_RULE_HPP
- #define BOOST_URL_GRAMMAR_DELIM_RULE_HPP
- #include <boost/url/detail/config.hpp>
- #include <boost/core/detail/string_view.hpp>
- #include <boost/url/grammar/charset.hpp>
- #include <boost/url/grammar/error.hpp>
- #include <boost/url/grammar/type_traits.hpp>
- #include <type_traits>
- namespace boost {
- namespace urls {
- namespace grammar {
- /** Match a character literal
- This matches the specified character.
- The value is a reference to the character
- in the underlying buffer, expressed as a
- `core::string_view`. The function @ref squelch
- may be used to turn this into `void` instead.
- If there is no more input, the error code
- @ref error::need_more is returned.
- @par Value Type
- @code
- using value_type = core::string_view;
- @endcode
- @par Example
- Rules are used with the function @ref parse.
- @code
- system::result< core::string_view > rv = parse( ".", delim_rule('.') );
- @endcode
- @par BNF
- @code
- char = %00-FF
- @endcode
- @param ch The character to match
- @see
- @ref parse,
- @ref squelch.
- */
- #ifdef BOOST_URL_DOCS
- constexpr
- __implementation_defined__
- delim_rule( char ch ) noexcept;
- #else
- struct ch_delim_rule
- {
- using value_type = core::string_view;
- constexpr
- ch_delim_rule(char ch) noexcept
- : ch_(ch)
- {
- }
- BOOST_URL_DECL
- system::result<value_type>
- parse(
- char const*& it,
- char const* end) const noexcept;
- private:
- char ch_;
- };
- constexpr
- ch_delim_rule
- delim_rule( char ch ) noexcept
- {
- return ch_delim_rule(ch);
- }
- #endif
- //------------------------------------------------
- /** Match a single character from a character set
- This matches exactly one character which
- belongs to the specified character set.
- The value is a reference to the character
- in the underlying buffer, expressed as a
- `core::string_view`. The function @ref squelch
- may be used to turn this into `void` instead.
- If there is no more input, the error code
- @ref error::need_more is returned.
- @par Value Type
- @code
- using value_type = core::string_view;
- @endcode
- @par Example
- Rules are used with the function @ref parse.
- @code
- system::result< core::string_view > rv = parse( "X", delim_rule( alpha_chars ) );
- @endcode
- @param cs The character set to use.
- @see
- @ref alpha_chars,
- @ref parse,
- @ref squelch.
- */
- #ifdef BOOST_URL_DOCS
- template<class CharSet>
- constexpr
- __implementation_defined__
- delim_rule( CharSet const& cs ) noexcept;
- #else
- template<class CharSet>
- struct cs_delim_rule
- {
- using value_type = core::string_view;
- constexpr
- cs_delim_rule(
- CharSet const& cs) noexcept
- : cs_(cs)
- {
- }
- system::result<value_type>
- parse(
- char const*& it,
- char const* end) const noexcept
- {
- if(it == end)
- {
- // end
- BOOST_URL_RETURN_EC(
- error::need_more);
- }
- if(! cs_(*it))
- {
- // wrong character
- BOOST_URL_RETURN_EC(
- error::mismatch);
- }
- return core::string_view{
- it++, 1 };
- }
- private:
- CharSet cs_;
- };
- template<class CharSet>
- constexpr
- typename std::enable_if<
- ! std::is_convertible<
- CharSet, char>::value,
- cs_delim_rule<CharSet>>::type
- delim_rule(
- CharSet const& cs) noexcept
- {
- // If you get a compile error here it
- // means that your type does not meet
- // the requirements for a CharSet.
- // Please consult the documentation.
- static_assert(
- is_charset<CharSet>::value,
- "CharSet requirements not met");
- return cs_delim_rule<CharSet>(cs);
- }
- #endif
- } // grammar
- } // urls
- } // boost
- #endif
|