| Server IP : 77.68.64.21 / Your IP : 216.73.217.59 Web Server : Apache System : Linux hp3-wp-1011352.hostingp3.local 3.10.0-1160.144.1.el7.tuxcare.els9.x86_64 #1 SMP Fri Jul 10 17:06:31 UTC 2026 x86_64 User : csh2516497 ( 2094697) PHP Version : 8.3.30 Disable Function : shell_exec,exec,system,popen,set_time_limit MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/ruby/vendor_ruby/puppet/parser/ast/ |
Upload File : |
require 'puppet/parser/ast/branch'
class Puppet::Parser::AST
# The inline conditional operator. Unlike CaseStatement, which executes
# code, we just return a value.
class Selector < AST::Branch
attr_accessor :param, :values
def each
[@param,@values].each { |child| yield child }
end
# Find the value that corresponds with the test.
def evaluate(scope)
level = scope.ephemeral_level
# Get our parameter.
paramvalue = @param.safeevaluate(scope)
default = nil
@values = [@values] unless @values.instance_of? AST::ASTArray or @values.instance_of? Array
# Then look for a match in the options.
@values.each do |obj|
# short circuit asap if we have a match
return obj.value.safeevaluate(scope) if obj.param.evaluate_match(paramvalue, scope)
# Store the default, in case it's necessary.
default = obj if obj.param.is_a?(Default)
end
# Unless we found something, look for the default.
return default.value.safeevaluate(scope) if default
self.fail Puppet::ParseError, "No matching value for selector param '#{paramvalue}'"
ensure
scope.unset_ephemeral_var(level)
end
def to_s
if @values.instance_of? AST::ASTArray or @values.instance_of? Array
v = @values
else
v = [@values]
end
param.to_s + " ? { " + v.collect { |v| v.to_s }.join(', ') + " }"
end
end
end