2011-04-26 01:14:38 +02:00
|
|
|
|
#
|
|
|
|
|
# shuffle.rb
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
module Puppet::Parser::Functions
|
|
|
|
|
newfunction(:shuffle, :type => :rvalue, :doc => <<-EOS
|
2011-07-29 23:18:56 +02:00
|
|
|
|
Randomizes the order of a string or array elements.
|
2011-04-26 01:14:38 +02:00
|
|
|
|
EOS
|
|
|
|
|
) do |arguments|
|
|
|
|
|
|
|
|
|
|
raise(Puppet::ParseError, "shuffle(): Wrong number of arguments " +
|
|
|
|
|
"given (#{arguments.size} for 1)") if arguments.size < 1
|
|
|
|
|
|
2011-04-29 06:00:51 +02:00
|
|
|
|
value = arguments[0]
|
|
|
|
|
klass = value.class
|
|
|
|
|
|
2011-04-30 03:46:03 +02:00
|
|
|
|
unless [Array, String].include?(klass)
|
|
|
|
|
raise(Puppet::ParseError, 'shuffle(): Requires either ' +
|
2011-04-29 06:00:51 +02:00
|
|
|
|
'array or string to work with')
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
result = value.clone
|
2011-04-26 01:14:38 +02:00
|
|
|
|
|
2011-04-30 03:46:03 +02:00
|
|
|
|
string = value.is_a?(String) ? true : false
|
2011-04-26 01:14:38 +02:00
|
|
|
|
|
2011-04-29 18:29:14 +02:00
|
|
|
|
# Check whether it makes sense to shuffle ...
|
2011-04-26 03:53:40 +02:00
|
|
|
|
return result if result.size <= 1
|
2011-04-26 01:14:38 +02:00
|
|
|
|
|
2011-04-29 18:29:14 +02:00
|
|
|
|
# We turn any string value into an array to be able to shuffle ...
|
2011-04-30 03:46:03 +02:00
|
|
|
|
result = string ? result.split('') : result
|
2011-04-29 18:29:14 +02:00
|
|
|
|
|
|
|
|
|
elements = result.size
|
|
|
|
|
|
2011-04-26 01:14:38 +02:00
|
|
|
|
# Simple implementation of Fisher–Yates in-place shuffle ...
|
|
|
|
|
elements.times do |i|
|
|
|
|
|
j = rand(elements - i) + i
|
2011-04-26 03:53:40 +02:00
|
|
|
|
result[j], result[i] = result[i], result[j]
|
2011-04-26 01:14:38 +02:00
|
|
|
|
end
|
|
|
|
|
|
2011-04-30 03:46:03 +02:00
|
|
|
|
result = string ? result.join : result
|
2011-04-29 06:00:51 +02:00
|
|
|
|
|
2011-04-26 03:53:40 +02:00
|
|
|
|
return result
|
2011-04-26 01:14:38 +02:00
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
# vim: set ts=2 sw=2 et :
|