1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-12 11:52:01 +01:00
metasploit-framework/lib/bindata/float.rb
Ramon de C Valle f124597a56 Code cleanups
git-svn-id: file:///home/svn/framework3/trunk@5773 4d416f70-5f16-0410-b530-b9f4589650da
2008-10-19 21:03:39 +00:00

88 lines
2.2 KiB
Ruby

require 'bindata/single'
module BinData
# Provides a number of classes that contain a floating point number.
# The float is defined by endian, and precision.
module Float #:nodoc: all
def self.create_float_methods(klass, single_precision, endian)
read = create_read_code(single_precision, endian)
to_s = create_to_s_code(single_precision, endian)
define_methods(klass, single_precision, read, to_s)
end
def self.create_read_code(single_precision, endian)
if single_precision
unpack = (endian == :little) ? 'e' : 'g'
nbytes = 4
else # double_precision
unpack = (endian == :little) ? 'E' : 'G'
nbytes = 8
end
"io.readbytes(#{nbytes}).unpack('#{unpack}').at(0)"
end
def self.create_to_s_code(single_precision, endian)
if single_precision
pack = (endian == :little) ? 'e' : 'g'
else # double_precision
pack = (endian == :little) ? 'E' : 'G'
end
"[val].pack('#{pack}')"
end
def self.define_methods(klass, single_precision, read, to_s)
nbytes = single_precision ? 4 : 8
# define methods in the given class
klass.module_eval <<-END
def _do_num_bytes(ignored)
#{nbytes}
end
#---------------
private
def sensible_default
0.0
end
def val_to_str(val)
#{to_s}
end
def read_val(io)
#{read}
end
END
end
end
# Single precision floating point number in little endian format
class FloatLe < BinData::Single
register(self.name, self)
Float.create_float_methods(self, true, :little)
end
# Single precision floating point number in big endian format
class FloatBe < BinData::Single
register(self.name, self)
Float.create_float_methods(self, true, :big)
end
# Double precision floating point number in little endian format
class DoubleLe < BinData::Single
register(self.name, self)
Float.create_float_methods(self, false, :little)
end
# Double precision floating point number in big endian format
class DoubleBe < BinData::Single
register(self.name, self)
Float.create_float_methods(self, false, :big)
end
end