diff options
author | Ken Barber <ken@bob.sh> | 2011-04-29 09:27:10 +0200 |
---|---|---|
committer | Ken Barber <ken@bob.sh> | 2011-04-30 15:59:31 +0200 |
commit | 99a93d366f2e1efb977fcc8fe300d3d8357c8214 (patch) | |
tree | fab7510323f123c83da6d7c6cae4fe9e3f2f1e27 /lib/puppet/parser/functions/abs.rb | |
parent | 781a8720577d0cafe2147f3a1b938db7bec31789 (diff) | |
download | puppet-stdlib-99a93d366f2e1efb977fcc8fe300d3d8357c8214.tar.gz puppet-stdlib-99a93d366f2e1efb977fcc8fe300d3d8357c8214.tar.bz2 |
Convert to module format.
Diffstat (limited to 'lib/puppet/parser/functions/abs.rb')
-rw-r--r-- | lib/puppet/parser/functions/abs.rb | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/lib/puppet/parser/functions/abs.rb b/lib/puppet/parser/functions/abs.rb new file mode 100644 index 0000000..0a554e4 --- /dev/null +++ b/lib/puppet/parser/functions/abs.rb @@ -0,0 +1,34 @@ +# +# abs.rb +# + +module Puppet::Parser::Functions + newfunction(:abs, :type => :rvalue, :doc => <<-EOS + EOS + ) do |arguments| + + raise(Puppet::ParseError, "abs(): Wrong number of arguments " + + "given (#{arguments.size} for 1)") if arguments.size < 1 + + value = arguments[0] + + # Numbers in Puppet are often string-encoded which is troublesome ... + if value.is_a?(String) + if value.match(/^-?(?:\d+)(?:\.\d+){1}$/) + value = value.to_f + elsif value.match(/^-?\d+$/) + value = value.to_i + else + raise(Puppet::ParseError, 'abs(): Requires float or ' + + 'integer to work with') + end + end + + # We have numeric value to handle ... + result = value.abs + + return result + end +end + +# vim: set ts=2 sw=2 et : |