summaryrefslogtreecommitdiff
path: root/str2bool.rb
blob: 02b5aaef4a0773bd26d3abe41869b68d900fd085 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#
# str2bool.rb
#

module Puppet::Parser::Functions
  newfunction(:str2bool, :type => :rvalue, :doc => <<-EOS
    EOS
  ) do |arguments|

    raise(Puppet::ParseError, "str2bool(): Wrong number of arguments " +
      "given (#{arguments.size} for 1)") if arguments.size < 1

    string = arguments[0]

    if not string.is_a?(String)
      raise(Puppet::ParseError, 'str2bool(): Requires either a ' +
        'string to work with')
    end

    result = case string
      #
      # This is how undef looks like in Puppet ...
      # We yield false in this case.
      #
      when /^$/, '' then false
      when /^(1|t|y|true|yes)$/ then true
      when /^(0|f|n|false|no)$/ then false
      # This is not likely to happen ...
      when /^(undef|undefined)$/ then false
      else
        raise(Puppet::ParseError, 'str2bool(): Unknown type of boolean given')
    end

    return result
  end
end

# vim: set ts=2 sw=2 et :