Sha256: aff2e14ef216020c94b0f12c439cae67a7fcec3f6e1e7c105978305cc4179639

Contents?: true

Size: 1.79 KB

Versions: 11

Compression:

Stored size: 1.79 KB

Contents

# frozen_string_literal: true

module Nanoc::Int
  # Represents a cache than can be used to store already compiled content,
  # to prevent it from being needlessly recompiled.
  #
  # @api private
  class CompiledContentCache < ::Nanoc::Int::Store
    include Nanoc::Int::ContractsSupport

    contract C::KeywordArgs[config: Nanoc::Int::Configuration, items: C::IterOf[Nanoc::Int::Item]] => C::Any
    def initialize(config:, items:)
      super(Nanoc::Int::Store.tmp_path_for(config: config, store_name: 'compiled_content'), 2)

      @items = items
      @cache = {}
    end

    contract Nanoc::Int::ItemRep => C::Maybe[C::HashOf[Symbol => Nanoc::Int::Content]]
    # Returns the cached compiled content for the given item representation.
    #
    # This cached compiled content is a hash where the keys are the snapshot
    # names. and the values the compiled content at the given snapshot.
    def [](rep)
      item_cache = @cache[rep.item.identifier] || {}
      item_cache[rep.name]
    end

    contract Nanoc::Int::ItemRep, C::HashOf[Symbol => Nanoc::Int::Content] => C::HashOf[Symbol => Nanoc::Int::Content]
    # Sets the compiled content for the given representation.
    #
    # This cached compiled content is a hash where the keys are the snapshot
    # names. and the values the compiled content at the given snapshot.
    def []=(rep, content)
      @cache[rep.item.identifier] ||= {}
      @cache[rep.item.identifier][rep.name] = content
    end

    protected

    def data
      @cache
    end

    def data=(new_data)
      @cache = {}

      item_identifiers = Set.new(@items.map(&:identifier))

      new_data.each_pair do |item_identifier, content_per_rep|
        if item_identifiers.include?(item_identifier)
          @cache[item_identifier] ||= content_per_rep
        end
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
nanoc-4.9.3 lib/nanoc/base/repos/compiled_content_cache.rb
nanoc-4.9.2 lib/nanoc/base/repos/compiled_content_cache.rb
nanoc-4.9.1 lib/nanoc/base/repos/compiled_content_cache.rb
nanoc-4.9.0 lib/nanoc/base/repos/compiled_content_cache.rb
nanoc-4.8.19 lib/nanoc/base/repos/compiled_content_cache.rb
nanoc-4.8.18 lib/nanoc/base/repos/compiled_content_cache.rb
nanoc-4.8.17 lib/nanoc/base/repos/compiled_content_cache.rb
nanoc-4.8.16 lib/nanoc/base/repos/compiled_content_cache.rb
nanoc-4.8.15 lib/nanoc/base/repos/compiled_content_cache.rb
nanoc-4.8.14 lib/nanoc/base/repos/compiled_content_cache.rb
nanoc-4.8.13 lib/nanoc/base/repos/compiled_content_cache.rb