Class: Recog::Matcher

Inherits:
Object
  • Object
show all
Defined in:
lib/recog/matcher.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(fingerprints, reporter) ⇒ Matcher

Returns a new instance of Matcher.



5
6
7
8
# File 'lib/recog/matcher.rb', line 5

def initialize(fingerprints, reporter)
  @fingerprints = fingerprints
  @reporter = reporter
end

Instance Attribute Details

#fingerprintsObject (readonly)

Returns the value of attribute fingerprints.



3
4
5
# File 'lib/recog/matcher.rb', line 3

def fingerprints
  @fingerprints
end

#reporterObject (readonly)

Returns the value of attribute reporter.



3
4
5
# File 'lib/recog/matcher.rb', line 3

def reporter
  @reporter
end

Instance Method Details

#match_banners(banners_file) ⇒ Object



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/recog/matcher.rb', line 10

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]/, '')
      extractions = nil
      fingerprints.each do |fp|
        break if (extractions = fp.match(line))
      end

      if extractions
        extractions['data'] = line
        reporter.match "MATCH: #{extractions.inspect}"
      else
        reporter.failure "FAIL: #{line}"
      end

      if reporter.stop?
        break
      end
    end

    fd.close if file_source

  end
end