summaryrefslogtreecommitdiffstats
path: root/lib/puppet/file_serving/fileset.rb
diff options
context:
space:
mode:
authorBrice Figureau <brice-puppet@daysofwonder.com>2009-02-24 18:48:52 +0100
committerJames Turnbull <james@lovedthanlost.net>2009-03-20 21:44:00 +1100
commit33d3624c91b236e237fe194d9df3d9fa324111c3 (patch)
tree7381228d9cc28e3223aebf7bbd095fc99c38a8c1 /lib/puppet/file_serving/fileset.rb
parent77ade43dec5e6fc5afac7abe4b331a3bc7887e42 (diff)
downloadpuppet-33d3624c91b236e237fe194d9df3d9fa324111c3.tar.gz
puppet-33d3624c91b236e237fe194d9df3d9fa324111c3.tar.xz
puppet-33d3624c91b236e237fe194d9df3d9fa324111c3.zip
Fix #1469 - Add an option to recurse only on remote side
When using recurse and a source, if the client side has many files it can take a lot of CPU/memory to checksum the whole client hierarchy. The idea is that it is not necessary to recurse on the client side if all we want is to manage the files that are sourced from the server. This changeset adds the "remote" recurse value which prevents recursing on the client side when a source is present. Since it also is necessary to limit the remote side recursion a new File{} parameter has been added called "recurselimit". Moreover, the Filetset API is changing to allow the new recurselimit parameter, and passing the recursion depth limit in the recurse parameter as an integer is now deprecated and not supported anymore. Signed-off-by: Brice Figureau <brice-puppet@daysofwonder.com>
Diffstat (limited to 'lib/puppet/file_serving/fileset.rb')
-rw-r--r--lib/puppet/file_serving/fileset.rb20
1 files changed, 7 insertions, 13 deletions
diff --git a/lib/puppet/file_serving/fileset.rb b/lib/puppet/file_serving/fileset.rb
index 61ca897e1..2076d0c4d 100644
--- a/lib/puppet/file_serving/fileset.rb
+++ b/lib/puppet/file_serving/fileset.rb
@@ -9,7 +9,7 @@ require 'puppet/file_serving/metadata'
# Operate recursively on a path, returning a set of file paths.
class Puppet::FileServing::Fileset
attr_reader :path, :ignore, :links
- attr_accessor :recurse
+ attr_accessor :recurse, :recurselimit
# Produce a hash of files, with merged so that earlier files
# with the same postfix win. E.g., /dir1/subfile beats /dir2/subfile.
@@ -67,6 +67,7 @@ class Puppet::FileServing::Fileset
@ignore = []
@links = :manage
@recurse = false
+ @recurselimit = 0 # infinite recursion
if options.is_a?(Puppet::Indirector::Request)
initialize_from_request(options)
@@ -75,6 +76,7 @@ class Puppet::FileServing::Fileset
end
raise ArgumentError.new("Fileset paths must exist") unless stat = stat(path)
+ raise ArgumentError.new("Fileset recurse parameter must not be a number anymore, please use recurselimit") if @recurse.is_a?(Integer)
end
def links=(links)
@@ -87,17 +89,8 @@ class Puppet::FileServing::Fileset
# Should we recurse further? This is basically a single
# place for all of the logic around recursion.
def recurse?(depth)
- # If recurse is true, just return true
- return true if self.recurse == true
-
- # Return false if the value is false or zero.
- return false if [false, 0].include?(self.recurse)
-
- # Return true if our current depth is less than the allowed recursion depth.
- return true if self.recurse.is_a?(Fixnum) and depth <= self.recurse
-
- # Else, return false.
- return false
+ # recurse if told to, and infinite recursion or current depth not at the limit
+ self.recurse and (self.recurselimit == 0 or depth <= self.recurselimit)
end
def initialize_from_hash(options)
@@ -112,7 +105,7 @@ class Puppet::FileServing::Fileset
end
def initialize_from_request(request)
- [:links, :ignore, :recurse].each do |param|
+ [:links, :ignore, :recurse, :recurselimit].each do |param|
if request.options.include?(param) # use 'include?' so the values can be false
value = request.options[param]
elsif request.options.include?(param.to_s)
@@ -121,6 +114,7 @@ class Puppet::FileServing::Fileset
next if value.nil?
value = true if value == "true"
value = false if value == "false"
+ value = Integer(value) if value.is_a?(String) and value =~ /^\d+$/
send(param.to_s + "=", value)
end
end