]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/stdlib/lib/puppet/parser/functions/shuffle.rb
upgrade to stdlib 4.6.1
[dsa-puppet.git] / 3rdparty / modules / stdlib / lib / puppet / parser / functions / shuffle.rb
1 #
2 # shuffle.rb
3 #
4
5 module Puppet::Parser::Functions
6   newfunction(:shuffle, :type => :rvalue, :doc => <<-EOS
7 Randomizes the order of a string or array elements.
8     EOS
9   ) do |arguments|
10
11     raise(Puppet::ParseError, "shuffle(): Wrong number of arguments " +
12       "given (#{arguments.size} for 1)") if arguments.size < 1
13
14     value = arguments[0]
15
16     unless value.is_a?(Array) || value.is_a?(String)
17       raise(Puppet::ParseError, 'shuffle(): Requires either ' +
18         'array or string to work with')
19     end
20
21     result = value.clone
22
23     string = value.is_a?(String) ? true : false
24
25     # Check whether it makes sense to shuffle ...
26     return result if result.size <= 1
27
28     # We turn any string value into an array to be able to shuffle ...
29     result = string ? result.split('') : result
30
31     elements = result.size
32
33     # Simple implementation of Fisher–Yates in-place shuffle ...
34     elements.times do |i|
35       j = rand(elements - i) + i
36       result[j], result[i] = result[i], result[j]
37     end
38
39     result = string ? result.join : result
40
41     return result
42   end
43 end
44
45 # vim: set ts=2 sw=2 et :