f74ab047cd
Signed-off-by: Krzysztof Wilczynski <krzysztof.wilczynski@linux.com>
45 lines
1.3 KiB
Ruby
45 lines
1.3 KiB
Ruby
#
|
|
# bool2num.rb
|
|
#
|
|
|
|
module Puppet::Parser::Functions
|
|
newfunction(:bool2num, :type => :rvalue, :doc => <<-EOS
|
|
EOS
|
|
) do |arguments|
|
|
|
|
raise(Puppet::ParseError, "bool2num(): Wrong number of arguments " +
|
|
"given (#{arguments.size} for 1)") if arguments.size < 1
|
|
|
|
value = arguments[0]
|
|
klass = value.class
|
|
|
|
# We can have either true or false, or string which resembles boolean ...
|
|
unless [FalseClass, TrueClass, String].include?(klass)
|
|
raise(Puppet::ParseError, 'bool2num(): Requires either ' +
|
|
'boolean or string to work with')
|
|
end
|
|
|
|
if value.is_a?(String)
|
|
# We consider all the yes, no, y, n and so on too ...
|
|
value = case value
|
|
#
|
|
# This is how undef looks like in Puppet ...
|
|
# We yield 0 (or false if you wish) in this case.
|
|
#
|
|
when /^$/, '' then false # Empty string will be false ...
|
|
when /^(1|t|y|true|yes)$/ then true
|
|
when /^(0|f|n|false|no)$/ then false
|
|
when /^(undef|undefined)$/ then false # This is not likely to happen ...
|
|
else
|
|
raise(Puppet::ParseError, 'bool2num(): Unknown type of boolean given')
|
|
end
|
|
end
|
|
|
|
# We have real boolean values as well ...
|
|
result = value ? 1 : 0
|
|
|
|
return result
|
|
end
|
|
end
|
|
|
|
# vim: set ts=2 sw=2 et :
|