Sha256: af7e50fd681fb8ad39a14783bf98be0c482dc20272f3935606a86ac54e377d7b
Contents?: true
Size: 1.25 KB
Versions: 10
Compression:
Stored size: 1.25 KB
Contents
require 'digest/md5' module Puppet::ModuleTool # = Checksums # # This class proides methods for generating checksums for data and adding # them to +Metadata+. class Checksums include Enumerable # Instantiate object with string +path+ to create checksums from. def initialize(path) @path = Pathname.new(path) end # Return checksum for the +Pathname+. def checksum(pathname) return Digest::MD5.hexdigest(Puppet::FileSystem.binread(pathname)) end # Return checksums for object's +Pathname+, generate if it's needed. # Result is a hash of path strings to checksum strings. def data unless @data @data = {} @path.find do |descendant| if Puppet::ModuleTool.artifact?(descendant) Find.prune elsif descendant.file? path = descendant.relative_path_from(@path) @data[path.to_s] = checksum(descendant) end end end return @data end # TODO: Why? def each(&block) data.each(&block) end # Update +Metadata+'s checksums with this object's. def annotate(metadata) metadata.checksums.replace(data) end # TODO: Move the Checksummer#run checksum checking to here? end end
Version data entries
10 entries across 10 versions & 1 rubygems