c++ - boost 灵气 : changing tag of specialized uint_parser

标签 c++ boost boost-spirit boost-spirit-qi

我刚刚在 Qi 中实现了一个基本解析器来验证指定的 TCP 端口范围,例如80-444。

  template<class It>
  struct port_range_grammar : qi::grammar<It, port_range_type()>
  {
    port_range_grammar()
      : port_range_grammar::base_type(start, "port_range")
    {
      using qi::lit;

      start = port > lit("-") > port;
    }

  private:
    qi::rule<It, port_range_type()> start;
    qi::uint_parser<uint16_t, 10, 2, 5> port;
  };

为了使错误更具描述性,我在启动规则中附加了一个错误处理程序(在某些上层语法中,嵌入了这个规则),例如:

 // this how the code is attached to the start rule in the top level grammar:

  start = (tcp_endpoint | ipc_endpoint | inproc_endpoint)[_val=_1] > eoi;

  on_error<fail>
    ( start
    , pnx::bind
      ( [](auto const& what, auto begin, auto end)
          {
            ERROR_AC << "Expecting "
                     << what
                     << " here: '"
                     << std::string(begin, end)
                     << "'"
            ;
          }
      , _4
      , _3
      , _2
      )
    )
  ;

除了一个小异常(exception)之外,一切都运行良好,当我将一些无效的 16 位无符号数作为端口传递时,我看到一个错误,但它的描述性不够:

Expecting <unsigned-integer> here: '74888'

现在库的用户无法理解 74888 是无效的 16 位 uint。 unsiged-integer 是附加到 qi::uint_parser 的标签。有什么办法可以改变这个标签吗?

最佳答案

我只需将名称附加到非终结规则:

        port = uint_parser<uint16_t, 10, 2, 5>();
        port.name("valid port number 10-65535");

查看 Live On Coliru

#include <boost/fusion/adapted/std_pair.hpp>
#include <boost/spirit/include/qi.hpp>
#include <boost/spirit/include/phoenix.hpp>
namespace qi = boost::spirit::qi;
namespace pnx = boost::phoenix;

using port_range_type = std::pair<uint16_t, uint16_t>;

template<class It>
struct port_range_grammar : qi::grammar<It, port_range_type()>
{
    port_range_grammar()
        : port_range_grammar::base_type(start, "port_range")
    {
        using namespace qi;
        port = uint_parser<uint16_t, 10, 2, 5>();
        port.name("valid port number 10-65535");

        start = port > lit("-") > port;
        /*start = (tcp_endpoint | ipc_endpoint | inproc_endpoint)[_val=_1] > eoi;*/

        on_error<fail>
            ( start
              , pnx::bind
              ( [](auto const& what, auto begin, auto end)
                {
                    std::cerr << "Expecting "
                        << what
                        << " here: '"
                        << std::string(begin, end)
                        << "'\n"
                        ;
                } , _4 , _3 , _2
              )
            )
            ;
    }

  private:
    qi::rule<It, port_range_type()> start;
    qi::rule<It, uint16_t()> port;
};

int main() {
    using It = std::string::const_iterator;
    std::string const input = "11-1q0";

    It f = input.begin(), l = input.end();
    port_range_type range;
    bool ok = qi::parse(f, l, port_range_grammar<It>{}, range);

    if (ok) {
        std::cout << "Parsed port " << range.first << " to " << range.second << "\n";
    } else {
        std::cout << "Parse failed\n";
    }

    if (f!=l)
        std::cout << "Remaining unparsed: '" << std::string(f,l) << "'\n";
}

打印

Expecting <valid port number 10-65535> here: '1q0'
Parse failed
Remaining unparsed: '11-1q0'

关于c++ - boost 灵气 : changing tag of specialized uint_parser,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44156112/

相关文章:

c++ - fusion 适应结构中的 Boost spirit x3 元组成员

c++ - 路径验证的 spirit 语法

c++ - 有没有办法将 8bitX32 ymm 寄存器向右/向左移动 N 个位置(C++)

c++ - 将 unicode 替换为 C++ 字符串中的空格时出现段错误

c++ - 从 Boost 线程返回 Double

c++ - Boost 引用变体和相等性比较

macos - Boost:MacOSX二进制文件用于Boost

c++ - 跟随位操作的优化机会?

c++ - short int 上的 G++ abs() 似乎将其变成了 double?

c++ - 使用 Boost.Spirit 解析嵌套列表