Class: BinStruct::AbstractTLV Abstract

Inherits:
Struct
  • Object
show all
Includes:
Structable
Defined in:
lib/bin_struct/abstract_tlv.rb

Overview

This class is abstract.

Base class to define type-length-value data.

Usage

To simply define a new TLV class, do:

MyTLV = PacketGen::Types::AbstractTLV.create
MyTLV.define_type_enum 'one' => 1, 'two' => 2

This will define a new MyTLV class, subclass of AbstractTLV. This class will define 3 attributes:

  • #type, as a Int8Enum by default,

  • #length, as a Int8 by default,

  • and #value, as a String by default.

.define_type_enum is, here, necessary to define enum hash to be used for #type accessor, as this one is defined as an Enum.

This new defined class may now be easily used:

tlv = MyTLV.new(type: 1, value: 'abcd')  # automagically set #length from value
tlv.type        #=> 1
tlv.human_type  #=> 'one'
tlv.length      #=> 4
tlv.value       #=> "abcd"

Advanced usage

Each attribute’s type may be changed at generating TLV class:

MyTLV = PacketGen::Types::AbstractTLV.create(type_class: PacketGen::Types::Int16,
                                             length_class: PacketGen::Types::Int16,
                                             value_class: PacketGen::Header::IP::Addr)
tlv = MyTLV.new(type: 1, value: '1.2.3.4')
tlv.type        #=> 1
tlv.length      #=> 4
tlv.value       #=> '1.2.3.4'
tlv.to_s        #=> "\x00\x01\x00\x04\x01\x02\x03\x04"

Some aliases may also be defined. For example, to create a TLV type whose type attribute should be named code:

MyTLV = PacketGen::Types::AbstractTLV.create(type_class: PacketGen::Types::Int16,
                                             length_class: PacketGen::Types::Int16,
                                             aliases: { code: :type })
tlv = MyTLV.new(code: 1, value: 'abcd')
tlv.code        #=> 1
tlv.type        #=> 1
tlv.length      #=> 4
tlv.value       #=> 'abcd'

Author:

  • Sylvain Daubert (2016-2024)

  • LemonTree55

Constant Summary collapse

ATTR_TYPES =
{ 'T' => :type, 'L' => :length, 'V' => :value }.freeze

Constants inherited from Struct

Struct::FMT_ATTR

Class Attribute Summary collapse

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Structable

#format_inspect, #sz, #to_s, #type_name

Methods inherited from Struct

#[], #[]=, attributes, #attributes, #bits_on, define_attr, define_attr_after, define_attr_before, define_bit_attrs_on, inherited, #inspect, #offset_of, #optional?, #optional_attributes, #present?, remove_attr, remove_bit_attrs_on, #sz, #to_h, #to_s, update_attr

Constructor Details

#initialize(options = {}) ⇒ AbstractTLV

This method is abstract.

Should only be called on real TLV classes, created by create.

Return a new instance of a real TLV class.

Parameters:

  • options (Hash) (defaults to: {})

Options Hash (options):

  • :type (Integer)
  • :length (Integer)
  • :value (Object)


192
193
194
195
196
197
198
199
200
201
202
# File 'lib/bin_struct/abstract_tlv.rb', line 192

def initialize(options = {})
  @attr_in_length = self.class.attr_in_length
  self.class.aliases.each do |al, orig|
    options[orig] = options[al] if options.key?(al)
  end

  super
  # used #value= defined below, which set length if needed
  self.value = options[:value] if options[:value]
  calc_length unless options.key?(:length)
end

Class Attribute Details

.aliasesHash

Aliases defined in create

Returns:

  • (Hash)


66
67
68
# File 'lib/bin_struct/abstract_tlv.rb', line 66

def aliases
  @aliases
end

.attr_in_lengthObject



68
69
70
# File 'lib/bin_struct/abstract_tlv.rb', line 68

def attr_in_length
  @attr_in_length
end

.lengthInteger

This method is abstract.

Length attribute for real TLV class

Returns:

  • (Integer)


# File 'lib/bin_struct/abstract_tlv.rb', line 106

.typeInteger

This method is abstract.

Type attribute for real TLV class

Returns:

  • (Integer)


# File 'lib/bin_struct/abstract_tlv.rb', line 106

.valueObject

This method is abstract.

Value attribute for real TLV class

Returns:

  • (Object)


# File 'lib/bin_struct/abstract_tlv.rb', line 106

Instance Attribute Details

#lengthInteger

This method is abstract.

Length attribute

Returns:

  • (Integer)


# File 'lib/bin_struct/abstract_tlv.rb', line 173

#typeInteger

This method is abstract.

Type attribute

Returns:

  • (Integer)


# File 'lib/bin_struct/abstract_tlv.rb', line 173

#valueObject

This method is abstract.

Value attribute

Returns:

  • (Object)

    enum



# File 'lib/bin_struct/abstract_tlv.rb', line 173

Class Method Details

.create(type_class: Int8Enum, length_class: Int8, value_class: String, aliases: {}, attr_order: 'TLV', attr_in_length: 'V') ⇒ Class

Generate a TLV class

Parameters:

  • type_class (Class) (defaults to: Int8Enum)

    Class to use for type

  • length_class (Class) (defaults to: Int8)

    Class to use for length

  • value_class (Class) (defaults to: String)

    Class to use for value

  • attr_order (::String) (defaults to: 'TLV')

    gives attribute order. Each character in [T,L,V] MUST be present once, in the desired order.

  • attr_in_length (::String) (defaults to: 'V')

    give attributes to compute length on.

Returns:

  • (Class)


80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/bin_struct/abstract_tlv.rb', line 80

def create(type_class: Int8Enum, length_class: Int8, value_class: String,
           aliases: {}, attr_order: 'TLV', attr_in_length: 'V')
  unless equal?(AbstractTLV)
    raise Error,
          '.create cannot be called on a subclass of PacketGen::Types::AbstractTLV'
  end

  klass = Class.new(self)
  klass.aliases = aliases
  klass.attr_in_length = attr_in_length

  check_attr_in_length(attr_in_length)
  check_attr_order(attr_order)
  generate_attributes(klass, attr_order, type_class, length_class, value_class)

  aliases.each do |al, orig|
    klass.instance_eval do
      alias_method al, orig if klass.method_defined?(orig)
      alias_method :"#{al}=", :"#{orig}=" if klass.method_defined?(:"#{orig}=")
    end
  end

  klass
end

.define_type_default(default) ⇒ void

This method is abstract.

Should only be called on real TLV classes, created by create.

This method returns an undefined value.

Set default value for #type attribute.

Parameters:

  • default (Integer, ::String, Symbol, nil)

    default value from hsh for type



132
133
134
# File 'lib/bin_struct/abstract_tlv.rb', line 132

def define_type_default(default)
  attr_defs[:type][:default] = default
end

.define_type_enum(hsh) ⇒ void

This method is abstract.

Should only be called on real TLV classes, created by create.

This method returns an undefined value.

Set enum hash for #type attribute.

Parameters:

  • hsh (Hash{::String, Symbol => Integer})

    enum hash



123
124
125
126
# File 'lib/bin_struct/abstract_tlv.rb', line 123

def define_type_enum(hsh)
  attr_defs[:type][:options][:enum].clear
  attr_defs[:type][:options][:enum].merge!(hsh)
end

Instance Method Details

#calc_lengthInteger

Calculate length

Returns:

  • (Integer)


253
254
255
256
257
258
259
260
261
# File 'lib/bin_struct/abstract_tlv.rb', line 253

def calc_length
  ail = @attr_in_length

  length = 0
  ail.each_char do |attr_type|
    length += self[ATTR_TYPES[attr_type]].sz
  end
  self.length = length
end

#human_type::String

This method is abstract.

Should only be called on real TLV class instances.

Get human-readable type

Returns:

  • (::String)


240
241
242
# File 'lib/bin_struct/abstract_tlv.rb', line 240

def human_type
  self[:type].to_human.to_s
end

#read(str) ⇒ AbstractTLV

This method is abstract.

Should only be called on real TLV class instances.

Populate object from a binary string

Parameters:

  • str (::String, nil)

Returns:



208
209
210
211
212
213
214
215
216
217
218
219
220
# File 'lib/bin_struct/abstract_tlv.rb', line 208

def read(str)
  return self if str.nil?

  idx = 0
  attributes.each do |attr_name|
    attr = self[attr_name]
    length = attr_name == :value ? real_length : attr.sz
    attr.read(str[idx, length])
    idx += attr.sz
  end

  self
end

#to_human::String

This method is abstract.

Should only be called on real TLV class instances.

Returns:

  • (::String)


246
247
248
249
# File 'lib/bin_struct/abstract_tlv.rb', line 246

def to_human
  my_value = self[:value].is_a?(String) ? self[:value].inspect : self[:value].to_human
  'type:%s,length:%u,value:%s' % [human_type, length, my_value]
end