Class: RRs::IPv4

Inherits:
Object
  • Object
show all
Defined in:
lib/rrs/ipv4.rb

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:



31
32
33
34
35
36
37
38
39
# File 'lib/rrs/ipv4.rb', line 31

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.



47
48
49
# File 'lib/rrs/ipv4.rb', line 47

def address
  @address
end

Class Method Details

.create(arg) ⇒ Object



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# File 'lib/rrs/ipv4.rb', line 13

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:



57
58
59
# File 'lib/rrs/ipv4.rb', line 57

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

#eql?(other) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


61
62
63
# File 'lib/rrs/ipv4.rb', line 61

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

#hashObject

:nodoc:



65
66
67
# File 'lib/rrs/ipv4.rb', line 65

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

#inspectObject

:nodoc:



53
54
55
# File 'lib/rrs/ipv4.rb', line 53

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

#to_sObject

:nodoc:



49
50
51
# File 'lib/rrs/ipv4.rb', line 49

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