Sha256: ecc783bd274fd54c2489512f42664822c019a2329331a014a8c48ca7d6c199ba

Contents?: true

Size: 1.58 KB

Versions: 1

Compression:

Stored size: 1.58 KB

Contents

# A simple class that tells us when a file has changed and thus whether we
# should reload it

require 'puppet'

module Puppet
    class NoSuchFile < Puppet::Error; end
    class ParsedFile
        attr_reader :file

        # Provide a hook for setting the timestamp during testing, so we don't
        # have to depend on the granularity of the filesystem.
        attr_writer :tstamp

        Puppet.config.setdefaults(:puppet,
            :filetimeout => [ 15,
                "The minimum time to wait between checking for updates in
                configuration files."
            ]
        )

        # Determine whether the file has changed and thus whether it should
        # be reparsed
        def changed?
            # Don't actually stat the file more often than filetimeout.
            if Time.now - @statted >= Puppet[:filetimeout]
                tmp = stamp()

                if tmp == @tstamp
                    return false
                else
                    @tstamp = tmp
                    return true
                end
            else
                return false
            end
        end

        # Create the file.  Must be passed the file path.
        def initialize(file)
            @file = file
            unless FileTest.exists?(@file)
                raise Puppet::NoSuchFile, "Can not use a non-existent file for parsing"
            end
            @tstamp = stamp()
        end

        private

        def stamp
            @statted = Time.now
            return File.stat(@file).ctime
        end
    end
end

# $Id: parsedfile.rb 1422 2006-07-22 03:32:56Z luke $

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
puppet-0.18.4 lib/puppet/parsedfile.rb