diff options
author | James Turnbull <james@lovedthanlost.net> | 2008-08-21 02:26:25 +1000 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2008-08-26 18:00:50 +1000 |
commit | b50e718490abe41f09e16e1edc0d8de93aac8bfe (patch) | |
tree | 95aa085a64a506bc023614bf547087dc3a2498cb /lib/puppet/parser/functions | |
parent | 5fb50918ad355116ba85bfe7304baf61a7c8da22 (diff) | |
download | puppet-b50e718490abe41f09e16e1edc0d8de93aac8bfe.tar.gz puppet-b50e718490abe41f09e16e1edc0d8de93aac8bfe.tar.xz puppet-b50e718490abe41f09e16e1edc0d8de93aac8bfe.zip |
Fixed #1488 - Moved individual functions out of functions.rb into
the lib/puppet/parser/functions directory. New functions should be
created in this directory.
Diffstat (limited to 'lib/puppet/parser/functions')
-rw-r--r-- | lib/puppet/parser/functions/defined.rb | 27 | ||||
-rw-r--r-- | lib/puppet/parser/functions/fail.rb | 4 | ||||
-rw-r--r-- | lib/puppet/parser/functions/file.rb | 21 | ||||
-rw-r--r-- | lib/puppet/parser/functions/fqdn_rand.rb | 15 | ||||
-rw-r--r-- | lib/puppet/parser/functions/generate.rb | 35 | ||||
-rw-r--r-- | lib/puppet/parser/functions/include.rb | 26 | ||||
-rw-r--r-- | lib/puppet/parser/functions/realize.rb | 14 | ||||
-rw-r--r-- | lib/puppet/parser/functions/search.rb | 7 | ||||
-rw-r--r-- | lib/puppet/parser/functions/sha1.rb | 6 | ||||
-rw-r--r-- | lib/puppet/parser/functions/tag.rb | 6 | ||||
-rw-r--r-- | lib/puppet/parser/functions/tagged.rb | 18 | ||||
-rw-r--r-- | lib/puppet/parser/functions/template.rb | 22 |
12 files changed, 201 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/defined.rb b/lib/puppet/parser/functions/defined.rb new file mode 100644 index 000000000..4e369ae48 --- /dev/null +++ b/lib/puppet/parser/functions/defined.rb @@ -0,0 +1,27 @@ +# Test whether a given class or definition is defined +Puppet::Parser::Functions::newfunction(:defined, :type => :rvalue, :doc => "Determine whether a given + type is defined, either as a native type or a defined type, or whether a class is defined. + This is useful for checking whether a class is defined and only including it if it is. + This function can also test whether a resource has been defined, using resource references + (e.g., ``if defined(File['/tmp/myfile']) { ... }``). This function is unfortunately + dependent on the parse order of the configuration when testing whether a resource is defined.") do |vals| + result = false + vals.each do |val| + case val + when String: + # For some reason, it doesn't want me to return from here. + if Puppet::Type.type(val) or finddefine(val) or findclass(val) + result = true + break + end + when Puppet::Parser::Resource::Reference: + if findresource(val.to_s) + result = true + break + end + else + raise ArgumentError, "Invalid argument of type %s to 'defined'" % val.class + end + end + result +end diff --git a/lib/puppet/parser/functions/fail.rb b/lib/puppet/parser/functions/fail.rb new file mode 100644 index 000000000..35b20ee92 --- /dev/null +++ b/lib/puppet/parser/functions/fail.rb @@ -0,0 +1,4 @@ +Puppet::Parser::Functions::newfunction(:fail, :doc => "Fail with a parse error.") do |vals| + vals = vals.collect { |s| s.to_s }.join(" ") if vals.is_a? Array + raise Puppet::ParseError, vals.to_s +end diff --git a/lib/puppet/parser/functions/file.rb b/lib/puppet/parser/functions/file.rb new file mode 100644 index 000000000..47b3f96e0 --- /dev/null +++ b/lib/puppet/parser/functions/file.rb @@ -0,0 +1,21 @@ +# Returns the contents of a file +Puppet::Parser::Functions::newfunction(:file, :type => :rvalue, + :doc => "Return the contents of a file. Multiple files + can be passed, and the first file that exists will be read in.") do |vals| + ret = nil + vals.each do |file| + unless file =~ /^#{File::SEPARATOR}/ + raise Puppet::ParseError, "Files must be fully qualified" + end + if FileTest.exists?(file) + ret = File.read(file) + break + end + end + if ret + ret + else + raise Puppet::ParseError, "Could not find any files from %s" % + vals.join(", ") + end +end diff --git a/lib/puppet/parser/functions/fqdn_rand.rb b/lib/puppet/parser/functions/fqdn_rand.rb new file mode 100644 index 000000000..2ae46de82 --- /dev/null +++ b/lib/puppet/parser/functions/fqdn_rand.rb @@ -0,0 +1,15 @@ +Puppet::Parser::Functions::newfunction(:fqdn_rand, :type => :rvalue, :doc => + "Generates random numbers based on the node's fqdn. The first argument + sets the range. The second argument specifies a number to add to the + seed and is optional.") do |args| + require 'md5' + max = args[0] + if args[1] then + seed = args[1] + else + seed = 1 + end + fqdn_seed = MD5.new(lookupvar('fqdn')).to_s.hex + srand(seed+fqdn_seed) + rand(max).to_s +end diff --git a/lib/puppet/parser/functions/generate.rb b/lib/puppet/parser/functions/generate.rb new file mode 100644 index 000000000..1be9016ed --- /dev/null +++ b/lib/puppet/parser/functions/generate.rb @@ -0,0 +1,35 @@ +# Runs an external command and returns the results +Puppet::Parser::Functions::newfunction(:generate, :type => :rvalue, + :doc => "Calls an external command and returns the results of the + command. Any arguments are passed to the external command as + arguments. If the generator does not exit with return code of 0, + the generator is considered to have failed and a parse error is + thrown. Generators can only have file separators, alphanumerics, dashes, + and periods in them. This function will attempt to protect you from + malicious generator calls (e.g., those with '..' in them), but it can + never be entirely safe. No subshell is used to execute + generators, so all shell metacharacters are passed directly to + the generator.") do |args| + + unless args[0] =~ /^#{File::SEPARATOR}/ + raise Puppet::ParseError, "Generators must be fully qualified" + end + + unless args[0] =~ /^[-#{File::SEPARATOR}\w.]+$/ + raise Puppet::ParseError, + "Generators can only contain alphanumerics, file separators, and dashes" + end + + if args[0] =~ /\.\./ + raise Puppet::ParseError, + "Can not use generators with '..' in them." + end + + begin + output = Puppet::Util.execute(args) + rescue Puppet::ExecutionFailure => detail + raise Puppet::ParseError, "Failed to execute generator %s: %s" % + [args[0], detail] + end + output +end diff --git a/lib/puppet/parser/functions/include.rb b/lib/puppet/parser/functions/include.rb new file mode 100644 index 000000000..213a04136 --- /dev/null +++ b/lib/puppet/parser/functions/include.rb @@ -0,0 +1,26 @@ +# Include the specified classes +Puppet::Parser::Functions::newfunction(:include, :doc => "Evaluate one or more classes.") do |vals| + vals = [vals] unless vals.is_a?(Array) + + # The 'false' disables lazy evaluation. + klasses = compiler.evaluate_classes(vals, self, false) + + missing = vals.find_all do |klass| + ! klasses.include?(klass) + end + + unless missing.empty? + # Throw an error if we didn't evaluate all of the classes. + str = "Could not find class" + if missing.length > 1 + str += "es" + end + + str += " " + missing.join(", ") + + if n = namespaces and ! n.empty? and n != [""] + str += " in namespaces %s" % @namespaces.join(", ") + end + self.fail Puppet::ParseError, str + end +end diff --git a/lib/puppet/parser/functions/realize.rb b/lib/puppet/parser/functions/realize.rb new file mode 100644 index 000000000..1bdde234e --- /dev/null +++ b/lib/puppet/parser/functions/realize.rb @@ -0,0 +1,14 @@ +# This is just syntactic sugar for a collection, although it will generally +# be a good bit faster. + +Puppet::Parser::Functions::newfunction(:realize, :doc => "Make a virtual object real. This is useful + when you want to know the name of the virtual object and don't want to + bother with a full collection. It is slightly faster than a collection, + and, of course, is a bit shorter. You must pass the object using a + reference; e.g.: ``realize User[luke]``." ) do |vals| + coll = Puppet::Parser::Collector.new(self, :nomatter, nil, nil, :virtual) + vals = [vals] unless vals.is_a?(Array) + coll.resources = vals + + compiler.add_collection(coll) +end diff --git a/lib/puppet/parser/functions/search.rb b/lib/puppet/parser/functions/search.rb new file mode 100644 index 000000000..87dd02d67 --- /dev/null +++ b/lib/puppet/parser/functions/search.rb @@ -0,0 +1,7 @@ +Puppet::Parser::Functions::newfunction(:search, :doc => "Add another namespace for this class to search. + This allows you to create classes with sets of definitions and add + those classes to another class's search path.") do |vals| + vals.each do |val| + add_namespace(val) + end +end diff --git a/lib/puppet/parser/functions/sha1.rb b/lib/puppet/parser/functions/sha1.rb new file mode 100644 index 000000000..09386a604 --- /dev/null +++ b/lib/puppet/parser/functions/sha1.rb @@ -0,0 +1,6 @@ +Puppet::Parser::Functions::newfunction(:sha1, :type => :rvalue, + :doc => "Returns a SHA1 hash value from a provided string.") do |args| + require 'sha1' + + Digest::SHA1.hexdigest(args[0]) +end diff --git a/lib/puppet/parser/functions/tag.rb b/lib/puppet/parser/functions/tag.rb new file mode 100644 index 000000000..3e487feaf --- /dev/null +++ b/lib/puppet/parser/functions/tag.rb @@ -0,0 +1,6 @@ +# Tag the current scope with each passed name +Puppet::Parser::Functions::newfunction(:tag, :doc => "Add the specified tags to the containing class + or definition. All contained objects will then acquire that tag, also. + ") do |vals| + self.resource.tag(*vals) +end diff --git a/lib/puppet/parser/functions/tagged.rb b/lib/puppet/parser/functions/tagged.rb new file mode 100644 index 000000000..fccb13205 --- /dev/null +++ b/lib/puppet/parser/functions/tagged.rb @@ -0,0 +1,18 @@ +# Test whether a given tag is set. This functions as a big OR -- if any of the specified tags are unset, we return false. +Puppet::Parser::Functions::newfunction(:tagged, :type => :rvalue, :doc => "A boolean function that + tells you whether the current container is tagged with the specified tags. + The tags are ANDed, so that all of the specified tags must be included for + the function to return true.") do |vals| + configtags = compiler.catalog.tags + resourcetags = resource.tags + + retval = true + vals.each do |val| + unless configtags.include?(val) or resourcetags.include?(val) + retval = false + break + end + end + + return retval +end diff --git a/lib/puppet/parser/functions/template.rb b/lib/puppet/parser/functions/template.rb new file mode 100644 index 000000000..e62c3b326 --- /dev/null +++ b/lib/puppet/parser/functions/template.rb @@ -0,0 +1,22 @@ +Puppet::Parser::Functions::newfunction(:template, :type => :rvalue, :doc => + "Evaluate a template and return its value. See `the templating docs + </trac/puppet/wiki/PuppetTemplating>`_ for more information. Note that + if multiple templates are specified, their output is all concatenated + and returned as the output of the function.") do |vals| + require 'erb' + + vals.collect do |file| + # Use a wrapper, so the template can't get access to the full + # Scope object. + debug "Retrieving template %s" % file + wrapper = Puppet::Parser::TemplateWrapper.new(self, file) + + begin + wrapper.result() + rescue => detail + raise Puppet::ParseError, + "Failed to parse template %s: %s" % + [file, detail] + end + end.join("") +end |