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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
|
# the parent class for all of our syntactical objects
require 'puppet'
module Puppet
module Parser
# The base class for all of the objects that make up the parse trees.
# Handles things like file name, line #, and also does the initialization
# for all of the parameters of all of the child objects.
class AST
Puppet.setdefault(:typecheck, true)
Puppet.setdefault(:paramcheck, true)
attr_accessor :line, :file, :parent
# Just used for 'tree', which is only used in debugging.
@@pink = "[0;31m"
@@green = "[0;32m"
@@yellow = "[0;33m"
@@slate = "[0;34m"
@@reset = "[0m"
# Just used for 'tree', which is only used in debugging.
@@indent = " " * 4
@@indline = @@pink + ("-" * 4) + @@reset
@@midline = @@slate + ("-" * 4) + @@reset
@@settypes = {}
# Just used for 'tree', which is only used in debugging.
def AST.indention
return @@indent * @@indention
end
# Just used for 'tree', which is only used in debugging.
def AST.midline
return @@midline
end
# Evaluate the current object. Basically just iterates across all
# of the contained children and evaluates them in turn, returning a
# list of all of the collected values, rejecting nil values
def evaluate(scope)
#Puppet.debug("Evaluating ast %s" % @name)
value = self.collect { |obj|
obj.safeevaluate(scope)
}.reject { |obj|
obj.nil?
}
end
# The version of the evaluate method that should be called, because it
# correctly handles errors. It is critical to use this method because
# it can enable you to catch the error where it happens, rather than
# much higher up the stack.
def safeevaluate(*args)
begin
self.evaluate(*args)
rescue Puppet::DevError
raise
rescue Puppet::ParseError
raise
rescue => detail
if Puppet[:debug]
puts caller
end
error = Puppet::DevError.new(
"Child of type %s failed with error %s: %s" %
[self.class, detail.class, detail.to_s]
)
error.stack = caller
raise error
end
end
# Again, just used for printing out the parse tree.
def typewrap(string)
#return self.class.to_s.sub(/.+::/,'') +
#"(" + @@green + string.to_s + @@reset + ")"
return @@green + string.to_s + @@reset +
"(" + self.class.to_s.sub(/.+::/,'') + ")"
end
# Initialize the object. Requires a hash as the argument, and takes
# each of the parameters of the hash and calls the settor method for
# them. This is probably pretty inefficient and should likely be changed
# at some point.
def initialize(args)
@file = nil
@line = nil
args.each { |param,value|
method = param.to_s + "="
unless self.respond_to?(method)
error = Puppet::DevError.new(
"Invalid parameter %s to object class %s" %
[param,self.class.to_s]
)
error.line = self.line
error.file = self.file
error.stack = caller
raise error
end
begin
#Puppet.debug("sending %s to %s" % [method, self.class])
self.send(method,value)
rescue => detail
error = Puppet::DevError.new(
"Could not set parameter %s on class %s: %s" %
[method,self.class.to_s,detail]
)
error.stack = caller
raise error
end
}
end
# The parent class of all AST objects that contain other AST objects.
# Everything but the really simple objects descend from this. It is
# important to note that Branch objects contain other AST objects only --
# if you want to contain values, use a descendent of the AST::Leaf class.
class Branch < AST
include Enumerable
attr_accessor :pin, :children
# Yield each contained AST node in turn. Used mostly by 'evaluate'.
# This definition means that I don't have to override 'evaluate'
# every time, but each child of Branch will likely need to override
# this method.
def each
@children.each { |child|
yield child
}
end
# Initialize our object. Largely relies on the method from the base
# class, but also does some verification.
def initialize(arghash)
super(arghash)
# Create the hash, if it was not set at initialization time.
unless defined? @children
@children = []
end
# Verify that we only got valid AST nodes.
@children.each { |child|
unless child.is_a?(AST)
raise Puppet::DevError,
"child %s is not an ast" % child
end
}
end
# Pretty-print the parse tree.
def tree(indent = 0)
return ((@@indline * indent) +
self.typewrap(self.pin)) + "\n" + self.collect { |child|
child.tree(indent + 1)
}.join("\n")
end
end
# The basic container class. This object behaves almost identically
# to a normal array except at initialization time. Note that its name
# is 'AST::ASTArray', rather than plain 'AST::Array'; I had too many
# bugs when it was just 'AST::Array', because things like
# 'object.is_a?(Array)' never behaved as I expected.
class ASTArray < AST::Branch
include Enumerable
# Return a child by index. Probably never used.
def [](index)
@children[index]
end
# Evaluate our children.
def evaluate(scope)
rets = nil
# We basically always operate declaratively, and when we
# do we need to evaluate the settor-like statements first. This
# is basically variable and type-default declarations.
if scope.declarative?
test = [
AST::VarDef, AST::TypeDefaults
]
settors = []
others = []
@children.each { |child|
if test.include?(child.class)
settors.push child
else
others.push child
end
}
rets = [settors,others].flatten.collect { |child|
child.safeevaluate(scope)
}
else
# If we're not declarative, just do everything in order.
rets = @children.collect { |item|
item.safeevaluate(scope)
}
end
rets = rets.reject { |obj| obj.nil? }
end
def push(*ary)
ary.each { |child|
#Puppet.debug "adding %s(%s) of type %s to %s" %
# [child, child.object_id, child.class.to_s.sub(/.+::/,''),
# self.object_id]
@children.push(child)
}
return self
end
# Convert to a string. Only used for printing the parse tree.
def to_s
return "[" + @children.collect { |child|
child.to_s
}.join(", ") + "]"
end
# Print the parse tree.
def tree(indent = 0)
#puts((AST.indent * indent) + self.pin)
self.collect { |child|
child.tree(indent)
}.join("\n" + (AST.midline * (indent+1)) + "\n")
end
end
# A simple container class, containing the parameters for an object.
# Used for abstracting the grammar declarations. Basically unnecessary
# except that I kept finding bugs because I had too many arrays that
# meant completely different things.
class ObjectInst < ASTArray; end
# Another simple container class to make sure we can correctly arrayfy
# things.
class CompArgument < ASTArray; end
# The base class for all of the leaves of the parse trees. These
# basically just have types and values. Both of these parameters
# are simple values, not AST objects.
class Leaf < AST
attr_accessor :value, :type
# Return our value.
def evaluate(scope)
return @value
end
# Print the value in parse tree context.
def tree(indent = 0)
return ((@@indent * indent) + self.typewrap(self.value))
end
def to_s
return @value
end
end
# The boolean class. True or false. Converts the string it receives
# to a Ruby boolean.
class Boolean < AST::Leaf
# Use the parent method, but then convert to a real boolean.
def initialize(hash)
super
unless @value == 'true' or @value == 'false'
error = Puppet::DevError.new(
"'%s' is not a boolean" % @value
)
error.stack = caller
raise error
end
if @value == 'true'
@value = true
else
@value = false
end
end
end
# The base string class.
class String < AST::Leaf
# Interpolate the string looking for variables, and then return
# the result.
def evaluate(scope)
return scope.strinterp(@value)
end
end
#---------------------------------------------------------------
# The 'default' option on case statements and selectors.
class Default < AST::Leaf; end
# Capitalized words; used mostly for type-defaults, but also
# get returned by the lexer any other time an unquoted capitalized
# word is found.
class Type < AST::Leaf; end
# Lower-case words.
class Name < AST::Leaf; end
# A simple variable. This object is only used during interpolation;
# the VarDef class is used for assignment.
class Variable < Name
# Looks up the value of the object in the scope tree (does
# not include syntactical constructs, like '$' and '{}').
def evaluate(scope)
begin
return scope.lookupvar(@value)
rescue Puppet::ParseError => except
except.line = self.line
except.file = self.file
raise except
rescue => detail
error = Puppet::DevError.new(detail)
error.line = self.line
error.file = self.file
error.stack = caller
raise error
end
end
end
# 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
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
# Auto-generate a name
def autoname(type, object)
case object
when Puppet::Type:
raise Puppet::Error,
"Built-in types must be provided with a name"
when HostClass:
return type
else
Puppet.info "Autogenerating name for object of type %s" %
type
return [type, "-", self.object_id].join("")
end
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(scope)
hash = {}
# Get our type and name.
objtype = @type.safeevaluate(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 was defined
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.stack = caller
raise error
end
unless object
# If not, verify that it's a builtin type
begin
object = Puppet::Type.type(objtype)
rescue TypeError
# otherwise, the user specified an invalid type
error = Puppet::ParseError.new(
"Invalid type %s" % objtype
)
error.line = @line
error.file = @file
raise error
end
end
# Autogenerate the name if one was not passed.
if defined? @name
objnames = @name.safeevaluate(scope)
else
objnames = self.autoname(objtype, object)
end
# it's easier to always use an array, even for only one name
unless objnames.is_a?(Array)
objnames = [objnames]
end
# Retrieve the defaults for our type
hash = getdefaults(objtype, scope)
# then set all of the specified params
@params.each { |param|
ary = param.safeevaluate(scope)
hash[ary[0]] = ary[1]
}
# 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
if object.is_a?(Class)
begin
Puppet.debug(
("Setting object '%s' " +
"in scope %s " +
"with arguments %s") %
[objname, scope.object_id, hash.inspect]
)
obj = scope.setobject(
objtype,
objname,
hash,
@file,
@line
)
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.stack = caller
raise error
end
else
# but things like components create a new type; if we find
# one of those, evaluate that with our arguments
Puppet.debug("Calling object '%s' with arguments %s" %
[object.name, hash.inspect])
object.safeevaluate(scope,hash,objtype,objname)
end
}.reject { |obj| obj.nil? }
end
# Retrieve the defaults for our type
def getdefaults(objtype, scope)
# first, retrieve the defaults
begin
defaults = scope.lookupdefaults(objtype)
if defaults.length > 0
Puppet.debug "Got defaults for %s: %s" %
[objtype,defaults.inspect]
end
rescue => detail
raise Puppet::DevError,
"Could not lookup defaults for %s: %s" %
[objtype, detail.to_s]
end
hash = {}
# Add any found defaults to our argument list
defaults.each { |var,value|
Puppet.debug "Found default %s for %s" %
[var,objtype]
hash[var] = value
}
return hash
end
# Create our ObjectDef. Handles type checking for us.
def initialize(hash)
@checked = false
super
if @type.is_a?(Variable)
Puppet.debug "Delaying typecheck"
return
else
self.typecheck(@type.value)
objtype = @type.value
end
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
}
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
next if pname == "name" # always allow these
unless type.validarg?(pname)
error = Puppet::ParseError.new(
"Invalid parameter '%s' for type '%s'" %
[pname,type.name]
)
error.stack = caller
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...
if Puppet::Type.metaparam?(param.param.value.intern)
next
end
begin
pname = param.param.value
rescue => detail
raise Puppet::DevError, detail.to_s
end
unless @@settypes[objtype].validarg?(pname)
error = Puppet::ParseError.new(
"Invalid parameter '%s' for type '%s'" %
[pname,objtype]
)
error.stack = caller
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.stack = caller
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
unless builtin or @@settypes.include?(objtype)
error = Puppet::ParseError.new(
"Unknown type '%s'" % objtype
)
error.line = self.line
error.file = self.file
error.stack = caller
raise error
end
unless builtin
Puppet.debug "%s is a defined type" % objtype
end
self.paramcheck(builtin, objtype)
@checked = true
end
def to_s
return "%s => { %s }" % [@name,
@params.collect { |param|
param.to_s
}.join("\n")
]
end
end
# A reference to an object. Only valid as an rvalue.
class ObjectRef < AST::Branch
attr_accessor :name, :type
def each
[@type,@name].flatten.each { |param|
#Puppet.debug("yielding param %s" % param)
yield param
}
end
# Evaluate our object, but just return a simple array of the type
# and name.
def evaluate(scope)
objtype = @type.safeevaluate(scope)
objnames = @name.safeevaluate(scope)
# it's easier to always use an array, even for only one name
unless objnames.is_a?(Array)
objnames = [objnames]
end
# Verify we can find the object.
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.stack = caller
raise error
end
Puppet.debug "ObjectRef returned type %s" % object
# should we implicitly iterate here?
# yes, i believe that we essentially have to...
objnames.collect { |objname|
if object.is_a?(AST::Component)
objname = "%s[%s]" % [objtype,objname]
objtype = "component"
end
[objtype,objname]
}.reject { |obj| obj.nil? }
end
def tree(indent = 0)
return [
@type.tree(indent + 1),
@name.tree(indent + 1),
((@@indline * indent) + self.typewrap(self.pin))
].join("\n")
end
def to_s
return "%s[%s]" % [@name,@type]
end
end
# The AST object for the parameters inside ObjectDefs and Selectors.
class ObjectParam < AST::Branch
attr_accessor :value, :param
def each
[@param,@value].each { |child| yield child }
end
# Return the parameter and the value.
def evaluate(scope)
param = @param.safeevaluate(scope)
value = @value.safeevaluate(scope)
return [param, value]
end
def tree(indent = 0)
return [
@param.tree(indent + 1),
((@@indline * indent) + self.typewrap(self.pin)),
@value.tree(indent + 1)
].join("\n")
end
def to_s
return "%s => %s" % [@param,@value]
end
end
# The basic logical structure in Puppet. Supports a list of
# tests and statement arrays.
class CaseStatement < AST::Branch
attr_accessor :test, :options, :default
# Short-curcuit evaluation. Return the value of the statements for
# the first option that matches.
def evaluate(scope)
value = @test.safeevaluate(scope)
retvalue = nil
found = false
# Iterate across the options looking for a match.
@options.each { |option|
if option.eachvalue { |opval| break true if opval == value }
# we found a matching option
retvalue = option.safeevaluate(scope)
found = true
break
end
}
# Unless we found something, look for the default.
unless found
if defined? @default
retvalue = @default.safeevaluate(scope)
else
Puppet.debug "No true answers and no default"
end
end
return retvalue
end
# Do some input validation on our options.
def initialize(hash)
values = {}
super
# this won't work if we move away from only allowing constants
# here
# but for now, it's fine and useful
@options.each { |option|
if option.default?
@default = option
end
option.eachvalue { |val|
if values.include?(val)
raise Puppet::ParseError,
"Value %s appears twice in case statement" %
val
else
values[val] = true
end
}
}
end
def tree(indent = 0)
rettree = [
@test.tree(indent + 1),
((@@indline * indent) + self.typewrap(self.pin)),
@options.tree(indent + 1)
]
return rettree.flatten.join("\n")
end
def each
[@test,@options].each { |child| yield child }
end
end
# Each individual option in a case statement.
class CaseOpt < AST::Branch
attr_accessor :value, :statements
# CaseOpt is a bit special -- we just want the value first,
# so that CaseStatement can compare, and then it will selectively
# decide whether to fully evaluate this option
def each
[@value,@statements].each { |child| yield child }
end
# Are we the default option?
def default?
if defined? @default
return @default
end
if @value.is_a?(AST::ASTArray)
@value.each { |subval|
if subval.is_a?(AST::Default)
@default = true
break
end
}
else
if @value.is_a?(AST::Default)
@default = true
end
end
unless defined? @default
@default = false
end
return @default
end
# You can specify a list of values; return each in turn.
def eachvalue
if @value.is_a?(AST::ASTArray)
@value.each { |subval|
yield subval.value
}
else
yield @value.value
end
end
# Evaluate the actual statements; this only gets called if
# our option matched.
def evaluate(scope)
return @statements.safeevaluate(scope.newscope)
end
def tree(indent = 0)
rettree = [
@value.tree(indent + 1),
((@@indline * indent) + self.typewrap(self.pin)),
@statements.tree(indent + 1)
]
return rettree.flatten.join("\n")
end
end
# 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)
retvalue = nil
found = nil
# Get our parameter.
paramvalue = @param.safeevaluate(scope)
default = nil
# Then look for a match in the options.
@values.each { |obj|
param = obj.param.safeevaluate(scope)
if param == paramvalue
# we found a matching option
retvalue = obj.value.safeevaluate(scope)
found = true
break
elsif obj.param.is_a?(Default)
default = obj
end
}
# Unless we found something, look for the default.
unless found
if default
retvalue = default.value.safeevaluate(scope)
else
error = Puppet::ParseError.new(
"No value for selector param '%s'" % paramvalue
)
error.line = self.line
error.file = self.file
raise error
end
end
return retvalue
end
def tree(indent = 0)
return [
@param.tree(indent + 1),
((@@indline * indent) + self.typewrap(self.pin)),
@values.tree(indent + 1)
].join("\n")
end
end
# Define a variable. Stores the value in the current scope.
class VarDef < AST::Branch
attr_accessor :name, :value
# Look up our name and value, and store them appropriately. The
# lexer strips off the syntax stuff like '$'.
def evaluate(scope)
name = @name.safeevaluate(scope)
value = @value.safeevaluate(scope)
begin
scope.setvar(name,value)
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.stack = caller
raise error
end
end
def each
[@name,@value].each { |child| yield child }
end
def tree(indent = 0)
return [
@name.tree(indent + 1),
((@@indline * 4 * indent) + self.typewrap(self.pin)),
@value.tree(indent + 1)
].join("\n")
end
def to_s
return "%s => %s" % [@name,@value]
end
end
# A statement syntactically similar to an ObjectDef, but uses a
# capitalized object type and cannot have a name.
class TypeDefaults < AST::Branch
attr_accessor :type, :params
def each
[@type,@params].each { |child| yield child }
end
# As opposed to ObjectDef, this stores each default for the given
# object type.
def evaluate(scope)
type = @type.safeevaluate(scope)
params = @params.safeevaluate(scope)
begin
scope.setdefaults(type.downcase,params)
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.stack = caller
raise error
end
end
def tree(indent = 0)
return [
@type.tree(indent + 1),
((@@indline * 4 * indent) + self.typewrap(self.pin)),
@params.tree(indent + 1)
].join("\n")
end
def to_s
return "%s { %s }" % [@type,@params]
end
end
# Define a new component. This basically just stores the
# associated parse tree by name in our current scope. Note that
# there is currently a mismatch in how we look up components -- it
# usually uses scopes, but sometimes uses '@@settypes'.
# FIXME This class should verify that each of its direct children
# has an abstractable name -- i.e., if a file does not include a
# variable in its name, then the user is essentially guaranteed to
# encounter an error if the component is instantiated more than
# once.
class CompDef < AST::Branch
attr_accessor :name, :args, :code
def each
[@name,@args,@code].each { |child| yield child }
end
# Store the parse tree.
def evaluate(scope)
name = @name.safeevaluate(scope)
args = @args.safeevaluate(scope)
begin
scope.settype(name,
AST::Component.new(
:name => name,
:args => args,
:code => @code
)
)
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.stack = caller
raise error
end
end
def initialize(hash)
@parentclass = nil
super
Puppet.debug "Defining type %s" % @name.value
# we need to both mark that a given argument is valid,
# and we need to also store any provided default arguments
# FIXME This creates a global list of types and their
# acceptable arguments. This should really be scoped
# instead.
@@settypes[@name.value] = self
end
def tree(indent = 0)
return [
@name.tree(indent + 1),
((@@indline * 4 * indent) + self.typewrap("define")),
@args.tree(indent + 1),
@code.tree(indent + 1),
].join("\n")
end
def to_s
return "define %s(%s) {\n%s }" % [@name, @args, @code]
end
# Check whether a given argument is valid. Searches up through
# any parent classes that might exist.
def validarg?(param)
found = false
if @args.is_a?(AST::ASTArray)
found = @args.detect { |arg|
if arg.is_a?(AST::ASTArray)
arg[0].value == param
else
arg.value == param
end
}
else
found = @args.value == param
#Puppet.warning "got arg %s" % @args.inspect
#hash[@args.value] += 1
end
if found
return true
# a nil parentclass is an empty astarray
# stupid but true
elsif @parentclass
parent = @@settypes[@parentclass.value]
if parent and parent != []
return parent.validarg?(param)
else
raise Puppet::Error, "Could not find parent class %s" %
@parentclass.value
end
else
return false
end
end
end
# Define a new class. Syntactically similar to component definitions,
# but classes are always singletons -- only one can exist on a given
# host.
class ClassDef < AST::CompDef
attr_accessor :parentclass
def each
if @parentclass
#[@name,@args,@parentclass,@code].each { |child| yield child }
[@name,@parentclass,@code].each { |child| yield child }
else
#[@name,@args,@code].each { |child| yield child }
[@name,@code].each { |child| yield child }
end
end
# Store our parse tree according to name.
def evaluate(scope)
name = @name.safeevaluate(scope)
#args = @args.safeevaluate(scope)
#:args => args,
arghash = {
:name => name,
:code => @code
}
if @parentclass
arghash[:parentclass] = @parentclass.safeevaluate(scope)
end
#Puppet.debug("defining hostclass '%s' with arguments [%s]" %
# [name,args])
begin
scope.settype(name,
HostClass.new(arghash)
)
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.stack = caller
raise error
end
end
def initialize(hash)
@parentclass = nil
super
end
def tree(indent = 0)
#@args.tree(indent + 1),
return [
@name.tree(indent + 1),
((@@indline * 4 * indent) + self.typewrap("class")),
@parentclass ? @parentclass.tree(indent + 1) : "",
@code.tree(indent + 1),
].join("\n")
end
def to_s
return "class %s(%s) inherits %s {\n%s }" %
[@name, @parentclass, @code]
#[@name, @args, @parentclass, @code]
end
end
# Define a node. The node definition stores a parse tree for each
# specified node, and this parse tree is only ever looked up when
# a client connects.
class NodeDef < AST::Branch
attr_accessor :names, :code, :parentclass
def each
[@names,@code].each { |child| yield child }
end
# Do implicit iteration over each of the names passed.
def evaluate(scope)
names = @names.safeevaluate(scope)
unless names.is_a?(Array)
names = [names]
end
names.each { |name|
Puppet.debug("defining host '%s'" % name)
arghash = {
:name => name,
:code => @code
}
if @parentclass
arghash[:parentclass] = @parentclass.safeevaluate(scope)
end
begin
scope.setnode(name,
Node.new(arghash)
)
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.stack = caller
raise error
end
}
end
def initialize(hash)
@parentclass = nil
super
end
def tree(indent = 0)
return [
@names.tree(indent + 1),
((@@indline * 4 * indent) + self.typewrap("node")),
@code.tree(indent + 1),
].join("\n")
end
def to_s
return "node %s {\n%s }" % [@name, @code]
end
end
# Evaluate the stored parse tree for a given component. This will
# receive the arguments passed to the component and also the type and
# name of the component.
class Component < AST::Branch
class << self
attr_accessor :name
end
# The class name
@name = :component
attr_accessor :name, :args, :code
def evaluate(scope,hash,objtype,objname)
scope = scope.newscope
# The type is the component or class name
scope.type = objtype
# The name is the name the user has chosen or that has
# been dynamically generated. This is almost never used
scope.name = objname
# Additionally, add a tag for whatever kind of class
# we are
scope.base = self.class.name
# define all of the arguments in our local scope
if self.args
# Verify that all required arguments are either present or
# have been provided with defaults.
# FIXME This should probably also require each parent
# class's arguments...
self.args.each { |arg, default|
unless hash.include?(arg)
if defined? default and ! default.nil?
hash[arg] = default
Puppet.debug "Got default %s for %s in %s" %
[default.inspect, arg.inspect, objname.inspect]
else
error = Puppet::ParseError.new(
"Must pass %s to %s of type %s" %
[arg.inspect,name,objtype]
)
error.line = self.line
error.file = self.file
error.stack = caller
raise error
end
end
}
end
# Set each of the provided arguments as variables in the
# component's scope.
hash["name"] = objname
hash.each { |arg,value|
begin
scope.setvar(arg,hash[arg])
rescue Puppet::ParseError => except
except.line = self.line
except.file = self.file
raise except
rescue Puppet::ParseError => except
except.line = self.line
except.file = self.file
raise except
rescue => except
error = Puppet::ParseError.new(except.message)
error.line = self.line
error.file = self.file
error.stack = caller
raise error
end
}
# Now just evaluate the code with our new bindings.
self.code.safeevaluate(scope)
end
end
# The code associated with a class. This is different from components
# in that each class is a singleton -- only one will exist for a given
# node.
class HostClass < AST::Component
@name = :class
attr_accessor :parentclass
def evaluate(scope,hash,objtype,objname)
if scope.lookupclass(@name)
Puppet.debug "%s class already evaluated" % @name
return nil
end
self.evalparent(scope, hash, objname)
# just use the Component evaluate method, but change the type
# to our own type
retval = super(scope,hash,@name,objname)
# Set the mark after we evaluate, so we don't record it but
# then encounter an error
scope.setclass(@name)
return retval
end
# Evaluate our parent class.
def evalparent(scope, args, name)
if @parentclass
parentobj = nil
begin
parentobj = scope.lookuptype(@parentclass)
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
raise error
end
unless parentobj
error = Puppet::ParseError.new(
"Could not find parent '%s' of '%s'" %
[@parentclass,@name])
error.line = self.line
error.file = self.file
raise error
end
# Verify that the parent and child are of the same type
unless parentobj.class == self.class
error = Puppet::ParseError.new(
"Class %s has incompatible parent type" %
[@name]
)
error.file = self.file
error.line = self.line
raise error
end
parentobj.safeevaluate(scope,args,@parentclass,name)
end
end
def initialize(hash)
@parentclass = nil
super
end
end
# The specific code associated with a host.
class Node < AST::Component
@name = :node
attr_accessor :name, :args, :code, :parentclass
def evaluate(scope, facts = {})
scope = scope.newscope
scope.type = "node"
scope.name = @name
# Mark this scope as a nodescope, so that classes will be
# singletons within it
scope.nodescope = true
# Now set all of the facts inside this scope
facts.each { |var, value|
scope.setvar(var, value)
}
self.evalparent(scope)
# And then evaluate our code.
@code.safeevaluate(scope)
return scope
end
# Evaluate our parent class.
def evalparent(scope)
if @parentclass
# This is pretty messed up. I don't know if this will
# work in the long term, but we need to evaluate the node
# in our own scope, even though our parent node has
# a scope associated with it, because otherwise we 1) won't
# get our facts defined, and 2) we won't actually get the
# objects returned, based on how nodes work.
# We also can't just evaluate the node itself, because
# it would create a node scope within this scope,
# and that would cause mass havoc.
hash = nil
unless hash = scope.node(@parentclass)
raise Puppet::ParseError,
"Could not find parent node %s" %
@parentclass
end
begin
code = hash[:node].code
code.safeevaluate(scope)
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
raise error
end
end
end
def initialize(hash)
@parentclass = nil
super
end
end
#---------------------------------------------------------------
end
end
end
# $Id$
|