我写了一个解析器如下:
class LogParser extends JavaTokenParsers {
def invertedIndex: Parser[Array[Array[(Int, Int)]]] = {
num ~> num ~> num ~> rep(postingsList) ^^ {
_.toArray
}
}
def postingsList: Parser[Array[(Int, Int)]] = {
num ~> rep(entry) ^^ {
_.toArray
}
}
def entry = {
num ~ "," ~ num ^^ {
case docID ~ "," ~ count => (docID.toInt, count.toInt)
}
}
def num = wholeNumber ^^ (_.toInt)
}
如果我使用FileReader从(270MB)文件解析如下:
val index = parseAll(invertedIndex, new FileReader("path/to/file")).get
我得到一个Exception in thread "main" java.lang.StackOverflowError
(我也尝试用BufferedReader
包装)但是我可以通过首先将文件读入一个字符串来解决它:
val input = io.Source.fromFile("path/to/file")
val str = input.mkString
input.close()
val index = parseAll(invertedIndex, str).get
为什么会这样?有没有办法避免首先将它作为字符串读取,这似乎是浪费?
答案 0 :(得分:1)
还有另一个库[1]很像支持Trampolining的scala解析器组合器,这是你需要停止堆栈溢出错误。