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
|
# The interepreter's job is to convert from a parsed file to the configuration
# for a given client. It really doesn't do any work on its own, it just collects
# and calls out to other objects.
require 'puppet'
require 'puppet/parser/parser'
require 'puppet/parser/scope'
module Puppet
module Parser
class Interpreter
attr_accessor :ast
# just shorten the constant path a bit, using what amounts to an alias
AST = Puppet::Parser::AST
# create our interpreter
def initialize(hash)
unless hash.include?(:Manifest)
raise Puppet::DevError, "Interpreter was not passed a manifest"
end
@file = hash[:Manifest]
if hash.include?(:UseNodes)
Puppet.warning "Usenodes is %s" % hash[:UseNodes]
@usenodes = hash[:UseNodes]
else
Puppet.warning "Usenodes is missing"
@usenodes = true
end
# Create our parser object
parsefiles
evaluate
end
# evaluate our whole tree
def run(client, facts)
parsefiles()
# Really, we should stick multiple names in here
# but for now just make a simple array
names = [client]
begin
if @usenodes
unless client
raise Puppet::Error,
"Cannot evaluate no nodes with a nil client"
end
# We've already evaluated the AST, in this case
@scope.evalnode(names, facts)
else
@scope = Puppet::Parser::Scope.new() # no parent scope
@scope.interp = self
@scope.evaluate(@ast, facts)
end
#@ast.evaluate(@scope)
rescue Puppet::DevError, Puppet::Error, Puppet::ParseError => except
#Puppet.err "File %s, line %s: %s" %
# [except.file, except.line, except.message]
if Puppet[:debug]
puts except.stack
end
if Puppet[:debug]
puts caller
end
#exit(1)
raise
rescue => except
error = Puppet::DevError.new("%s: %s" %
[except.class, except.message])
error.stack = caller
if Puppet[:debug]
puts caller
end
raise error
end
# okay, at this point we have a tree of scopes, and we want to
# unzip along that tree, building our structure of objects
# to pass to the client
# this will be heirarchical, and will (at this point) contain
# only TransObjects and TransSettings
@scope.name = "top"
@scope.type = "puppet"
begin
topbucket = @scope.to_trans
rescue => detail
Puppet.warning detail
raise
end
# add our settings to the front of the array
# at least, for now
#@topscope.typesets.each { |setting|
# topbucket.unshift setting
#}
# guarantee that settings are at the very top
#topbucket.push settingbucket
#topbucket.push @scope.to_trans
#retlist = TransObject.list
#Puppet.debug "retobject length is %s" % retlist.length
#TransObject.clear
return topbucket
end
def scope
return @scope
end
private
# Evaluate the configuration. If there aren't any nodes defined, then
# this doesn't actually do anything, because we have to evaluate the
# entire configuration each time we get a connect.
def evaluate
if @usenodes
@scope = Puppet::Parser::Scope.new() # no parent scope
@scope.interp = self
Puppet.debug "Nodes defined"
@ast.safeevaluate(@scope)
else
Puppet.debug "No nodes defined"
return
end
end
def parsefiles
if defined? @parser
unless @parser.reparse?
return false
end
end
unless FileTest.exists?(@file)
if @ast
Puppet.warning "Manifest %s has disappeared" % @file
return
else
raise Puppet::Error, "Manifest %s must exist" % @file
end
end
# should i be creating a new parser each time...?
@parser = Puppet::Parser::Parser.new()
@parser.file = @file
@ast = @parser.parse
evaluate
end
end
end
end
# $Id$
|