Grammar.parse似乎永远循环并使用100%的CPU

前端之家收集整理的这篇文章主要介绍了Grammar.parse似乎永远循环并使用100%的CPU前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
转自 the #perl6 IRC channel,by jkramer,with permission

我正在玩语法并试图解析一个ini风格的文件,但不知何故,Grammar.parse似乎永远循环并使用100%的cpu.任何想法在这里有什么问题?

grammar Format {
  token TOP {
    [
      <comment>*
      [
        <section>
        [ <line> | <comment> ]*
      ]*
    ]*
  }

  rule section {
    '[' <identifier> <subsection>? ']'
  }

  rule subsection {
    '"' <identifier> '"'
  }

  rule identifier {
    <[A..Za..z]> <[A..Za..z0..9_-]>+
  }

  rule comment {
    <[";]> .*? $$
  }

  rule line {
    <key> '=' <value>
  }

  rule key {
    <identifier>
  }

  rule value {
    .*? $$
  }
}

Format.parse('lol.conf'.IO.slurp)

解决方法

Token TOP在subregex上具有可以解析空字符串的*量词(因为< comment>和包含< section>的组都有自己的*量词).

如果内部子规则匹配空字符串,它可以无限次地执行,而不会使光标前进.目前,Perl 6没有针对此类错误的保护.

在我看来,你可以简化你的代码

token TOP {
  <comment>*
  [
    <section>
    [ <line> | <comment> ]*
  ]*
}

(不需要[…] *的外部组,因为最后的< comment>也匹配部分之前的注释.

原文链接:https://www.f2er.com/Perl/241648.html

猜你在找的Perl相关文章