Class: MachO::LoadCommands::LoadCommand::LCStr

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

Overview

Represents a Load Command string. A rough analogue to the lc_str struct used internally by OS X. This class allows ruby-macho to pretend that strings stored in LCs are immediately available without explicit operations on the raw Mach-O data.

Instance Method Summary collapse

Constructor Details

#initialize(lc, lc_str) ⇒ LCStr

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.

TODO:

devise a solution such that the lc_str parameter is not interpreted differently depending on lc.view. The current behavior is a hack to allow viewless load command creation.

Returns a new instance of LCStr.

Raises:



277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
# File 'lib/macho/load_commands.rb', line 277

def initialize(lc, lc_str)
  view = lc.view

  if view
    lc_str_abs = view.offset + lc_str
    lc_end = view.offset + lc.cmdsize - 1
    raw_string = view.raw_data.slice(lc_str_abs..lc_end)
    @string, null_byte, _padding = raw_string.partition("\x00")
    raise LCStrMalformedError, lc if null_byte.empty?
    @string_offset = lc_str
  else
    @string = lc_str
    @string_offset = 0
  end
end

Instance Method Details

#to_iFixnum



300
301
302
# File 'lib/macho/load_commands.rb', line 300

def to_i
  @string_offset
end

#to_sString



294
295
296
# File 'lib/macho/load_commands.rb', line 294

def to_s
  @string
end