module Nanoc::Int # Stores checksums for objects in order to be able to detect whether a file # has changed since the last site compilation. # # @api private class ChecksumStore < ::Nanoc::Int::Store # @param [Nanoc::Int::Site] site def initialize(site: nil) super(Nanoc::Int::Store.tmp_path_for(env_name: (site.config.env_name if site), store_name: 'checksums'), 1) @site = site @checksums = {} end # Returns the old checksum for the given object. This makes sense for # items, layouts and code snippets. # # @param [#reference] obj The object for which to fetch the checksum # # @return [String] The checksum for the given object def [](obj) @checksums[obj.reference] end # Sets the checksum for the given object. # # @param [#reference] obj The object for which to set the checksum # # @param [String] checksum The checksum def []=(obj, checksum) @checksums[obj.reference] = checksum end protected def data @checksums end def data=(new_data) @checksums = new_data end end end