Class: Resolv::IPv4
- Inherits:
-
Object
- Object
- Resolv::IPv4
- Defined in:
- lib/logstash/patches/resolv_9270.rb
Overview
A Resolv::DNS IPv4 address.
Constant Summary collapse
- Regex256 =
Regular expression IPv4 addresses must match.
/0 |1(?:[0-9][0-9]?)? |2(?:[0-4][0-9]?|5[0-5]?|[6-9])? |[3-9][0-9]?/x
- Regex =
/\A(#{Regex256})\.(#{Regex256})\.(#{Regex256})\.(#{Regex256})\z/
Instance Attribute Summary collapse
-
#address ⇒ Object
readonly
The raw IPv4 address as a String.
Class Method Summary collapse
Instance Method Summary collapse
-
#==(other) ⇒ Object
:nodoc:.
-
#eql?(other) ⇒ Boolean
:nodoc:.
-
#hash ⇒ Object
:nodoc:.
-
#initialize(address) ⇒ IPv4
constructor
:nodoc:.
-
#inspect ⇒ Object
:nodoc:.
-
#to_name ⇒ Object
Turns this IPv4 address into a Resolv::DNS::Name.
-
#to_s ⇒ Object
:nodoc:.
Constructor Details
#initialize(address) ⇒ IPv4
:nodoc:
2397 2398 2399 2400 2401 2402 2403 2404 2405 |
# File 'lib/logstash/patches/resolv_9270.rb', line 2397 def initialize(address) # :nodoc: unless address.kind_of?(String) raise ArgumentError, 'IPv4 address must be a string' end unless address.length == 4 raise ArgumentError, "IPv4 address expects 4 bytes but #{address.length} bytes" end @address = address end |
Instance Attribute Details
#address ⇒ Object (readonly)
The raw IPv4 address as a String.
2413 2414 2415 |
# File 'lib/logstash/patches/resolv_9270.rb', line 2413 def address @address end |
Class Method Details
.create(arg) ⇒ Object
2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 |
# File 'lib/logstash/patches/resolv_9270.rb', line 2379 def self.create(arg) case arg when IPv4 return arg when Regex if (0..255) === (a = $1.to_i) && (0..255) === (b = $2.to_i) && (0..255) === (c = $3.to_i) && (0..255) === (d = $4.to_i) return self.new([a, b, c, d].pack("CCCC")) else raise ArgumentError.new("IPv4 address with invalid value: " + arg) end else raise ArgumentError.new("cannot interpret as IPv4 address: #{arg.inspect}") end end |
Instance Method Details
#==(other) ⇒ Object
:nodoc:
2431 2432 2433 |
# File 'lib/logstash/patches/resolv_9270.rb', line 2431 def ==(other) # :nodoc: return @address == other.address end |
#eql?(other) ⇒ Boolean
:nodoc:
2435 2436 2437 |
# File 'lib/logstash/patches/resolv_9270.rb', line 2435 def eql?(other) # :nodoc: return self == other end |
#hash ⇒ Object
:nodoc:
2439 2440 2441 |
# File 'lib/logstash/patches/resolv_9270.rb', line 2439 def hash # :nodoc: return @address.hash end |
#inspect ⇒ Object
:nodoc:
2419 2420 2421 |
# File 'lib/logstash/patches/resolv_9270.rb', line 2419 def inspect # :nodoc: return "#<#{self.class} #{self}>" end |
#to_name ⇒ Object
Turns this IPv4 address into a Resolv::DNS::Name.
2426 2427 2428 2429 |
# File 'lib/logstash/patches/resolv_9270.rb', line 2426 def to_name return DNS::Name.create( '%d.%d.%d.%d.in-addr.arpa.' % @address.unpack('CCCC').reverse) end |
#to_s ⇒ Object
:nodoc:
2415 2416 2417 |
# File 'lib/logstash/patches/resolv_9270.rb', line 2415 def to_s # :nodoc: return sprintf("%d.%d.%d.%d", *@address.unpack("CCCC")) end |