Sha256: 405e0400838506c2ec45225a56c56e774f30a6d702ebb8537fda1d68e40ffa84

Contents?: true

Size: 1.02 KB

Versions: 1

Compression:

Stored size: 1.02 KB

Contents

# typed: true
# frozen_string_literal: true

module MooTool
  module Controllers
    # Controller for extracting or viewing a KernelCollection (.kc file)
    class KernelCollection < ControllerBase
      command 'kc'
      description 'Kernel Collections'

      def extract(command, output_folder)
        file = command.file
        input = File.open(command.file, 'rb')

        T.must(file).command(:LC_FILESET_ENTRY).each do |entry|
          output_path = File.join(output_folder, entry.entry_id.to_s)
          puts "Writing to #{output_path}"
          output_file = File.open(output_path, 'wb')
          # rubocop:disable Naming/VariableNumber
          # We do not have control of this name as it is part of ruby-macho
          matching = T.must(file).command(:LC_SEGMENT_64).find { |c| c.fileoff == entry.fileoff }
          # rubocop:enable Naming/VariableNumber

          input.seek(matching.fileoff)
          output_file.write input.read(matching.filesize)
          output_file.close
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
mootool-0.2.8 lib/mootool/controllers/kernel_collection.rb