Class: ResolvFiber::LOC::Size

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

Overview

A Resolv::LOC::Size

Constant Summary collapse

Regex =
/^(\d+\.*\d*)[m]$/

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(scalar) ⇒ Size

Returns a new instance of Size.



2725
2726
2727
# File 'lib/resolv_fiber.rb', line 2725

def initialize(scalar)
  @scalar = scalar
end

Instance Attribute Details

#scalarObject (readonly)

The raw size



2732
2733
2734
# File 'lib/resolv_fiber.rb', line 2732

def scalar
  @scalar
end

Class Method Details

.create(arg) ⇒ Object

Creates a new LOC::Size from arg which may be:

LOC::Size

returns arg.

String

arg must match the LOC::Size::Regex constant



2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
# File 'lib/resolv_fiber.rb', line 2708

def self.create(arg)
  case arg
  when Size
    return arg
  when String
    scalar = ''
    if Regex =~ arg
      scalar = [(($1.to_f*(1e2)).to_i.to_s[0].to_i*(2**4)+(($1.to_f*(1e2)).to_i.to_s.length-1))].pack("C")
    else
      raise ArgumentError.new("not a properly formed Size string: " + arg)
    end
    return Size.new(scalar)
  else
    raise ArgumentError.new("cannot interpret as Size: #{arg.inspect}")
  end
end

Instance Method Details

#==(other) ⇒ Object

:nodoc:



2743
2744
2745
# File 'lib/resolv_fiber.rb', line 2743

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

#eql?(other) ⇒ Boolean

:nodoc:

Returns:

  • (Boolean)


2747
2748
2749
# File 'lib/resolv_fiber.rb', line 2747

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

#hashObject

:nodoc:



2751
2752
2753
# File 'lib/resolv_fiber.rb', line 2751

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

#inspectObject

:nodoc:



2739
2740
2741
# File 'lib/resolv_fiber.rb', line 2739

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

#to_sObject

:nodoc:



2734
2735
2736
2737
# File 'lib/resolv_fiber.rb', line 2734

def to_s # :nodoc:
  s = @scalar.unpack("H2").join.to_s
  return ((s[0].to_i)*(10**(s[1].to_i-2))).to_s << "m"
end