Class: LooseTightDictionary
- Inherits:
-
Object
- Object
- LooseTightDictionary
- Defined in:
- lib/loose_tight_dictionary.rb,
lib/loose_tight_dictionary/score.rb,
lib/loose_tight_dictionary/result.rb,
lib/loose_tight_dictionary/version.rb,
lib/loose_tight_dictionary/wrapper.rb,
lib/loose_tight_dictionary/blocking.rb,
lib/loose_tight_dictionary/identity.rb,
lib/loose_tight_dictionary/stop_word.rb,
lib/loose_tight_dictionary/tightener.rb,
lib/loose_tight_dictionary/similarity.rb,
lib/loose_tight_dictionary/cached_result.rb
Overview
See the README for more information.
Defined Under Namespace
Classes: Blocking, CachedResult, Identity, Result, Score, Similarity, StopWord, Tightener, Wrapper
Constant Summary collapse
- VERSION =
'1.0.5'
Instance Attribute Summary collapse
-
#blockings ⇒ Object
readonly
Returns the value of attribute blockings.
-
#default_first_blocking_decides ⇒ Object
readonly
Returns the value of attribute default_first_blocking_decides.
-
#default_must_match_at_least_one_word ⇒ Object
readonly
Returns the value of attribute default_must_match_at_least_one_word.
-
#default_must_match_blocking ⇒ Object
readonly
Returns the value of attribute default_must_match_blocking.
-
#haystack ⇒ Object
readonly
Returns the value of attribute haystack.
-
#identities ⇒ Object
readonly
Returns the value of attribute identities.
-
#stop_words ⇒ Object
readonly
Returns the value of attribute stop_words.
-
#tighteners ⇒ Object
readonly
Returns the value of attribute tighteners.
Instance Method Summary collapse
-
#explain(needle, options = {}) ⇒ Object
Explain is like mysql’s EXPLAIN command.
- #find(needle, options = {}) ⇒ Object
- #find_all(needle, options = {}) ⇒ Object
- #free ⇒ Object
- #freed? ⇒ Boolean
-
#initialize(records, options = {}) ⇒ LooseTightDictionary
constructor
haystack - a bunch of records options * tighteners: regexps (see readme) * identities: regexps * blockings: regexps * stop_words: regexps * read: how to interpret each entry in the ‘haystack’, either a Proc or a symbol.
- #last_result ⇒ Object
-
#log(str = '') ⇒ Object
:nodoc:.
Constructor Details
#initialize(records, options = {}) ⇒ LooseTightDictionary
haystack - a bunch of records options
-
tighteners: regexps (see readme)
-
identities: regexps
-
blockings: regexps
-
stop_words: regexps
-
read: how to interpret each entry in the ‘haystack’, either a Proc or a symbol
36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/loose_tight_dictionary.rb', line 36 def initialize(records, = {}) = .symbolize_keys @default_first_blocking_decides = [:first_blocking_decides] @default_must_match_blocking = [:must_match_blocking] @default_must_match_at_least_one_word = [:must_match_at_least_one_word] @blockings = .fetch(:blockings, []).map { |regexp_or_str| Blocking.new regexp_or_str } @identities = .fetch(:identities, []).map { |regexp_or_str| Identity.new regexp_or_str } @tighteners = .fetch(:tighteners, []).map { |regexp_or_str| Tightener.new regexp_or_str } @stop_words = .fetch(:stop_words, []).map { |regexp_or_str| StopWord.new regexp_or_str } read = [:read] || [:haystack_reader] @haystack = records.map { |record| Wrapper.new self, record, read } end |
Instance Attribute Details
#blockings ⇒ Object (readonly)
Returns the value of attribute blockings.
21 22 23 |
# File 'lib/loose_tight_dictionary.rb', line 21 def blockings @blockings end |
#default_first_blocking_decides ⇒ Object (readonly)
Returns the value of attribute default_first_blocking_decides.
25 26 27 |
# File 'lib/loose_tight_dictionary.rb', line 25 def default_first_blocking_decides @default_first_blocking_decides end |
#default_must_match_at_least_one_word ⇒ Object (readonly)
Returns the value of attribute default_must_match_at_least_one_word.
27 28 29 |
# File 'lib/loose_tight_dictionary.rb', line 27 def default_must_match_at_least_one_word @default_must_match_at_least_one_word end |
#default_must_match_blocking ⇒ Object (readonly)
Returns the value of attribute default_must_match_blocking.
26 27 28 |
# File 'lib/loose_tight_dictionary.rb', line 26 def default_must_match_blocking @default_must_match_blocking end |
#haystack ⇒ Object (readonly)
Returns the value of attribute haystack.
20 21 22 |
# File 'lib/loose_tight_dictionary.rb', line 20 def haystack @haystack end |
#identities ⇒ Object (readonly)
Returns the value of attribute identities.
22 23 24 |
# File 'lib/loose_tight_dictionary.rb', line 22 def identities @identities end |
#stop_words ⇒ Object (readonly)
Returns the value of attribute stop_words.
24 25 26 |
# File 'lib/loose_tight_dictionary.rb', line 24 def stop_words @stop_words end |
#tighteners ⇒ Object (readonly)
Returns the value of attribute tighteners.
23 24 25 |
# File 'lib/loose_tight_dictionary.rb', line 23 def tighteners @tighteners end |
Instance Method Details
#explain(needle, options = {}) ⇒ Object
Explain is like mysql’s EXPLAIN command. You give it a needle and it tells you about how it was located (successfully or not) in the haystack.
d = LooseTightDictionary.new ['737', '747', '757' ]
d.explain 'boeing 737-100'
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 |
# File 'lib/loose_tight_dictionary.rb', line 177 def explain(needle, = {}) record = find needle, .merge(:gather_last_result => true) log "#" * 150 log "# Match #{needle.inspect} => #{record.inspect}" log "#" * 150 log log "Needle" log "-" * 150 log last_result.needle.render log log "Stop words" log last_result.stop_words.blank? ? '(none)' : last_result.stop_words.map { |stop_word| stop_word.inspect }.join("\n") log log "Candidates" log "-" * 150 log last_result.candidates.map { |record| record.render }.join("\n") log log "Tighteners" log "-" * 150 log last_result.tighteners.blank? ? '(none)' : last_result.tighteners.map { |tightener| tightener.inspect }.join("\n") log log "Blockings" log "-" * 150 log last_result.blockings.blank? ? '(none)' : last_result.blockings.map { |blocking| blocking.inspect }.join("\n") log log "Identities" log "-" * 150 log last_result.identities.blank? ? '(none)' : last_result.identities.map { |blocking| blocking.inspect }.join("\n") log log "Joint" log "-" * 150 log last_result.joint.blank? ? '(none)' : last_result.joint.map { |joint| joint.render }.join("\n") log log "Disjoint" log "-" * 150 log last_result.disjoint.blank? ? '(none)' : last_result.disjoint.map { |disjoint| disjoint.render }.join("\n") log log "Possibly identical" log "-" * 150 log last_result.possibly_identical.blank? ? '(none)' : last_result.possibly_identical.map { |possibly_identical| possibly_identical.render }.join("\n") log log "Certainly different" log "-" * 150 log last_result.certainly_different.blank? ? '(none)' : last_result.certainly_different.map { |certainly_different| certainly_different.render }.join("\n") log log "Similarities" log "-" * 150 log last_result.similarities.blank? ? '(none)' : last_result.similarities.reverse[0..9].map { |similarity| similarity.inspect }.join("\n") log log "Match" log "-" * 150 log record.inspect end |
#find(needle, options = {}) ⇒ Object
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 |
# File 'lib/loose_tight_dictionary.rb', line 58 def find(needle, = {}) raise ::RuntimeError, "[loose_tight_dictionary] Dictionary has already been freed, can't perform more finds" if freed? = .symbolize_keys gather_last_result = .fetch(:gather_last_result, false) is_find_all = .fetch(:find_all, false) first_blocking_decides = .fetch(:first_blocking_decides, default_first_blocking_decides) must_match_blocking = .fetch(:must_match_blocking, default_must_match_blocking) must_match_at_least_one_word = .fetch(:must_match_at_least_one_word, default_must_match_at_least_one_word) if gather_last_result free_last_result @last_result = Result.new end if gather_last_result last_result.tighteners = tighteners last_result.identities = identities last_result.blockings = blockings last_result.stop_words = stop_words end needle = Wrapper.new self, needle if gather_last_result last_result.needle = needle end if must_match_blocking and blockings.any? and blockings.none? { |blocking| blocking.match? needle } if is_find_all return [] else return nil end end candidates = if must_match_at_least_one_word haystack.select do |straw| (needle.words & straw.words).any? end else haystack end if gather_last_result last_result.candidates = candidates end joint, disjoint = if blockings.any? candidates.partition do |straw| if first_blocking_decides blockings.detect { |blocking| blocking.match? needle }.try :join?, needle, straw else blockings.any? { |blocking| blocking.join? needle, straw } end end else [ candidates.dup, [] ] end if joint.none? if must_match_blocking if is_find_all return [] else return nil end else # special case: the needle didn't fit anywhere, but must_match_blocking is false, so we'll try it against everything joint = disjoint disjoint = [] end end if gather_last_result last_result.joint = joint last_result.disjoint = disjoint end possibly_identical, certainly_different = if identities.any? joint.partition do |straw| identities.all? do |identity| answer = identity.identical? needle, straw answer.nil? or answer == true end end else [ joint.dup, [] ] end if gather_last_result last_result.possibly_identical = possibly_identical last_result.certainly_different = certainly_different end if is_find_all return possibly_identical.map { |straw| straw.record } end similarities = possibly_identical.map { |straw| needle.similarity straw }.sort if gather_last_result last_result.similarities = similarities end if best_similarity = similarities[-1] and best_similarity.best_score.dices_coefficient > 0 record = best_similarity.wrapper2.record if gather_last_result last_result.record = record last_result.score = best_similarity.best_score.dices_coefficient end record end end |
#find_all(needle, options = {}) ⇒ Object
53 54 55 56 |
# File 'lib/loose_tight_dictionary.rb', line 53 def find_all(needle, = {}) = .symbolize_keys.merge(:find_all => true) find needle, end |
#free ⇒ Object
239 240 241 242 243 244 245 |
# File 'lib/loose_tight_dictionary.rb', line 239 def free free_last_result @haystack.try :clear @haystack = nil ensure @freed = true end |
#freed? ⇒ Boolean
235 236 237 |
# File 'lib/loose_tight_dictionary.rb', line 235 def freed? @freed == true end |
#last_result ⇒ Object
49 50 51 |
# File 'lib/loose_tight_dictionary.rb', line 49 def last_result @last_result || raise(::RuntimeError, "[loose_tight_dictionary] You can't access the last result until you've run a find with :gather_last_result => true") end |
#log(str = '') ⇒ Object
:nodoc:
231 232 233 |
# File 'lib/loose_tight_dictionary.rb', line 231 def log(str = '') #:nodoc: $stderr.puts str end |