Class: Nexpose::IPRange

Inherits:
Object
  • Object
show all
Includes:
Comparable
Defined in:
lib/nexpose/site.rb

Overview

Object that represents a single IP address or an inclusive range of IP addresses. If to is nil then the from field will be used to specify a single IP Address only.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(from, to = nil) ⇒ IPRange

Returns a new instance of IPRange.



604
605
606
607
# File 'lib/nexpose/site.rb', line 604

def initialize(from, to = nil)
  @from = from
  @to = to unless from == to
end

Instance Attribute Details

#fromObject

Start of range *Required



600
601
602
# File 'lib/nexpose/site.rb', line 600

def from
  @from
end

#toObject

End of range *Optional (If nil then IPRange is a single IP Address)



602
603
604
# File 'lib/nexpose/site.rb', line 602

def to
  @to
end

Instance Method Details

#<=>(other) ⇒ Object



623
624
625
626
627
628
629
630
631
632
633
634
635
636
# File 'lib/nexpose/site.rb', line 623

def <=>(other)
  return 1 unless other.respond_to? :from
  from = IPAddr.new(@from)
  to = @to.nil? ? from : IPAddr.new(@to)
  cf_from = IPAddr.new(other.from)
  cf_to = IPAddr.new(other.to.nil? ? other.from : other.to)
  if cf_to < from
    1
  elsif to < cf_from
    -1
  else # Overlapping
    0
  end
end

#==(other) ⇒ Object



638
639
640
# File 'lib/nexpose/site.rb', line 638

def ==(other)
  eql?(other)
end

#as_xmlObject Also known as: to_xml_elem



666
667
668
669
670
# File 'lib/nexpose/site.rb', line 666

def as_xml
  xml = REXML::Element.new('range')
  xml.add_attributes({ 'from' => @from, 'to' => @to })
  xml
end

#eql?(other) ⇒ Boolean

Returns:

  • (Boolean)


642
643
644
645
# File 'lib/nexpose/site.rb', line 642

def eql?(other)
  return false unless other.respond_to? :from
  @from == other.from && @to == other.to
end

#hashObject



662
663
664
# File 'lib/nexpose/site.rb', line 662

def hash
  to_xml.hash
end

#include?(single_ip) ⇒ Boolean

Returns:

  • (Boolean)


647
648
649
650
651
652
653
654
655
656
657
658
659
660
# File 'lib/nexpose/site.rb', line 647

def include?(single_ip)
  return false unless single_ip.respond_to? :from
  from = IPAddr.new(@from)
  to = @to.nil? ? from : IPAddr.new(@to)
  other = IPAddr.new(single_ip)

  if other < from
    false
  elsif to < other
    false
  else
    true
  end
end

#sizeFixnum

Size of the IP range. The total number of IP addresses represented by this range.

Returns:

  • (Fixnum)

    size of the range.



614
615
616
617
618
619
# File 'lib/nexpose/site.rb', line 614

def size
  return 1 if @to.nil?
  from = IPAddr.new(@from)
  to = IPAddr.new(@to)
  (from..to).to_a.size
end

#to_xmlObject



673
674
675
# File 'lib/nexpose/site.rb', line 673

def to_xml
  as_xml.to_s
end