Sha256: f76927c718fd25813e571473dff5231280b6514a4cc385ea9312efb09bcf4f7b

Contents?: true

Size: 1.83 KB

Versions: 17

Compression:

Stored size: 1.83 KB

Contents

require 'bootsnap/bootsnap'

module Bootsnap
  module CompileCache
    module YAML
      class << self
        attr_accessor :msgpack_factory
      end

      def self.input_to_storage(contents, _)
        raise Uncompilable if contents.index("!ruby/object")
        obj = ::YAML.load(contents)
        msgpack_factory.packer.write(obj).to_s
      rescue NoMethodError, RangeError
        # if the object included things that we can't serialize, fall back to
        # Marshal. It's a bit slower, but can encode anything yaml can.
        # NoMethodError is unexpected types; RangeError is Bignums
        return Marshal.dump(obj)
      end

      def self.storage_to_output(data)
        # This could have a meaning in messagepack, and we're being a little lazy
        # about it. -- but a leading 0x04 would indicate the contents of the YAML
        # is a positive integer, which is rare, to say the least.
        if data[0] == 0x04.chr && data[1] == 0x08.chr
          Marshal.load(data)
        else
          msgpack_factory.unpacker.feed(data).read
        end
      end

      def self.input_to_output(data)
        ::YAML.load(data)
      end

      def self.install!(cache_dir)
        require 'yaml'
        require 'msgpack'

        # MessagePack serializes symbols as strings by default.
        # We want them to roundtrip cleanly, so we use a custom factory.
        # see: https://github.com/msgpack/msgpack-ruby/pull/122
        factory = MessagePack::Factory.new
        factory.register_type(0x00, Symbol)
        Bootsnap::CompileCache::YAML.msgpack_factory = factory

        klass = class << ::YAML; self; end
        klass.send(:define_method, :load_file) do |path|
          Bootsnap::CompileCache::Native.fetch(
            cache_dir,
            path.to_s,
            Bootsnap::CompileCache::YAML
          )
        end
      end
    end
  end
end

Version data entries

17 entries across 17 versions & 2 rubygems

Version Path
bootsnap-pr-184-1.3.1.pr.pre.184.1 lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.3.1-java lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.3.1 lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.3.0-java lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.3.0 lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.3.0.beta2-java lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.3.0.beta2 lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.3.0.beta-java lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.3.0.beta lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.2.1-java lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.2.1 lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.2.0-java lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.2.0 lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.2.0.pre-java lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.2.0.pre lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.1.8 lib/bootsnap/compile_cache/yaml.rb
bootsnap-1.1.8-java lib/bootsnap/compile_cache/yaml.rb