summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Wilczynski <krzysztof.wilczynski@linux.com>2011-04-30 00:56:12 +0100
committerKrzysztof Wilczynski <krzysztof.wilczynski@linux.com>2011-04-30 00:56:12 +0100
commit0fabca9a6536dc82cea80a6fca996b8028450cb4 (patch)
treea9605b1c79fe507b443b92284a167e2f2a2230be
parent0ff8b00a64426acf96d0659d1cbc1f67bba842f4 (diff)
downloadpuppet-stdlib-0fabca9a6536dc82cea80a6fca996b8028450cb4.tar.gz
puppet-stdlib-0fabca9a6536dc82cea80a6fca996b8028450cb4.tar.bz2
Adding support for hash and string to the function count.
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
-rw-r--r--count.rb15
1 files changed, 10 insertions, 5 deletions
diff --git a/count.rb b/count.rb
index e4bf22e..c4e2283 100644
--- a/count.rb
+++ b/count.rb
@@ -3,7 +3,7 @@
#
# TODO(Krzysztof Wilczynski): We need to add support for regular expression ...
-# TODO(Krzysztof Wilczynski): Support for strings and hashes too ..
+# TODO(Krzysztof Wilczynski): Support for hash values would be nice too ...
module Puppet::Parser::Functions
newfunction(:count, :type => :rvalue, :doc => <<-EOS
@@ -14,15 +14,20 @@ module Puppet::Parser::Functions
raise(Puppet::ParseError, "count(): Wrong number of arguments " +
"given (#{arguments.size} for 1)") if arguments.size < 1
- array = arguments[0]
+ value = arguments[0]
+ klass = value.class
- unless array.is_a?(Array)
- raise(Puppet::ParseError, 'count(): Requires array to work with')
+ unless [Array, Hash, String].include?(klass)
+ raise(Puppet::ParseError, 'count(): Requires either ' +
+ 'array, hash or string to work with')
end
item = arguments[1] if arguments[1]
- result = item ? array.count(item) : array.count
+ value = value.is_a?(Hash) ? value.keys : value
+
+ # No item to look for and count? Then just return current size ...
+ result = item ? value.count(item) : value.size
return result
end