69 lines
2.0 KiB
Ruby
69 lines
2.0 KiB
Ruby
# -*- coding: binary -*-
|
|
|
|
module Rex
|
|
module Java
|
|
module Serialization
|
|
module Model
|
|
# This class provides a Utf string representation
|
|
class Utf < Element
|
|
|
|
# @!attribute length
|
|
# @return [Integer] the length of the string
|
|
attr_accessor :length
|
|
# @!attribute contents
|
|
# @return [String] the contents of the string
|
|
attr_accessor :contents
|
|
|
|
# @param stream [Rex::Java::Serialization::Model::Stream] the stream where it belongs to
|
|
# @param contents [String] the contents of the utf string
|
|
def initialize(stream = nil, contents = '')
|
|
super(stream)
|
|
self.contents = contents
|
|
self.length = contents.length
|
|
end
|
|
|
|
# Deserializes a Rex::Java::Serialization::Model::Utf
|
|
#
|
|
# @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(2)
|
|
if raw_length.nil? || raw_length.length != 2
|
|
raise ::RuntimeError, 'Failed to unserialize Utf'
|
|
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 Utf'
|
|
end
|
|
end
|
|
|
|
self
|
|
end
|
|
|
|
# Serializes the Rex::Java::Serialization::Model::Utf
|
|
#
|
|
# @return [String]
|
|
def encode
|
|
encoded = [length].pack('n')
|
|
encoded << contents
|
|
|
|
encoded
|
|
end
|
|
|
|
# Creates a print-friendly string representation
|
|
#
|
|
# @return [String]
|
|
def to_s
|
|
contents
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end |