Puppet Function: wmflib::ini

Defined in:
modules/wmflib/lib/puppet/functions/wmflib/ini.rb
Function type:
Ruby 4.x API

Overview

wmflib::ini(Hash *$data)String

Function: wmflib::ini( hash $ini_settings [, hash $… ] )

Serialize a hash into the .ini-style format expected by Python's ConfigParser. Takes one or more hashes as arguments. If the argument list contains more than one hash, they are merged together. In case of duplicate keys, hashes to the right win.

Example

wmflib::ini({'server' => {'port' => 80}})

will produce:

[server]
port = 80

Parameters:

  • *data (Hash)

Returns:



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'modules/wmflib/lib/puppet/functions/wmflib/ini.rb', line 17

Puppet::Functions.create_function(:'wmflib::ini') do
  dispatch :ini do
    required_repeated_param "Hash", :data
    return_type "String"
  end

  def ini(*args)
    args.reduce(&:merge).map do |section, items|
      ini_flatten(items).map do |k, vs|
        case vs
        when Array then vs.map { |v| "#{k}[#{v}] = #{ini_cast(v)}" }
        else "#{k} = #{ini_cast(vs)}"
        end
      end.flatten.sort.push("").unshift("[#{section}]").join("\n")
    end.flatten.sort.push("").join("\n")
  end

  def ini_flatten(map, prefix = nil)
    map.reduce({}) do |flat, (k, v)|
      k = [prefix, k].compact.join(".")
      flat.merge! v.is_a?(Hash) ? ini_flatten(v, k) : Hash[k, v]
    end
  end

  def ini_cast(v)
    v.include?(".") ? Float(v) : Integer(v)
  rescue
    v
  end
end