Class: Cosmos::Conversion

Inherits:
Object show all
Defined in:
lib/cosmos/conversions/conversion.rb

Overview

Performs a general conversion via the implementation of the call method

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConversion

Create a new conversion



23
24
25
26
# File 'lib/cosmos/conversions/conversion.rb', line 23

def initialize
  @converted_type = nil
  @converted_bit_size = nil
end

Instance Attribute Details

#converted_bit_sizeInteger (readonly)

Returns The size in bits of the converted value.

Returns:

  • (Integer)

    The size in bits of the converted value



20
21
22
# File 'lib/cosmos/conversions/conversion.rb', line 20

def converted_bit_size
  @converted_bit_size
end

#converted_typeSymbol (readonly)

Returns The converted data type. Must be one of StructureItem#data_type.

Returns:



18
19
20
# File 'lib/cosmos/conversions/conversion.rb', line 18

def converted_type
  @converted_type
end

Instance Method Details

#call(value, packet, buffer) ⇒ Object

Perform the conversion on the value.

Parameters:

  • value (Object)

    The value to convert

  • packet (Packet)

    The packet which contains the value. This can be useful to reach into the packet and use other values in the conversion.

  • buffer (String)

    The packet buffer

Returns:

  • The converted value



36
37
38
# File 'lib/cosmos/conversions/conversion.rb', line 36

def call(value, packet, buffer)
  raise "call method must be defined by subclass"
end

#to_sString

Returns The conversion class.

Returns:

  • (String)

    The conversion class



41
42
43
# File 'lib/cosmos/conversions/conversion.rb', line 41

def to_s
  self.class.to_s.split('::')[-1]
end