58 lines
1.7 KiB
Ruby
58 lines
1.7 KiB
Ruby
module Rex
|
|
module Java
|
|
module Serialization
|
|
module Model
|
|
# This class provides a block data (long) representation
|
|
class BlockDataLong < Element
|
|
|
|
# @!attribute length
|
|
# @return [Integer] the length of the block
|
|
attr_accessor :length
|
|
# @!attribute contents
|
|
# @return [String] the contents of the block
|
|
attr_accessor :contents
|
|
|
|
# @param contents [String] the contents of the block
|
|
def initialize(contents = '')
|
|
self.contents = contents
|
|
self.length = contents.length
|
|
end
|
|
|
|
# Deserializes a Java::Serialization::Model::BlockDataLong
|
|
#
|
|
# @param io [IO] the io to read from
|
|
# @return [self] if deserialization succeeds
|
|
# @raise [RuntimeError] if deserialization doesn't succeed
|
|
def decode(io)
|
|
raw_length = io.read(4)
|
|
if raw_length.nil? || raw_length.length != 4
|
|
raise ::RuntimeError, '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 ::RuntimeError, 'Failed to unserialize BlockData'
|
|
end
|
|
end
|
|
|
|
self
|
|
end
|
|
|
|
# Serializes the Java::Serialization::Model::BlockDataLong
|
|
#
|
|
# @return [String]
|
|
def encode
|
|
encoded = [length].pack('N')
|
|
encoded << contents
|
|
|
|
encoded
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |