Class: ResolvFiber::IPv4

Inherits:
Object
  • Object
show all
Defined in:
lib/resolv_fiber.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

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(address) ⇒ IPv4

:nodoc:



2399
2400
2401
2402
2403
2404
2405
2406
2407
# File 'lib/resolv_fiber.rb', line 2399

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

#addressObject (readonly)

The raw IPv4 address as a String.



2415
2416
2417
# File 'lib/resolv_fiber.rb', line 2415

def address
  @address
end

Class Method Details

.create(arg) ⇒ Object



2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
# File 'lib/resolv_fiber.rb', line 2381

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:



2433
2434
2435
# File 'lib/resolv_fiber.rb', line 2433

def ==(other) # :nodoc:
  return @address == other.address
end

#eql?(other) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


2437
2438
2439
# File 'lib/resolv_fiber.rb', line 2437

def eql?(other) # :nodoc:
  return self == other
end

#hashObject

:nodoc:



2441
2442
2443
# File 'lib/resolv_fiber.rb', line 2441

def hash # :nodoc:
  return @address.hash
end

#inspectObject

:nodoc:



2421
2422
2423
# File 'lib/resolv_fiber.rb', line 2421

def inspect # :nodoc:
  return "#<#{self.class} #{self}>"
end

#to_nameObject

Turns this IPv4 address into a Resolv::DNS::Name.



2428
2429
2430
2431
# File 'lib/resolv_fiber.rb', line 2428

def to_name
  return DNS::Name.create(
    '%d.%d.%d.%d.in-addr.arpa.' % @address.unpack('CCCC').reverse)
end

#to_sObject

:nodoc:



2417
2418
2419
# File 'lib/resolv_fiber.rb', line 2417

def to_s # :nodoc:
  return sprintf("%d.%d.%d.%d", *@address.unpack("CCCC"))
end