#-- # DO NOT MODIFY!!!! # This file is automatically generated by rex 1.0.5 # from lexical definition file "lib/fluent/plugin/filter_where/parser.rex". #++ require 'racc/parser' class Fluent::FilterWhere::Parser < Racc::Parser require 'strscan' class ScanError < StandardError ; end attr_reader :lineno attr_reader :filename attr_accessor :state def scan_setup(str) @ss = StringScanner.new(str) @lineno = 1 @state = nil end def action yield end def scan_str(str) scan_setup(str) do_parse end alias :scan :scan_str def load_file( filename ) @filename = filename open(filename, "r") do |f| scan_setup(f.read) end end def scan_file( filename ) load_file(filename) do_parse end def next_token return if @ss.eos? # skips empty actions until token = _next_token or @ss.eos?; end token end def _next_token text = @ss.peek(1) @lineno += 1 if text == "\n" token = case @state when nil case when (text = @ss.scan(/\(/i)) action { [:"(", text] } when (text = @ss.scan(/\)/i)) action { [:")", text] } when (text = @ss.scan(/\=/i)) action { [:EQ, text] } when (text = @ss.scan(/\<\>/i)) action { [:NEQ, text] } when (text = @ss.scan(/\!\=/i)) action { [:NEQ, text] } when (text = @ss.scan(/\>\=/i)) action { [:GE, text] } when (text = @ss.scan(/\>/i)) action { [:GT, text] } when (text = @ss.scan(/\<\=/i)) action { [:LE, text] } when (text = @ss.scan(/\