Class: MachO::LoadCommand

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

Overview

Mach-O load command structure This is the most generic load command - only cmd ID and size are represented, and no actual data. Used when a more specific class isn't available/implemented.

Defined Under Namespace

Classes: LCStr

Constant Summary collapse

FORMAT =
"VV"
SIZEOF =
8

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from MachOStructure

bytesize

Constructor Details

#initialize(raw_data, offset, cmd, cmdsize) ⇒ LoadCommand

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 LoadCommand.

Parameters:

  • offset (Fixnum)

    the offset to initialize with

  • cmd (Fixnum)

    the load command's identifying number

  • cmdsize (Fixnum)

    the size of the load command in bytes



162
163
164
165
166
167
# File 'lib/macho/load_commands.rb', line 162

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

Instance Attribute Details

#cmdFixnum (readonly)

Returns the load command's identifying number.

Returns:

  • (Fixnum)

    the load command's identifying number



141
142
143
# File 'lib/macho/load_commands.rb', line 141

def cmd
  @cmd
end

#cmdsizeFixnum (readonly)

Returns the size of the load command, in bytes.

Returns:

  • (Fixnum)

    the size of the load command, in bytes



144
145
146
# File 'lib/macho/load_commands.rb', line 144

def cmdsize
  @cmdsize
end

#offsetFixnum (readonly)

Returns the offset in the file the command was created from.

Returns:

  • (Fixnum)

    the offset in the file the command was created from



138
139
140
# File 'lib/macho/load_commands.rb', line 138

def offset
  @offset
end

Class Method Details

.new_from_bin(raw_data, offset, bin) ⇒ MachO::LoadCommand

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.

Creates a new LoadCommand given an offset and binary string

Parameters:

  • offset (Fixnum)

    the offset to initialize with

  • bin (String)

    the binary string to initialize with

Returns:



154
155
156
# File 'lib/macho/load_commands.rb', line 154

def self.new_from_bin(raw_data, offset, bin)
	self.new(raw_data, offset, *bin.unpack(self::FORMAT))
end

Instance Method Details

#to_sString

Returns a string representation of the load command's identifying number.

Returns:

  • (String)

    a string representation of the load command's identifying number



177
178
179
# File 'lib/macho/load_commands.rb', line 177

def to_s
	type.to_s
end

#typeSymbol Also known as: to_sym

Returns a symbol representation of the load command's identifying number.

Returns:

  • (Symbol)

    a symbol representation of the load command's identifying number



170
171
172
# File 'lib/macho/load_commands.rb', line 170

def type
	LOAD_COMMANDS[cmd]
end