Sha256: d81facdb76f7cceaedbc6ca367ea229b2e8b306b67bbcefc430911708fb949a7

Contents?: true

Size: 1.87 KB

Versions: 5

Compression:

Stored size: 1.87 KB

Contents

module SexpPath
  module Traverse
    # Searches for the +pattern+ returning a SexpCollection containing 
    # a SexpResult for each match.
    #
    # Example:
    #   s(:a, s(:b)) / Q{ s(:b) } => [s(:b)]
    def search(pattern, data={})
      collection = SexpCollection.new
      search_each(pattern,data){|match| collection << match}
      collection
    end
    alias_method :/, :search
    
    # Searches for the +pattern+ yielding a SexpResult
    # for each match.
    #
    def search_each(pattern, data={}, &block)
      return false unless pattern.is_a? Sexp
  
      if pattern.satisfy?(self, data)
        block.call(SexpResult.new(self, data))
      end
  
      self.each do |subset|
        case subset
          when Sexp then subset.search_each(pattern, data, &block)
        end
      end
    end
    
    # Searches for the +pattern+ yielding a SexpResult
    # for each match, and replacing it with the result of
    # the block. 
    #
    # There is no guarantee that the result will or will not 
    # be the same object passed in, meaning this mutates, or replaces
    # the original sexp.
    def replace_sexp(pattern, data={}, &block)
      return self unless pattern.is_a? Sexp
  
      if pattern.satisfy?(self, data)
        return block.call(SexpResult.new(self, data))
      end
      
      self.each_with_index do |subset, i|
        case subset
          when Sexp then self[i] = (subset.replace_sexp(pattern, data, &block))
        end
      end
      
      return self
    end
    
    # Sets a named capture for the Matcher.  If a SexpResult is returned
    # any named captures will be available it.
    def capture_as(name)
      @capture_name = name
      self
    end
    alias_method :%, :capture_as

    private  
    def capture_match(matching_object, data)
      if @capture_name
        data[@capture_name] = matching_object
      end

      data
    end
  end
end

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
adamsanderson-sexp_path-0.4.0 lib/sexp_path/traverse.rb
sexp_path-0.5.2 lib/sexp_path/traverse.rb
sexp_path-0.5.1 lib/sexp_path/traverse.rb
sexp_path-0.5.0 lib/sexp_path/traverse.rb
sexp_path-0.4.0 lib/sexp_path/traverse.rb