Skip to content

Instantly share code, notes, and snippets.

@ipcrm
Created December 11, 2017 16:16
Show Gist options
  • Save ipcrm/44335c7a7efdea6eba8e4dca846d6148 to your computer and use it in GitHub Desktop.
Save ipcrm/44335c7a7efdea6eba8e4dca846d6148 to your computer and use it in GitHub Desktop.
Example group_merge
module Puppet::Parser::Functions
newfunction(:group_merge, :type => :rvalue, :doc => <<-'ENDHEREDOC') do |args|
Recursively merges two or more hashes together and returns the resulting hash.
For example:
$hash1 = {'one' => 1, 'two' => 2, 'three' => { 'four' => 4 } }
$hash2 = {'two' => 'dos', 'three' => { 'five' => 5 } }
$merged_hash = group_merge($hash1, $hash2)
# The resulting hash is equivalent to:
# $merged_hash = { 'one' => 1, 'two' => 'dos', 'three' => { 'four' => 4, 'five' => 5 } }
When there is a duplicate key that is a hash, they are recursively merged.
When there is a duplicate key that is not a hash, the key in the rightmost hash will "win."
ENDHEREDOC
if args.length < 2
raise Puppet::ParseError, ("group_merge(): wrong number of arguments (#{args.length}; must be at least 2)")
end
group_merge = Proc.new do |hash1,hash2|
hash1.merge(hash2) do |key,old_value,new_value|
if old_value.is_a?(Hash) && new_value.is_a?(Hash)
group_merge.call(old_value, new_value)
elsif old_value.is_a?(Array) && new_value.is_a?(Array)
old_value + new_value
else
new_value
end
end
end
result = Hash.new
args.each do |arg|
next if arg.is_a? String and arg.empty? # empty string is synonym for puppet's undef
# If the argument was not a hash, skip it.
unless arg.is_a?(Hash)
raise Puppet::ParseError, "group_merge: unexpected argument type #{arg.class}, only expects hash arguments"
end
result = group_merge.call(result, arg)
end
return( result )
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment