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
|
# Just quick mess-around to see what a DSL would look like.
#
# This is what the executable could look like:
##!/usr/bin/ruby
#
#require 'puppet'
#require 'puppet/dsl'
#
#Puppet::DSL.import(ARGV[0])
#
#bucket = Puppet::TransBucket.new
#bucket.type = "top"
#bucket.keyword = "class"
#
#Puppet::DSL.find_all do |name, sub|
# sub.included
#end.each do |name, sub|
# bucket.push sub.export
#end
#
#puts bucket.to_manifest
#
# And here's what an example config could look like:
#
##!/usr/bin/ruby
#
#
# require 'puppet'
# require 'puppet/dsl'
#
# include Puppet::DSL
# init()
#
# aspect :webserver do
# file "/tmp/testone", :content => "yaytest"
#
# exec "testing", :command => "/bin/echo this is a test"
# end
#
# aspect :other, :inherits => :webserver do
# file "/tmp/testone", :mode => "755"
# end
#
# acquire :other
#
# apply
module Puppet
# Provide the actual commands for acting like a language.
module DSL
def aspect(name, options = {}, &block)
Puppet::Aspect.new(name, options, &block)
end
def acquire(*names)
names.each do |name|
if aspect = Puppet::Aspect[name]
unless aspect.evaluated?
aspect.evaluate
end
else
raise "Could not find aspect %s" % name
end
end
end
def apply
bucket = export()
configuration = bucket.to_configuration
configuration.apply
end
def export
objects = Puppet::Aspect.collect do |name, aspect|
if aspect.evaluated?
aspect.export
end
end.reject { |a| a.nil? }.flatten.collect do |obj|
obj.to_trans
end
bucket = Puppet::TransBucket.new(objects)
bucket.name = "top"
return bucket
end
def init
unless Process.uid == 0
Puppet[:confdir] = File.expand_path("~/.puppet")
Puppet[:vardir] = File.expand_path("~/.puppet/var")
end
Puppet[:user] = Process.uid
Puppet[:group] = Process.gid
Puppet::Util::Log.newdestination(:console)
Puppet::Util::Log.level = :info
end
private
end
class Aspect
Resource = Puppet::Parser::Resource
include Puppet::Util
include Puppet::DSL
extend Puppet::Util
extend Enumerable
attr_accessor :parent, :name, :evaluated
@aspects = {}
@@objects = Hash.new do |hash, key|
hash[key] = {}
end
# Create an instance method for every type
Puppet::Type.loadall
Puppet::Type.eachtype do |type|
define_method(type.name) do |*args|
newresource(type, *args)
end
end
def self.[]=(name, aspect)
name = symbolize(name)
@aspects[name] = aspect
end
def self.[](name)
name = symbolize(name)
# Make sure there's always a main. This can get deleted in testing.
if name == :main and ! @aspects[name]
new(:main) {}
end
@aspects[name]
end
def self.clear
@aspects.clear
@@objects.clear
end
def self.delete(name)
name = symbolize(name)
if @aspects.has_key?(name)
@aspects.delete(name)
end
end
def self.each
@aspects.each do |name, a|
yield name, a
end
end
def child_of?(aspect)
unless aspect.is_a?(self.class)
obj = self.class[aspect]
unless obj
raise "Could not find aspect %s" % aspect
end
aspect = obj
end
if self.parent
if self.parent == aspect
return true
elsif self.parent.child_of?(aspect)
return true
else
return false
end
else
return false
end
end
def evaluate
if self.parent and ! self.parent.evaluated?
self.parent.evaluate
end
unless evaluated?
if defined? @block
instance_eval(&@block)
end
@evaluated = true
end
end
def evaluated?
if self.evaluated
true
else
false
end
end
def export
@resources.dup
end
def initialize(name, options = {}, &block)
name = symbolize(name)
@name = name
if block
@block = block
end
if pname = options[:inherits]
if pname.is_a?(self.class)
@parent = pname
elsif parent = self.class[pname]
@parent = parent
else
raise "Could not find parent aspect %s" % pname
end
end
@resources = []
self.class[name] = self
end
def newresource(type, name, params = {})
if self.is_a?(Puppet::Aspect)
source = self
else
source = Puppet::Aspect[:main]
end
unless obj = @@objects[type][name]
obj = Resource.new :title => name, :type => type.name,
:source => source, :scope => scope
@@objects[type][name] = obj
@resources << obj
end
params.each do |name, value|
param = Resource::Param.new(
:name => name,
:value => value,
:source => source
)
obj.send(:set_parameter, param)
end
obj
end
def scope
unless defined?(@scope)
@interp = Puppet::Parser::Interpreter.new :Code => ""
require 'puppet/node'
@node = Puppet::Node.new(Facter.value(:hostname))
@node.parameters = Facter.to_hash
@interp = Puppet::Parser::Interpreter.new :Code => ""
@compile = Puppet::Parser::Compile.new(@node, @interp.send(:parser, Puppet[:environment]))
@scope = @compile.topscope
end
@scope
end
def type
self.name
end
end
end
@aspects = {}
class Puppet::DisabledDSL
@@subs = {}
@name = :DSLClass
class << self
include Enumerable
attr_accessor :included, :name, :objects
def each
@@subs.each do |name, sub|
yield name, sub
end
end
def export
bucket = nil
if superclass() != Puppet::DSL
bucket = superclass.export
else
bucket = Puppet::TransBucket.new
bucket.keyword = "class"
bucket.type = self.name
end
@objects.each do |type, ary|
ary.each do |name, obj|
if pobj = bucket.find { |sobj| obj.name == sobj.name && obj.type == sobj.type }
obj.each do |param, value|
pobj[param] = value
end
else
bucket.push obj
end
end
end
return bucket
end
def include(name)
if ary = @@subs.find { |n, s| n == name }
ary[1].included = true
else
raise "Could not find class %s" % name
end
end
def inherited(sub)
name = sub.to_s.downcase.gsub(/.+::/, '').intern
@@subs[name] = sub
sub.name = name
sub.initvars
sub
end
def initvars
#if superclass() == Puppet::DSL
@objects = {}
#else
# @objects = superclass.objects
#end
end
def import(file)
text = File.read(file)
# If they don't specify a parent class, then specify one
# for them.
text.gsub!(/^class \S+\s*$/) do |match|
"#{match} < Puppet::DSL"
end
eval(text, binding)
end
def method_missing(method, *args)
if klass = Puppet::Type.type(method)
method = method.intern if method.is_a? String
@objects[method] ||= {}
names = args.shift
hash = args.shift
names = [names] unless names.is_a? Array
names.each do |name|
unless obj = @objects[method][name]
obj = Puppet::TransObject.new(name, method)
@objects[method][name] = obj
end
hash.each do |param, value|
if obj[param]
raise "Cannot override %s in %s[%s]" %
[param, method, name]
else
obj[param] = value
end
end
end
else
raise "No type %s" % method
end
end
end
end
|