1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
|
class Puppet::Parser::AST
# Any normal puppet object declaration. Can result in a class or a
# component, in addition to builtin types.
class ObjectDef < AST::Branch
attr_accessor :name, :type, :collectable
attr_reader :params
# probably not used at all
def []=(index,obj)
@params[index] = obj
end
# probably not used at all
def [](index)
return @params[index]
end
# Iterate across all of our children.
def each
[@type,@name,@params].flatten.each { |param|
#Puppet.debug("yielding param %s" % param)
yield param
}
end
# Does not actually return an object; instead sets an object
# in the current scope.
def evaluate(hash)
scope = hash[:scope]
@scope = scope
hash = {}
# Get our type and name.
objtype = @type.safeevaluate(:scope => scope)
# If the type was a variable, we wouldn't have typechecked yet.
# Do it now, if so.
unless @checked
self.typecheck(objtype)
end
# See if our object type was defined. If not, we know it's
# builtin because we already typechecked.
begin
object = scope.lookuptype(objtype)
rescue Puppet::ParseError => except
except.line = self.line
except.file = self.file
raise except
rescue => detail
error = Puppet::ParseError.new(detail)
error.line = self.line
error.file = self.file
error.backtrace = detail.backtrace
raise error
end
hash = {}
# Evaluate all of the specified params.
@params.each { |param|
ary = param.safeevaluate(:scope => scope)
hash[ary[0]] = ary[1]
}
objnames = [nil]
# Determine our name if we have one.
if self.name
objnames = @name.safeevaluate(:scope => scope)
# it's easier to always use an array, even for only one name
unless objnames.is_a?(Array)
objnames = [objnames]
end
else
# See if they specified the name as a parameter instead of as a
# normal name (i.e., before the colon).
unless object # we're a builtin
if objclass = Puppet::Type.type(objtype)
namevar = objclass.namevar
tmp = hash["name"] || hash[namevar.to_s]
if tmp
objnames = [tmp]
end
else
# this should never happen, because we've already
# typechecked, but it's no real problem if it does happen.
# We just end up with an object with no name.
end
end
end
# this is where our implicit iteration takes place;
# if someone passed an array as the name, then we act
# just like the called us many times
objnames.collect { |objname|
# If the object is a class, that means it's a builtin type, so
# we just store it in the scope
begin
#Puppet.debug(
# ("Setting object '%s' " +
# "in scope %s " +
# "with arguments %s") %
# [objname, scope.object_id, hash.inspect]
#)
obj = scope.setobject(
:type => objtype,
:name => objname,
:arguments => hash,
:file => @file,
:line => @line,
:collectable => self.collectable
)
rescue Puppet::ParseError => except
except.line = self.line
except.file = self.file
raise except
rescue => detail
error = Puppet::ParseError.new(detail)
error.line = self.line
error.file = self.file
error.backtrace = detail.backtrace
raise error
end
}.reject { |obj| obj.nil? }
end
# Create our ObjectDef. Handles type checking for us.
def initialize(hash)
@checked = false
super
self.typecheck(@type.value)
end
# Verify that all passed parameters are valid
def paramcheck(builtin, objtype)
# This defaults to true
unless Puppet[:paramcheck]
return
end
@params.each { |param|
if builtin
self.parambuiltincheck(builtin, param)
else
self.paramdefinedcheck(objtype, param)
end
}
# Mark that we've made it all the way through.
@checked = true
end
def parambuiltincheck(type, param)
unless param.is_a?(AST::ObjectParam)
raise Puppet::DevError,
"Got something other than param"
end
begin
pname = param.param.value
rescue => detail
raise Puppet::DevError, detail.to_s
end
return if pname == "name" # always allow these
unless type.validattr?(pname)
error = Puppet::ParseError.new(
"Invalid parameter '%s' for type '%s'" %
[pname, type.name]
)
error.line = self.line
error.file = self.file
raise error
end
end
def paramdefinedcheck(objtype, param)
# FIXME We might need to do more here eventually. Metaparams
# behave strangely on containers.
if Puppet::Type.metaparam?(param.param.value.intern)
return
end
begin
pname = param.param.value
rescue => detail
raise Puppet::DevError, detail.to_s
end
unless objtype.validarg?(pname)
error = Puppet::ParseError.new(
"Invalid parameter '%s' for type '%s'" %
[pname,objtype.type]
)
error.line = self.line
error.file = self.file
raise error
end
end
# Set the parameters for our object.
def params=(params)
if params.is_a?(AST::ASTArray)
@params = params
else
@params = AST::ASTArray.new(
:line => params.line,
:file => params.file,
:children => [params]
)
end
end
# Print this object out.
def tree(indent = 0)
return [
@type.tree(indent + 1),
@name.tree(indent + 1),
((@@indline * indent) + self.typewrap(self.pin)),
@params.collect { |param|
begin
param.tree(indent + 1)
rescue NoMethodError => detail
Puppet.err @params.inspect
error = Puppet::DevError.new(
"failed to tree a %s" % self.class
)
error.backtrace = detail.backtrace
raise error
end
}.join("\n")
].join("\n")
end
# Verify that the type is valid. This throws an error if there's
# a problem, so the return value doesn't matter
def typecheck(objtype)
# This will basically always be on, but I wanted to make it at
# least simple to turn off if it came to that
unless Puppet[:typecheck]
return
end
builtin = false
begin
builtin = Puppet::Type.type(objtype)
rescue TypeError
# nothing; we've already set builtin to false
end
typeobj = nil
if builtin
self.paramcheck(builtin, objtype)
else
# If there's no set scope, then we're in initialize, not
# evaluate, so we can't test defined types.
return true unless defined? @scope and @scope
# Unless we can look up the type, throw an error
unless typeobj = @scope.lookuptype(objtype)
error = Puppet::ParseError.new(
"Unknown type '%s'" % objtype
)
error.line = self.line
error.file = self.file
raise error
end
# Now that we have the type, verify all of the parameters.
# Note that we're now passing an AST Class object or whatever
# as the type, not a simple string.
self.paramcheck(builtin, typeobj)
end
end
def to_s
return "%s => { %s }" % [@name,
@params.collect { |param|
param.to_s
}.join("\n")
]
end
end
end
|