Class: MachO::LoadCommands::RpathCommand

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

Overview

A load command representing an rpath, which specifies a path that should be added to the current run path used to find @rpath prefixed dylibs. Corresponds to LC_RPATH.

Instance Method Summary collapse

Methods inherited from LoadCommand

#cmd, #cmdsize, create, new_from_bin, #offset, #serializable?, #to_s, #type, #view

Methods inherited from MachOStructure

bytesize, format, #initialize, new_from_bin

Constructor Details

This class inherits a constructor from MachO::MachOStructure

Instance Method Details

#pathLCStr

Returns the path to add to the run path as an LCStr.

Returns:

  • (LCStr)

    the path to add to the run path as an LCStr



935
# File 'lib/macho/load_commands.rb', line 935

field :path, :lcstr, :to_s => true

#serialize(context) ⇒ String

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 the serialized fields of the load command.

Parameters:

Returns:

  • (String)

    the serialized fields of the load command



940
941
942
943
944
945
946
947
# File 'lib/macho/load_commands.rb', line 940

def serialize(context)
  format = Utils.specialize_format(self.class.format, context.endianness)
  string_payload, string_offsets = Utils.pack_strings(self.class.bytesize,
                                                      context.alignment,
                                                      :path => path.to_s)
  cmdsize = self.class.bytesize + string_payload.bytesize
  [cmd, cmdsize, string_offsets[:path]].pack(format) + string_payload
end

#to_hHash

Returns a hash representation of this MachO::LoadCommands::RpathCommand.

Returns:



950
951
952
953
954
# File 'lib/macho/load_commands.rb', line 950

def to_h
  {
    "path" => path.to_h,
  }.merge super
end