Class: Rex::Java::Serialization::Model::BlockDataLong

Inherits:
Element
  • Object
show all
Defined in:
lib/rex/java/serialization/model/block_data_long.rb

Overview

This class provides a block data (long) representation

Instance Attribute Summary collapse

Attributes inherited from Element

#stream

Instance Method Summary collapse

Methods inherited from Element

decode

Constructor Details

#initialize(stream = nil, contents = '') ⇒ BlockDataLong

Returns a new instance of BlockDataLong.

Parameters:



19
20
21
22
23
# File 'lib/rex/java/serialization/model/block_data_long.rb', line 19

def initialize(stream = nil, contents = '')
  super(stream)
  self.contents = contents
  self.length = contents.length
end

Instance Attribute Details

#contentsString

Returns the contents of the block.

Returns:

  • (String)

    the contents of the block



15
16
17
# File 'lib/rex/java/serialization/model/block_data_long.rb', line 15

def contents
  @contents
end

#lengthInteger

Returns the length of the block.

Returns:

  • (Integer)

    the length of the block



12
13
14
# File 'lib/rex/java/serialization/model/block_data_long.rb', line 12

def length
  @length
end

Instance Method Details

#decode(io) ⇒ self

Deserializes a Rex::Java::Serialization::Model::BlockDataLong

Parameters:

  • io (IO)

    the io to read from

Returns:

  • (self)

    if deserialization succeeds

Raises:



30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/rex/java/serialization/model/block_data_long.rb', line 30

def decode(io)
  raw_length = io.read(4)
  if raw_length.nil? || raw_length.length != 4
    raise Rex::Java::Serialization::DecodeError, 'Failed to unserialize BlockDataLong'
  end
  self.length = raw_length.unpack('N')[0]

  if length == 0
    self.contents = ''
  else
    self.contents = io.read(length)
    if contents.nil? || contents.length != length
      raise Rex::Java::Serialization::DecodeError, 'Failed to unserialize BlockData'
    end
  end

  self
end

#encodeString

Serializes the Rex::Java::Serialization::Model::BlockDataLong

Returns:

  • (String)


52
53
54
55
56
57
# File 'lib/rex/java/serialization/model/block_data_long.rb', line 52

def encode
  encoded = [length].pack('N')
  encoded << contents

  encoded
end

#to_sString

Creates a print-friendly string representation

Returns:

  • (String)


62
63
64
65
66
67
# File 'lib/rex/java/serialization/model/block_data_long.rb', line 62

def to_s
  contents_hex = []
  contents.each_byte {|byte| contents_hex << "0x#{byte.to_s(16)}" }

  "[ #{contents_hex.join(', ')} ]"
end