Sha256: 2bec82476b9497c1f627d60fb18e42460c4e804814627246049c77d02d70d94f

Contents?: true

Size: 977 Bytes

Versions: 7

Compression:

Stored size: 977 Bytes

Contents

require 'sexp_processor'

##
# Implements the Composite pattern on SexpProcessor. Need we say more?
#
# Yeah... probably. Implements a SexpProcessor of SexpProcessors so
# you can easily chain multiple to each other. At some stage we plan
# on having all of them run +process+ and but only ever output
# something when +generate+ is called, allowing for deferred final
# processing.

class CompositeSexpProcessor < SexpProcessor

  ##
  # The list o' processors to run.

  attr_reader :processors

  def initialize # :nodoc:
    super
    @processors = []
  end

  ##
  # Add a +processor+ to the list of processors to run.

  def <<(processor)
    raise ArgumentError, "Can only add sexp processors" unless
      SexpProcessor === processor
    @processors << processor
  end

  ##
  # Run +exp+ through all of the processors, returning the final
  # result.

  def process(exp)
    @processors.each do |processor|
      exp = processor.process(exp)
    end
    exp
  end
end

Version data entries

7 entries across 7 versions & 2 rubygems

Version Path
ParseTree-1.3.3 lib/composite_sexp_processor.rb
ParseTree-1.3.2 lib/composite_sexp_processor.rb
ParseTree-1.3.0 lib/composite_sexp_processor.rb
ParseTree-1.3.4 lib/composite_sexp_processor.rb
ParseTree-1.2.0 lib/composite_sexp_processor.rb
nitro-0.11.0 vendor/composite_sexp_processor.rb
nitro-0.12.0 vendor/composite_sexp_processor.rb