Sha256: 48e637514b2699cff1d983cf31d3f0ba43409a31ec13bb4edd15668a1df4fd39

Contents?: true

Size: 930 Bytes

Versions: 150

Compression:

Stored size: 930 Bytes

Contents

# Monitor a given watcher for changes on a periodic interval.
class Puppet::Util::Watcher::PeriodicWatcher
  # @param watcher [Puppet::Util::Watcher::ChangeWatcher] a watcher for the value to watch
  # @param timer [Puppet::Util::Watcher::Timer] A timer to determin when to
  #   recheck the watcher. If the timout of the timer is negative, then the
  #   watched value is always considered to be changed
  def initialize(watcher, timer)
    @watcher = watcher
    @timer = timer

    @timer.start
  end

  # @return [true, false] If the file has changed since it was last checked.
  def changed?
    return true if always_consider_changed?

    @watcher = examine_watched_info(@watcher)
    @watcher.changed?
  end

  private

  def always_consider_changed?
    @timer.timeout < 0
  end

  def examine_watched_info(known)
    if @timer.expired?
      @timer.start
      known.next_reading
    else
      known
    end
  end
end

Version data entries

150 entries across 150 versions & 2 rubygems

Version Path
puppet-retrospec-1.5.0 vendor/gems/puppet-4.5.2/lib/puppet/util/watcher/periodic_watcher.rb
puppet-retrospec-1.4.1 vendor/gems/puppet-4.5.2/lib/puppet/util/watcher/periodic_watcher.rb
puppet-retrospec-1.4.0 vendor/gems/puppet-4.5.2/lib/puppet/util/watcher/periodic_watcher.rb
puppet-retrospec-1.3.2 vendor/gems/puppet-4.5.2/lib/puppet/util/watcher/periodic_watcher.rb
puppet-retrospec-1.3.1 vendor/gems/puppet-4.5.2/lib/puppet/util/watcher/periodic_watcher.rb
puppet-retrospec-1.3.0 vendor/gems/puppet-4.5.2/lib/puppet/util/watcher/periodic_watcher.rb
puppet-retrospec-1.2.1 vendor/gems/puppet-4.5.2/lib/puppet/util/watcher/periodic_watcher.rb
puppet-retrospec-1.2.0 vendor/gems/puppet-4.5.2/lib/puppet/util/watcher/periodic_watcher.rb
puppet-retrospec-1.1.0 vendor/gems/puppet-4.5.2/lib/puppet/util/watcher/periodic_watcher.rb
puppet-4.5.3 lib/puppet/util/watcher/periodic_watcher.rb
puppet-4.5.3-x86-mingw32 lib/puppet/util/watcher/periodic_watcher.rb
puppet-4.5.3-x64-mingw32 lib/puppet/util/watcher/periodic_watcher.rb
puppet-4.5.3-universal-darwin lib/puppet/util/watcher/periodic_watcher.rb
puppet-retrospec-1.0.0 vendor/gems/puppet-4.5.2/lib/puppet/util/watcher/periodic_watcher.rb
puppet-4.5.2 lib/puppet/util/watcher/periodic_watcher.rb
puppet-4.5.2-x86-mingw32 lib/puppet/util/watcher/periodic_watcher.rb
puppet-4.5.2-x64-mingw32 lib/puppet/util/watcher/periodic_watcher.rb
puppet-4.5.2-universal-darwin lib/puppet/util/watcher/periodic_watcher.rb
puppet-4.5.1 lib/puppet/util/watcher/periodic_watcher.rb
puppet-4.5.1-x86-mingw32 lib/puppet/util/watcher/periodic_watcher.rb