Sha256: 23d3980b508cdab56244c8e9833ca3a1cb138bf6610f5ba4d8b6cd7f616c3b51

Contents?: true

Size: 1.58 KB

Versions: 3

Compression:

Stored size: 1.58 KB

Contents

require_relative 'parse_walker_factory'

module Rley # This module is used as a namespace
  module Parser # This module is used as a namespace
    # Utility class that helps to create a representation of a parse from
    # a given Parsing object.
    class ParseRepCreator
      # @return [GFGParsing] Link to Parsing object (= results of recognizer)
      attr_reader(:parsing)
      
      # Constructor. Creates and initialize a ParseRepCreator instance.
      # @return [ParseRepCreator]
      def initialize(aParsingResult)
        @parsing = aParsingResult
      end      
      
      # Factory method that produces the representation of the parse.
      # @return [ParseTree] The parse representation.
      def create(aBuilder = nil)
        a_walker = walker(parsing)
        a_builder = builder(parsing, aBuilder)

        begin
          loop do
            event = a_walker.next
            # puts "EVENT #{event[0]} #{event[1]}"
            a_builder.receive_event(*event)
          end
        rescue StopIteration
          # Do nothing
        end

        return a_builder.result
      end
      
      private
      
      # Create a Parsing walker, that is, an object
      # that will iterate over the relevant nodes (= parsing entries)
      # of a GFGParsing
      def walker(aParseResult)
        walker_factory = ParseWalkerFactory.new
        accept_entry = aParseResult.accepting_entry
        accept_index = aParseResult.chart.last_index
        walker_factory.build_walker(accept_entry, accept_index)
      end      
      
    end # class
  end # module
end # module

# End of file 
   

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rley-0.5.04 lib/rley/parser/parse_rep_creator.rb
rley-0.5.03 lib/rley/parser/parse_rep_creator.rb
rley-0.5.02 lib/rley/parser/parse_rep_creator.rb