Sha256: 239b7153a0361f872b02de5ee25d24f2ba96d17a84df0de42d18b98aa4ea91e1
Contents?: true
Size: 1.82 KB
Versions: 83
Compression:
Stored size: 1.82 KB
Contents
module Recog class Matcher attr_reader :fingerprints, :reporter, :multi_match # @param fingerprints Array of [Recog::Fingerprint] The list of fingerprints from the Recog DB to find possible matches. # @param reporter [Recog::MatchReporter] The reporting structure that holds the matches and fails # @param multi_match [Boolean] specifies whether or not to use multi-match (true) or not (false) def initialize(fingerprints, reporter, multi_match) @fingerprints = fingerprints @reporter = reporter @multi_match = multi_match end # @param banners_file [String] The source of banners to attempt to match against the Recog DB. def match_banners(banners_file) reporter.report do fd = $stdin file_source = false if banners_file and banners_file != "-" fd = File.open(banners_file, "rb") file_source = true end fd.each_line do |line| reporter.increment_line_count line = line.to_s.unpack("C*").pack("C*").strip.gsub(/\\[rn]/, '') found_extractions = false all_extractions = [] fingerprints.each do |fp| extractions = fp.match(line) if extractions found_extractions = true extractions['data'] = line if multi_match all_extractions << extractions else reporter.match "MATCH: #{extractions.inspect}" break end end end if found_extractions match_prefix = all_extractions.size > 1 ? 'MATCHES' : 'MATCH' reporter.match "#{match_prefix}: #{all_extractions.map(&:inspect).join(',')}" if multi_match else reporter.failure "FAIL: #{line}" end if reporter.stop? break end end fd.close if file_source end end end end
Version data entries
83 entries across 83 versions & 1 rubygems
Version | Path |
---|---|
recog-2.0.18 | lib/recog/matcher.rb |
recog-2.0.17 | lib/recog/matcher.rb |
recog-2.0.16 | lib/recog/matcher.rb |