range: Clean up and clarify function contents
This commit is contained in:
parent
8cf011d7a2
commit
25ed4b43c4
1 changed files with 10 additions and 11 deletions
|
@ -37,18 +37,17 @@ Will return: [0,2,4,6,8]
|
||||||
EOS
|
EOS
|
||||||
) do |arguments|
|
) do |arguments|
|
||||||
|
|
||||||
# We support more than one argument but at least one is mandatory ...
|
raise(Puppet::ParseError, 'range(): Wrong number of ' +
|
||||||
raise(Puppet::ParseError, "range(): Wrong number of " +
|
'arguments given (0 for 1)') if arguments.size == 0
|
||||||
"arguments given (#{arguments.size} for 1)") if arguments.size < 1
|
|
||||||
|
|
||||||
if arguments.size > 1
|
if arguments.size > 1
|
||||||
start = arguments[0]
|
start = arguments[0]
|
||||||
stop = arguments[1]
|
stop = arguments[1]
|
||||||
step = arguments[2].nil? ? 1 : arguments[2].to_i.abs
|
step = arguments[2].nil? ? 1 : arguments[2].to_i.abs
|
||||||
|
|
||||||
type = '..' # We select simplest type for Range available in Ruby ...
|
type = '..' # Use the simplest type of Range available in Ruby
|
||||||
|
|
||||||
elsif arguments.size > 0
|
else # arguments.size == 0
|
||||||
value = arguments[0]
|
value = arguments[0]
|
||||||
|
|
||||||
if m = value.match(/^(\w+)(\.\.\.?|\-)(\w+)$/)
|
if m = value.match(/^(\w+)(\.\.\.?|\-)(\w+)$/)
|
||||||
|
@ -58,14 +57,14 @@ Will return: [0,2,4,6,8]
|
||||||
type = m[2]
|
type = m[2]
|
||||||
|
|
||||||
elsif value.match(/^.+$/)
|
elsif value.match(/^.+$/)
|
||||||
raise(Puppet::ParseError, 'range(): Unable to compute range ' +
|
raise(Puppet::ParseError, "range(): Unable to compute range " +
|
||||||
'from the value given')
|
"from the value: #{value}")
|
||||||
else
|
else
|
||||||
raise(Puppet::ParseError, 'range(): Unknown format of range given')
|
raise(Puppet::ParseError, "range(): Unknown range format: #{value}")
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
# Check whether we have integer value if so then make it so ...
|
# If we were given an integer, ensure we work with one
|
||||||
if start.to_s.match(/^\d+$/)
|
if start.to_s.match(/^\d+$/)
|
||||||
start = start.to_i
|
start = start.to_i
|
||||||
stop = stop.to_i
|
stop = stop.to_i
|
||||||
|
@ -76,10 +75,10 @@ Will return: [0,2,4,6,8]
|
||||||
|
|
||||||
range = case type
|
range = case type
|
||||||
when /^(\.\.|\-)$/ then (start .. stop)
|
when /^(\.\.|\-)$/ then (start .. stop)
|
||||||
when /^(\.\.\.)$/ then (start ... stop) # Exclusive of last element ...
|
when '...' then (start ... stop) # Exclusive of last element
|
||||||
end
|
end
|
||||||
|
|
||||||
result = range.step(step).collect { |i| i } # Get them all ... Pokemon ...
|
result = range.step(step).collect { |i| i }
|
||||||
|
|
||||||
return result
|
return result
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue