// // 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 #include #include #include #include #include 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 @ref 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 = string_view; @endcode @par Example Rules are used with the function @ref parse. @code result< 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 = string_view; constexpr ch_delim_rule(char ch) noexcept : ch_(ch) { } BOOST_URL_DECL result 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 @ref 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 = string_view; @endcode @par Example Rules are used with the function @ref parse. @code result< 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 constexpr __implementation_defined__ delim_rule( CharSet const& cs ) noexcept; #else template struct cs_delim_rule { using value_type = string_view; constexpr cs_delim_rule( CharSet const& cs) noexcept : cs_(cs) { } result 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 string_view{ it++, 1 }; } private: CharSet cs_; }; template constexpr typename std::enable_if< ! std::is_convertible< CharSet, char>::value, cs_delim_rule>::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::value, "CharSet requirements not met"); return cs_delim_rule(cs); } #endif } // grammar } // urls } // boost #endif