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
|
# ObjectBuilder is a class to help you build Ruby-based configuration syntaxes.
# You can use it to make "builder" classes to help build particular types
# of objects, typically translating simple command-based syntax to creating
# classes and setting attributes. e.g. here is a description of a day at
# the zoo:
#
# person "Alice"
# person "Matthew"
#
# zoo("London") {
# enclosure("Butterfly House") {
#
# has_roof
# allow_visitors
#
# animals("moth", 10) {
# wings 2
# legs 2
# }
#
# animals("butterfly", 200) {
# wings 2
# legs 2
# }
# }
#
# enclosure("Aquarium") {
# no_roof
#
# animal("killer whale") {
# called "Shamu"
# wings 0
# legs 0
# tail
# }
# }
# }
#
# Here is the basic builder class for a Zoo...
#
# TODO: finish this convoluted example, if it kills me
#
class ObjectBuilder
class BuildException < StandardError; end
attr_reader :result
attr_accessor :block_result
# Generates a new builder
#
# @param [ObjectBuidler] context The level of the builder
# @param [Array] args The arguments to pass on to the builder_setup
#
def initialize(context, *args)
@context = context
@result = nil
builder_setup(*args)
end
# Generates an anonymous name
#
# @return [String]
def anonymous_name
@@sequence ||= 0 # not inherited, don't want it to be
@@sequence += 1
"anon.#{Time.now.to_i}.#{@@sequence}"
end
def set_directory_if_not_set(file_or_directory)
if File.file?(file_or_directory)
end
end
#
# Merge a file into self. If the file is a relative path, it is relative to
# the file from which it has been included.
#
# @param [String] file The filename to include
#
# @raise [BuildException] When an expected exception is raised
# @raise [NameError]
# @raise [SyntaxError]
# @raise [ArgumentError]
#
# @returns [ObjectBuilder] self
def include_file(file)
#
# Set the configuration directory just once. All config files are
# relative to this dir, unless otherwise specified.
#
unless defined? @@directory
#
# Resolve the filename.
#
file = File.expand_path(file)
#
# Set the new one
#
@@directory = File.dirname(file)
else
#
# Do we have an absolute path?
#
file = File.join(@@directory, file) if '/' != file[0,1]
file = File.expand_path(file)
end
#
# Read the file and eval it.
#
instance_eval(File.read(file), file)
self
rescue NameError, NoMethodError => ex
#
# Ugh. Catch NameError and re-raise as a BuildException
#
if ex.backtrace.find{|l| l =~ /^#{file}:(\d+):/}
build_ex = BuildException.new "Unknown word `#{ex.name}' in #{file} at line #{$1}"
build_ex.set_backtrace ex.backtrace
raise build_ex
else
raise ex
end
rescue Errno::ENOENT, SyntaxError, ArgumentError => ex
if ex.backtrace.find{|l| l =~ /^#{file}:(\d+):/}
build_ex = BuildException.new "#{ex.message} in #{file} at line #{$1}"
build_ex.set_backtrace ex.backtrace
raise build_ex
else
raise ex
end
end
#
# Loads a stack of files in a directory, and merges them into the current object
#
# @params [String] dir Directory in which to search for files.
# @params [Regexp] regexp Regular expression for filename to include.
#
# @returns [ObjectBuilder] self
def include_directory(dir)
files = []
if defined? @@directory
#
# Do we have an absolute path?
#
dir = File.join(@@directory, dir) if '/' != dir[0,1]
end
#
# Resolve the filename.
#
dir = File.expand_path(dir)
#
# Exceptions are caught by #include_file
#
Dir.glob(dir).sort.each do |entry|
#file = File.join(dir,entry)
#pp file
#next unless File.file?(file)
self.include(entry)
end
self
end
def include(file_or_directory)
if File.file?(file_or_directory)
include_file(file_or_directory)
else
include_directory(file_or_directory)
end
end
# This catches all methods available for a provider, as needed.
#
# Missing methods / bad arguments etc. are caught in the
# ObjectBuilder#parse method, via NoMethodError.
#
def method_missing(name, value=nil)
if value
result.send("#{name}=".to_sym, value)
else
result.send(name.to_sym)
end
end
class << self
# Defines a new builder
#
# @param [String] word The builder's name
# @param [Class] clazz The Class the builder represents
#
# @macro [attach] is_builder
# @return The +$1+ builder.
#
# @return [NilClass]
def is_builder(word, clazz)
define_method(word.to_sym) do |*args, &block|
builder = clazz.new(*([@context] + args))
builder.instance_eval(&block) if block
["created_#{word}", "created"].each do |created_method|
created_method = created_method.to_sym
if respond_to?(created_method)
__send__(created_method, builder.result)
break
end
end
end
return nil
end
# FIXME: implement is_builder_deferred to create object at end of block?
# Defines a new block attribute
# @param [String] word The block attribute's name
# @macro [attach] is_block_attribute
# @return [NilClass] Allows use of the +$1+ word to define a block.
def is_block_attribute(word)
define_method(word.to_sym) do |*args, &block|
@result.__send__("#{word}=".to_sym, block)
end
end
# Defines a new attribute
# @param [String] word The attribute's name
# @macro [attach] is_attribute
# @return [NilClass] Allows use of the +$1+ word to set an attribute.
#
def is_attribute(word)
define_method(word.to_sym) do |*args, &block|
@result.__send__("#{word}=".to_sym, args[0])
end
end
# Defines a new boolean attribute
# @param [String] word The boolean attribute's name
# @macro [attach] is_flag_attribute
# @return [NilClass] Allows use of the +$1+ word to set an boolean attribute.
def is_flag_attribute(word)
define_method(word.to_sym) do |*args, &block|
@result.__send__("#{word}=".to_sym, true)
end
end
def parse(s)
builder = self.new
builder.instance_eval(s)
builder.result
end
def inherited(*args)
initialize_class
end
def initialize_class
@words = {}
end
end
initialize_class
end
|