Class: VagrantPlugins::Skytap::Util::Subnet
- Defined in:
- lib/vagrant-skytap/util/subnet.rb
Defined Under Namespace
Classes: InvalidSubnet
Instance Attribute Summary collapse
-
#address ⇒ Object
readonly
Returns the value of attribute address.
-
#mask ⇒ Object
readonly
Returns the value of attribute mask.
-
#size ⇒ Object
readonly
Returns the value of attribute size.
Instance Method Summary collapse
- #<=>(other) ⇒ Object
- #==(other) ⇒ Object
- #contains?(ip) ⇒ Boolean
- #each_address ⇒ Object
-
#initialize(cidr_block) ⇒ Subnet
constructor
A new instance of Subnet.
- #max ⇒ Object
- #min_machine_ip ⇒ Object
- #network_portion ⇒ Object (also: #min)
- #normalize ⇒ Object
- #normalized? ⇒ Boolean
- #num_addresses ⇒ Object
- #overlaps?(other) ⇒ Boolean
- #strictly_subsumes?(other) ⇒ Boolean
- #subsumes?(other) ⇒ Boolean
- #to_s ⇒ Object
Constructor Details
#initialize(cidr_block) ⇒ Subnet
Returns a new instance of Subnet.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 33 def initialize(cidr_block) unless cidr_block =~ /^(.*)\/(.*)/ raise InvalidSubnet.new 'Not in CIDR block form (XX.XX.XX.XX/YY)' end network = $1 begin @size = Integer($2) rescue raise InvalidSubnet.new 'Invalid size' end @address = IpAddress.new(network) @mask = size_to_mask(@size) end |
Instance Attribute Details
#address ⇒ Object (readonly)
Returns the value of attribute address.
31 32 33 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 31 def address @address end |
#mask ⇒ Object (readonly)
Returns the value of attribute mask.
31 32 33 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 31 def mask @mask end |
#size ⇒ Object (readonly)
Returns the value of attribute size.
31 32 33 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 31 def size @size end |
Instance Method Details
#<=>(other) ⇒ Object
105 106 107 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 105 def <=>(other) to_s <=> other.to_s end |
#==(other) ⇒ Object
54 55 56 57 58 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 54 def ==(other) other.is_a?(Subnet) && \ (size == other.size) && \ network_portion == other.network_portion end |
#contains?(ip) ⇒ Boolean
80 81 82 83 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 80 def contains?(ip) ip = IpAddress.new(ip) unless ip.is_a?(IpAddress) (ip & mask) == network_portion end |
#each_address ⇒ Object
76 77 78 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 76 def each_address (min.to_i..max.to_i).each{|i| yield IpAddress.new(i)} end |
#max ⇒ Object
72 73 74 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 72 def max @max ||= (mask.inverse | network_portion) end |
#min_machine_ip ⇒ Object
89 90 91 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 89 def min_machine_ip min + 1 end |
#network_portion ⇒ Object Also known as: min
49 50 51 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 49 def network_portion @network_portion ||= (mask & address) end |
#normalize ⇒ Object
97 98 99 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 97 def normalize Subnet.new("#{network_portion}/#{size}") end |
#normalized? ⇒ Boolean
93 94 95 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 93 def normalized? address == network_portion end |
#num_addresses ⇒ Object
85 86 87 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 85 def num_addresses 2 ** (32-size) end |
#overlaps?(other) ⇒ Boolean
60 61 62 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 60 def overlaps?(other) min <= other.max && max >= other.min end |
#strictly_subsumes?(other) ⇒ Boolean
68 69 70 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 68 def strictly_subsumes?(other) subsumes?(other) && self != other end |
#subsumes?(other) ⇒ Boolean
64 65 66 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 64 def subsumes?(other) min <= other.min && max >= other.max end |
#to_s ⇒ Object
101 102 103 |
# File 'lib/vagrant-skytap/util/subnet.rb', line 101 def to_s "#{address}/#{size}" end |