Sha256: 6df46fd8670d9d7e2293722b60c6719c7243a75df092bc295b114e1af4246fcf

Contents?: true

Size: 1.38 KB

Versions: 9

Compression:

Stored size: 1.38 KB

Contents

require 'strscan'

# Load the builder class
require_relative '../../../lib/rley/syntax/grammar_builder'
require_relative '../../../lib/rley/lexical/token'


module GrammarArrIntHelper
  # Factory method. Creates a grammar builder for a grammar of
  # array of integers.
  # (based on the article about Earley's algorithm in Wikipedia)
  def grammar_arr_int_builder()
    builder = Rley::Syntax::GrammarBuilder.new do
      add_terminals('[', ']', ',', 'integer')
      rule 'P' => 'arr'
      rule 'arr' => %w([ sequence ])
      rule 'sequence' => ['list']
      rule 'sequence' => []
      rule 'list' => %w[list , integer] # Right-recursive rule
      rule 'list' => 'integer'
    end
    builder
  end

  # Basic tokenizer for array of integers
  def arr_int_tokenizer(aText, aGrammar)
    tokens = []
    scanner = StringScanner.new(aText)

    until scanner.eos?
      scanner.skip(/\s+/)
      lexeme = scanner.scan(/[\[,\]]/)
      if lexeme
        terminal = aGrammar.name2symbol[lexeme]
        tokens << Rley::Lexical::Token.new(lexeme, terminal)
        next
      end
      lexeme = scanner.scan(/^[-+]?\d+/)
      if lexeme
        terminal = aGrammar.name2symbol['integer']
        tokens << Rley::Lexical::Token.new(lexeme, terminal)
      else
        msg = "Unknown input text '#{lexeme}'"
        raise StandardError, msg
      end
    end

    return tokens
  end
end # module
# End of file

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rley-0.5.14 spec/rley/support/grammar_arr_int_helper.rb
rley-0.5.13 spec/rley/support/grammar_arr_int_helper.rb
rley-0.5.12 spec/rley/support/grammar_arr_int_helper.rb
rley-0.5.11 spec/rley/support/grammar_arr_int_helper.rb
rley-0.5.10 spec/rley/support/grammar_arr_int_helper.rb
rley-0.5.09 spec/rley/support/grammar_arr_int_helper.rb
rley-0.5.08 spec/rley/support/grammar_arr_int_helper.rb
rley-0.5.07 spec/rley/support/grammar_arr_int_helper.rb
rley-0.5.06 spec/rley/support/grammar_arr_int_helper.rb