Class: Arachni::Support::Signature
- Defined in:
- lib/arachni/support/signature.rb
Overview
Instance Attribute Summary collapse
-
#tokens ⇒ Object
readonly
Returns the value of attribute tokens.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#differences(other) ⇒ Float
Ratio of difference between signatures.
-
#dup ⇒ Signature
Copy of ‘self`.
- #hash ⇒ Object
-
#initialize(data, options = {}) ⇒ Signature
constructor
A new instance of Signature.
-
#refine(data) ⇒ Signature
New, refined signature.
-
#refine!(data) ⇒ Signature
‘self`.
- #similar?(other, threshold = @options[:threshold]) ⇒ Bool
Constructor Details
#initialize(data, options = {}) ⇒ Signature
Note:
The string will be tokenized based on whitespace.
Returns a new instance of Signature.
27 28 29 30 31 32 33 34 |
# File 'lib/arachni/support/signature.rb', line 27 def initialize( data, = {} ) @tokens = tokenize( data ) @options = if @options[:threshold] && !@options[:threshold].is_a?( Numeric ) fail ArgumentError, 'Option :threshold must be a number.' end end |
Instance Attribute Details
#tokens ⇒ Object (readonly)
Returns the value of attribute tokens.
17 18 19 |
# File 'lib/arachni/support/signature.rb', line 17 def tokens @tokens end |
Instance Method Details
#==(other) ⇒ Object
92 93 94 |
# File 'lib/arachni/support/signature.rb', line 92 def ==( other ) hash == other.hash end |
#differences(other) ⇒ Float
Returns Ratio of difference between signatures.
63 64 65 66 67 68 69 |
# File 'lib/arachni/support/signature.rb', line 63 def differences( other ) return 1 if other.nil? return 0 if self == other ((tokens - other.tokens) | (other.tokens - tokens)).size / Float((other.tokens | tokens).size) end |
#dup ⇒ Signature
Returns Copy of ‘self`.
83 84 85 |
# File 'lib/arachni/support/signature.rb', line 83 def dup self.class.new( '' ).tap { |s| s.copy( tokens, @options ) } end |
#hash ⇒ Object
87 88 89 |
# File 'lib/arachni/support/signature.rb', line 87 def hash tokens.hash end |
#refine(data) ⇒ Signature
Note:
The string will be tokenized based on whitespace.
Returns New, refined signature.
55 56 57 |
# File 'lib/arachni/support/signature.rb', line 55 def refine( data ) dup.refine!( data ) end |
#refine!(data) ⇒ Signature
Note:
The string will be tokenized based on whitespace.
Returns ‘self`.
43 44 45 46 |
# File 'lib/arachni/support/signature.rb', line 43 def refine!( data ) @tokens &= tokenize( data ) self end |
#similar?(other, threshold = @options[:threshold]) ⇒ Bool
76 77 78 79 |
# File 'lib/arachni/support/signature.rb', line 76 def similar?( other, threshold = @options[:threshold] ) fail 'No threshold given.' if !threshold self == other || differences( other ) < threshold end |