2011-04-27 00:45:50 +02:00
|
|
|
#
|
|
|
|
# range.rb
|
|
|
|
#
|
|
|
|
|
2011-04-30 03:47:20 +02:00
|
|
|
# TODO(Krzysztof Wilczynski): We probably need to approach numeric values differently ...
|
|
|
|
|
2011-04-27 00:45:50 +02:00
|
|
|
module Puppet::Parser::Functions
|
|
|
|
newfunction(:range, :type => :rvalue, :doc => <<-EOS
|
2011-07-29 23:18:56 +02:00
|
|
|
When given range in the form of (start, stop) it will extrapolate a range as
|
|
|
|
an array.
|
|
|
|
|
|
|
|
*Examples:*
|
|
|
|
|
|
|
|
range("0", "9")
|
|
|
|
|
|
|
|
Will return: [0,1,2,3,4,5,6,7,8,9]
|
|
|
|
|
2012-03-30 00:12:06 +02:00
|
|
|
range("00", "09")
|
|
|
|
|
|
|
|
Will return: [0,1,2,3,4,5,6,7,8,9] (Zero padded strings are converted to
|
|
|
|
integers automatically)
|
|
|
|
|
2011-07-29 23:18:56 +02:00
|
|
|
range("a", "c")
|
|
|
|
|
|
|
|
Will return: ["a","b","c"]
|
2012-03-30 00:12:06 +02:00
|
|
|
|
|
|
|
range("host01", "host10")
|
|
|
|
|
|
|
|
Will return: ["host01", "host02", ..., "host09", "host10"]
|
2013-05-28 20:03:51 +02:00
|
|
|
|
2014-02-06 00:01:45 +01:00
|
|
|
Passing a third argument will cause the generated range to step by that
|
2012-04-03 17:46:20 +02:00
|
|
|
interval, e.g.
|
|
|
|
|
|
|
|
range("0", "9", "2")
|
|
|
|
|
|
|
|
Will return: [0,2,4,6,8]
|
2011-04-27 00:45:50 +02:00
|
|
|
EOS
|
|
|
|
) do |arguments|
|
|
|
|
|
2015-05-06 00:52:31 +02:00
|
|
|
raise(Puppet::ParseError, 'range(): Wrong number of ' +
|
|
|
|
'arguments given (0 for 1)') if arguments.size == 0
|
2011-04-27 00:45:50 +02:00
|
|
|
|
2015-05-06 00:44:08 +02:00
|
|
|
if arguments.size > 1
|
|
|
|
start = arguments[0]
|
|
|
|
stop = arguments[1]
|
|
|
|
step = arguments[2].nil? ? 1 : arguments[2].to_i.abs
|
|
|
|
|
2015-05-06 00:52:31 +02:00
|
|
|
type = '..' # Use the simplest type of Range available in Ruby
|
2015-05-06 00:44:08 +02:00
|
|
|
|
2015-05-06 11:13:27 +02:00
|
|
|
else # arguments.size == 1
|
2015-05-06 00:44:08 +02:00
|
|
|
value = arguments[0]
|
|
|
|
|
|
|
|
if m = value.match(/^(\w+)(\.\.\.?|\-)(\w+)$/)
|
|
|
|
start = m[1]
|
|
|
|
stop = m[3]
|
|
|
|
|
|
|
|
type = m[2]
|
2015-05-06 11:13:27 +02:00
|
|
|
step = 1
|
2015-05-06 00:44:08 +02:00
|
|
|
elsif value.match(/^.+$/)
|
2015-05-06 00:52:31 +02:00
|
|
|
raise(Puppet::ParseError, "range(): Unable to compute range " +
|
|
|
|
"from the value: #{value}")
|
2015-05-06 00:44:08 +02:00
|
|
|
else
|
2015-05-06 00:52:31 +02:00
|
|
|
raise(Puppet::ParseError, "range(): Unknown range format: #{value}")
|
2015-05-06 00:44:08 +02:00
|
|
|
end
|
|
|
|
end
|
2011-04-27 00:45:50 +02:00
|
|
|
|
2015-05-06 00:52:31 +02:00
|
|
|
# If we were given an integer, ensure we work with one
|
2014-11-12 16:02:05 +01:00
|
|
|
if start.to_s.match(/^\d+$/)
|
2014-11-12 15:52:33 +01:00
|
|
|
start = start.to_i
|
|
|
|
stop = stop.to_i
|
|
|
|
else
|
|
|
|
start = start.to_s
|
|
|
|
stop = stop.to_s
|
|
|
|
end
|
2011-04-27 00:45:50 +02:00
|
|
|
|
2015-05-06 00:44:08 +02:00
|
|
|
range = case type
|
|
|
|
when /^(\.\.|\-)$/ then (start .. stop)
|
2015-05-06 00:52:31 +02:00
|
|
|
when '...' then (start ... stop) # Exclusive of last element
|
2015-05-06 00:44:08 +02:00
|
|
|
end
|
|
|
|
|
2015-05-06 11:13:27 +02:00
|
|
|
result = range.step(step).to_a
|
2011-04-27 00:45:50 +02:00
|
|
|
|
2015-05-06 00:44:08 +02:00
|
|
|
return result
|
2011-04-27 00:45:50 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# vim: set ts=2 sw=2 et :
|