Class: Puppet::Pops::Parser::EvaluatingParser
Overview
Does not support “import” and parsing ruby files
Defined Under Namespace
Classes: EvaluatingEppParser
Instance Attribute Summary collapse
Class Method Summary
collapse
-
.quote(x) ⇒ String
Translates an already parsed string that contains control characters, quotes and backslashes into a quoted string where all such constructs have been escaped.
Instance Method Summary
collapse
-
#acceptor ⇒ Object
-
#assert_and_report(parse_result, file_source) ⇒ Object
-
#clear ⇒ Object
-
#closure(model, scope) ⇒ Object
Create a closure that can be called in the given scope.
-
#convert_to_3x(object, scope) ⇒ Object
-
#evaluate(scope, model) ⇒ Object
-
#evaluate_expression_with_bindings(scope, variable_bindings, expression) ⇒ Object
Evaluates the given expression in a local scope with the given variable bindings set in this local scope, returns what the expression returns.
-
#evaluate_file(scope, file) ⇒ Object
-
#evaluate_string(scope, s, file_source = nil) ⇒ Object
-
#evaluator ⇒ Object
-
#initialize ⇒ EvaluatingParser
constructor
A new instance of EvaluatingParser.
-
#parse_file(file) ⇒ Object
-
#parse_string(s, file_source = nil) ⇒ Object
-
#quote(x) ⇒ Object
-
#validate(parse_result) ⇒ Object
-
#validator(acceptor) ⇒ Object
singleton
Constructor Details
Returns a new instance of EvaluatingParser.
14
15
16
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 14
def initialize
@parser = Parser.new()
end
|
Instance Attribute Details
12
13
14
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 12
def parser
@parser
end
|
Class Method Details
.quote(x) ⇒ String
Translates an already parsed string that contains control characters, quotes and backslashes into a quoted string where all such constructs have been escaped. Parsing the return value of this method using the puppet parser should yield exactly the same string as the argument passed to this method
The method makes an exception for the two character sequences $ and s. They will not be escaped since they have a special meaning in puppet syntax.
TODO: Handle uXXXX characters ??
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 130
def self.quote(x)
escaped = '"'.dup
p = nil
x.each_char do |c|
case p
when nil
when "\t"
escaped << '\\t'
when "\n"
escaped << '\\n'
when "\f"
escaped << '\\f'
when '"'
escaped << '\\"'
when '\\'
escaped << ((c == '$' || c == 's') ? p : '\\\\') else
escaped << p
end
p = c
end
escaped << p unless p.nil?
escaped << '"'
end
|
Instance Method Details
92
93
94
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 92
def acceptor
Validation::Acceptor.new
end
|
#assert_and_report(parse_result, file_source) ⇒ Object
100
101
102
103
104
105
106
107
108
109
110
111
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 100
def assert_and_report(parse_result, file_source)
return nil unless parse_result
if parse_result['source_ref'].nil? || parse_result['source_ref'] == ''
parse_result['source_ref'] = file_source
end
validation_result = validate(parse_result.model)
IssueReporter.assert_and_report(validation_result,
:emit_warnings => true)
parse_result
end
|
50
51
52
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 50
def clear
@acceptor = nil
end
|
#closure(model, scope) ⇒ Object
Create a closure that can be called in the given scope
55
56
57
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 55
def closure(model, scope)
Evaluator::Closure::Dynamic.new(evaluator, model, scope)
end
|
#convert_to_3x(object, scope) ⇒ Object
82
83
84
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 82
def convert_to_3x(object, scope)
evaluator.convert(object, scope, nil)
end
|
#evaluate(scope, model) ⇒ Object
59
60
61
62
63
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 59
def evaluate(scope, model)
return nil unless model
evaluator.evaluate(model, scope)
end
|
#evaluate_expression_with_bindings(scope, variable_bindings, expression) ⇒ Object
Evaluates the given expression in a local scope with the given variable bindings set in this local scope, returns what the expression returns.
68
69
70
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 68
def evaluate_expression_with_bindings(scope, variable_bindings, expression)
evaluator.evaluate_block_with_bindings(scope, variable_bindings, expression)
end
|
#evaluate_file(scope, file) ⇒ Object
46
47
48
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 46
def evaluate_file(scope, file)
evaluate(scope, parse_file(file))
end
|
#evaluate_string(scope, s, file_source = nil) ⇒ Object
42
43
44
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 42
def evaluate_string(scope, s, file_source = nil)
evaluate(scope, parse_string(s, file_source))
end
|
#parse_file(file) ⇒ Object
37
38
39
40
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 37
def parse_file(file)
clear()
assert_and_report(parser.parse_file(file), file).model
end
|
#parse_string(s, file_source = nil) ⇒ Object
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 18
def parse_string(s, file_source = nil)
clear()
begin
assert_and_report(parser.parse_string(s, file_source), file_source).model
rescue Puppet::ParseErrorWithIssue => e
raise e
rescue Puppet::ParseError => e
e.file = file_source unless e.file.is_a?(String) && !e.file.empty?
raise e
end
end
|
113
114
115
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 113
def quote(x)
self.class.quote(x)
end
|
#validate(parse_result) ⇒ Object
86
87
88
89
90
|
# File 'lib/puppet/pops/parser/evaluating_parser.rb', line 86
def validate(parse_result)
resulting_acceptor = acceptor()
validator(resulting_acceptor).validate(parse_result)
resulting_acceptor
end
|