Class: MachO::VersionMinCommand

Inherits:
LoadCommand show all
Defined in:
lib/macho/load_commands.rb

Overview

A load command containing the minimum OS version on which the binary was built to run. Corresponds to LC_VERSION_MIN_MACOSX and LC_VERSION_MIN_IPHONEOS.

Constant Summary collapse

FORMAT =
"VVVV"
SIZEOF =
16

Instance Attribute Summary collapse

Attributes inherited from LoadCommand

#cmd, #cmdsize, #offset

Instance Method Summary collapse

Methods inherited from LoadCommand

new_from_bin, #to_s, #type

Methods inherited from MachOStructure

bytesize, new_from_bin

Constructor Details

#initialize(raw_data, offset, cmd, cmdsize, version, sdk) ⇒ VersionMinCommand

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of VersionMinCommand.



845
846
847
848
849
# File 'lib/macho/load_commands.rb', line 845

def initialize(raw_data, offset, cmd, cmdsize, version, sdk)
	super(raw_data, offset, cmd, cmdsize)
	@version = version
	@sdk = sdk
end

Instance Attribute Details

#sdkFixnum (readonly)

Returns the SDK version X.Y.Z packed as x16.y8.z8.

Returns:

  • (Fixnum)

    the SDK version X.Y.Z packed as x16.y8.z8



839
840
841
# File 'lib/macho/load_commands.rb', line 839

def sdk
  @sdk
end

#versionFixnum (readonly)

Returns the version X.Y.Z packed as x16.y8.z8.

Returns:

  • (Fixnum)

    the version X.Y.Z packed as x16.y8.z8



836
837
838
# File 'lib/macho/load_commands.rb', line 836

def version
  @version
end

Instance Method Details

#sdk_stringString

A string representation of the binary's SDK version.

Returns:

  • (String)

    a string representing the SDK version.



864
865
866
867
868
869
870
871
# File 'lib/macho/load_commands.rb', line 864

def sdk_string
	binary = "%032b" % sdk
	segs = [
		binary[0..15], binary[16..23], binary[24..31]
	].map { |s| s.to_i(2) }

	segs.join(".")
end

#version_stringString

A string representation of the binary's minimum OS version.

Returns:

  • (String)

    a string representing the minimum OS version.



853
854
855
856
857
858
859
860
# File 'lib/macho/load_commands.rb', line 853

def version_string
	binary = "%032b" % version
	segs = [
		binary[0..15], binary[16..23], binary[24..31]
	].map { |s| s.to_i(2) }

	segs.join(".")
end