Sha256: f35acb5b478c43e4fc7647e40fe642d3aaaf327568381d7593acaa0eb05d2b89

Contents?: true

Size: 1.09 KB

Versions: 2

Compression:

Stored size: 1.09 KB

Contents

class LooseTightDictionary
  # "Record linkage typically involves two main steps: blocking and scoring..."
  # http://en.wikipedia.org/wiki/Record_linkage
  #
  # Blockings effectively divide up the haystack into groups that match a pattern
  #
  # A blocking (as in a grouping) comes into effect when a str matches.
  # Then the needle must also match the blocking's regexp.
  class Blocking
    include ExtractRegexp
    
    attr_reader :regexp
    
    def initialize(regexp_or_str)
      @regexp = extract_regexp regexp_or_str
    end

    # If a blocking "encompasses" two strings, that means they both fit into it.
    #
    # Returns false if they certainly don't fit this blocking.
    # Returns nil if the blocking doesn't apply, i.e. str2 doesn't fit the blocking.
    def encompass?(str1, str2 = nil)
      if str2.nil?
        !!(regexp.match(str1))
      elsif str2_match_data = regexp.match(str2)
        if str1_match_data = regexp.match(str1)
          str2_match_data.captures == str1_match_data.captures
        else
          false
        end
      else
        nil
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
loose_tight_dictionary-0.1.1 lib/loose_tight_dictionary/blocking.rb
loose_tight_dictionary-0.1.0 lib/loose_tight_dictionary/blocking.rb