Class: PacketGen::Types::Int Abstract

Inherits:
Object
  • Object
show all
Defined in:
lib/packetgen/types/int.rb

Overview

This class is abstract.

Base integer class to handle binary integers

Author:

  • Sylvain Daubert

Direct Known Subclasses

Enum, Int16, Int24, Int32, Int64, Int8, SInt8

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value = nil, endian = nil, width = nil, default = 0) ⇒ Int

Returns a new instance of Int.

Parameters:

  • value (Integer, nil) (defaults to: nil)
  • endian (:little, :big, nil) (defaults to: nil)
  • width (Integer, nil) (defaults to: nil)
  • default (Integer) (defaults to: 0)


32
33
34
35
36
37
# File 'lib/packetgen/types/int.rb', line 32

def initialize(value=nil, endian=nil, width=nil, default=0)
  @value = value
  @endian = endian
  @width = width
  @default = default
end

Instance Attribute Details

#defaultInteger

Integer default value

Returns:

  • (Integer)


26
27
28
# File 'lib/packetgen/types/int.rb', line 26

def default
  @default
end

#endian:little, :big

Integer endianness

Returns:

  • (:little, :big)


20
21
22
# File 'lib/packetgen/types/int.rb', line 20

def endian
  @endian
end

#valueInteger

Integer value

Returns:

  • (Integer)


17
18
19
# File 'lib/packetgen/types/int.rb', line 17

def value
  @value
end

#widthInteger

Integer size, in bytes

Returns:

  • (Integer)


23
24
25
# File 'lib/packetgen/types/int.rb', line 23

def width
  @width
end

Instance Method Details

#read(value) ⇒ self

This method is abstract.

Read an Int from a binary string or an integer

Parameters:

  • value (Integer, #to_s)

Returns:

  • (self)

Raises:

  • (ParseError)

    when reading #to_s objects with abstract Int class.



44
45
46
47
48
49
50
51
52
53
# File 'lib/packetgen/types/int.rb', line 44

def read(value)
  @value = if value.is_a?(Integer)
             value.to_i
           elsif defined? @packstr
             value.to_s.unpack(@packstr[@endian]).first
           else
             raise ParseError, 'Int#read is abstract and cannot read'
           end
  self
end

#szInteger

Give size in bytes of self

Returns:

  • (Integer)


82
83
84
# File 'lib/packetgen/types/int.rb', line 82

def sz
  width
end

#to_fFloat

Convert Int to Float

Returns:

  • (Float)


76
77
78
# File 'lib/packetgen/types/int.rb', line 76

def to_f
  to_i.to_f
end

#to_iInteger Also known as: to_human

Convert Int to Integer

Returns:

  • (Integer)


68
69
70
# File 'lib/packetgen/types/int.rb', line 68

def to_i
  @value || @default
end

#to_s::String

This method is abstract.

Returns:

  • (::String)

Raises:

  • (ParseError)

    This is an abstrat method and must be redefined



58
59
60
61
62
63
64
# File 'lib/packetgen/types/int.rb', line 58

def to_s
  unless defined? @packstr
    raise ParseError, 'PacketGen::Types::Int#to_s is an abstract method'
  end

  [to_i].pack(@packstr[@endian])
end