module Bootsnap::CompileCache::ISeq

def self.compile_option_updated

def self.compile_option_updated
  option = RubyVM::InstructionSequence.compile_option
  crc = Zlib.crc32(option.inspect)
  Bootsnap::CompileCache::Native.compile_option_crc32 = crc
end

def self.fetch(path, cache_dir: ISeq.cache_dir)

def self.fetch(path, cache_dir: ISeq.cache_dir)
  Bootsnap::CompileCache::Native.fetch(
    cache_dir,
    path.to_s,
    Bootsnap::CompileCache::ISeq,
    nil,
  )
end

def self.input_to_output(_data, _kwargs)

def self.input_to_output(_data, _kwargs)
  nil # ruby handles this
end

def self.input_to_storage(_, path)

def self.input_to_storage(_, path)
  iseq = begin
    RubyVM::InstructionSequence.compile_file(path)
  rescue SyntaxError
    raise(Uncompilable, 'syntax error')
  end
  begin
    iseq.to_binary
  rescue TypeError
    raise(Uncompilable, 'ruby bug #18250')
  end
end

def self.input_to_storage(_, path)

def self.input_to_storage(_, path)
  RubyVM::InstructionSequence.compile_file(path).to_binary
rescue SyntaxError
  raise(Uncompilable, 'syntax error')
end

def self.install!(cache_dir)

def self.install!(cache_dir)
  Bootsnap::CompileCache::ISeq.cache_dir = cache_dir
  Bootsnap::CompileCache::ISeq.compile_option_updated
  class << RubyVM::InstructionSequence
    prepend(InstructionSequenceMixin)
  end
end

def self.precompile(path, cache_dir: ISeq.cache_dir)

def self.precompile(path, cache_dir: ISeq.cache_dir)
  Bootsnap::CompileCache::Native.precompile(
    cache_dir,
    path.to_s,
    Bootsnap::CompileCache::ISeq,
  )
end

def self.storage_to_output(binary, _args)

def self.storage_to_output(binary, _args)
  RubyVM::InstructionSequence.load_from_binary(binary)
rescue RuntimeError => e
  if e.message == 'broken binary format'
    STDERR.puts("[Bootsnap::CompileCache] warning: rejecting broken binary")
    nil
  else
    raise
  end
end