Class: IronWorkerNG::Code::Base
Instance Attribute Summary collapse
Instance Method Summary
collapse
#merge_deb
#merge_dir
#merge_file
Constructor Details
#initialize(*args, &block) ⇒ Base
Returns a new instance of Base.
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
|
# File 'lib/iron_worker_ng/code/base.rb', line 31
def initialize(*args, &block)
@features = []
@fixators = []
@base_dir = ''
@dest_dir = ''
@full_remote_build = false
@runtime = nil
@name = nil
@exec = nil
@use_local_iron_worker_ng = false
worker_files = []
if args.length == 1 && args[0].is_a?(String)
@name = args[0]
elsif args.length == 1 && args[0].is_a?(Hash)
@name = args[0][:name] || args[0]['name']
worker_file = args[0][:workerfile] || args[0]['workerfile']
worker_files << worker_file unless worker_file.nil?
@env = args[0][:env] || args[0]['env']
exec = args[0][:exec] || args[0]['exec'] || args[0][:worker] || args[0]['worker']
unless exec.nil?
merge_exec(exec)
end
end
if @name.is_a?(String) && @name.end_with?('.worker')
@name = @name.gsub(/\.worker$/, '')
end
if @name.nil? and (not @exec.nil?)
@name = guess_name_for_path(@exec.path)
end
unless @name.nil?
worker_files << @name + '.worker'
end
worker_files.each do |worker_file|
IronWorkerNG::Fetcher.fetch(worker_file) do |content|
unless content.nil?
IronCore::Logger.info 'IronWorkerNG', "Found workerfile with path='#{worker_file}'"
if IronWorkerNG::Fetcher.remote?(worker_file)
@full_remote_build = true
end
@base_dir = File.dirname(worker_file) == '.' ? '' : File.dirname(worker_file) + '/'
eval(content)
break
end
end
end
unless block.nil?
instance_eval(&block)
end
if @name.nil? and (not @exec.nil?)
@name = guess_name_for_path(@exec.path)
end
unless @name.nil?
@name = File.basename(@name)
end
end
|
Dynamic Method Handling
This class handles dynamic methods through the method_missing method
#method_missing(name, *args, &block) ⇒ Object
108
109
110
111
112
113
114
115
|
# File 'lib/iron_worker_ng/code/base.rb', line 108
def method_missing(name, *args, &block)
if @runtime.nil?
runtime(:ruby)
send(name, *args, &block)
else
super(name, *args, &block)
end
end
|
Instance Attribute Details
#base_dir ⇒ Object
Returns the value of attribute base_dir.
18
19
20
|
# File 'lib/iron_worker_ng/code/base.rb', line 18
def base_dir
@base_dir
end
|
#dest_dir ⇒ Object
Returns the value of attribute dest_dir.
19
20
21
|
# File 'lib/iron_worker_ng/code/base.rb', line 19
def dest_dir
@dest_dir
end
|
#env ⇒ Object
Returns the value of attribute env.
20
21
22
|
# File 'lib/iron_worker_ng/code/base.rb', line 20
def env
@env
end
|
#features ⇒ Object
Returns the value of attribute features.
15
16
17
|
# File 'lib/iron_worker_ng/code/base.rb', line 15
def features
@features
end
|
#fixators ⇒ Object
Returns the value of attribute fixators.
16
17
18
|
# File 'lib/iron_worker_ng/code/base.rb', line 16
def fixators
@fixators
end
|
#use_local_iron_worker_ng ⇒ Object
Returns the value of attribute use_local_iron_worker_ng.
22
23
24
|
# File 'lib/iron_worker_ng/code/base.rb', line 22
def use_local_iron_worker_ng
@use_local_iron_worker_ng
end
|
Instance Method Details
#build_workerfile ⇒ Object
314
315
316
317
318
319
320
321
322
323
|
# File 'lib/iron_worker_ng/code/base.rb', line 314
def build_workerfile
commands = []
commands << "runtime '#{runtime}'"
commands << "name '#{name}'"
commands += @features.map { |f| f.build_command }
commands.compact.uniq.join("\n")
end
|
#bundle(container, local = false) ⇒ Object
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
|
# File 'lib/iron_worker_ng/code/base.rb', line 203
def bundle(container, local = false)
@features.each do |feature|
feature.bundle(container)
end
if local || ((not remote_build_command) && (not full_remote_build))
container.get_output_stream(@dest_dir + '__runner__.sh') do |runner|
runner.write <<RUNNER
#!/bin/sh
# #{IronWorkerNG.full_version}
root() {
while [ $# -gt 1 ]; do
if [ "$1" = "-d" ]; then
printf "%s" "$2"
break
fi
shift
done
}
cd "$(root "$@")"
LD_LIBRARY_PATH=.:./lib:./__debs__/usr/lib:./__debs__/usr/lib/x86_64-linux-gnu:./__debs__/lib:./__debs__/lib/x86_64-linux-gnu
export LD_LIBRARY_PATH
PATH=.:./bin:./__debs__/usr/bin:./__debs__/bin:$PATH
export PATH
#{runtime_run_code(local)}
RUNNER
end
runtime_bundle(container, local)
end
end
|
#create_container(local = false) ⇒ Object
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
|
# File 'lib/iron_worker_ng/code/base.rb', line 241
def create_container(local = false)
if @exec.nil?
IronCore::Logger.error 'IronWorkerNG', 'No exec specified, check if worker file name is correct and/or exec command is present', IronCore::Error
end
if @name.nil?
@name = guess_name_for_path(@exec.path)
end
fixate
container = local ? IronWorkerNG::Code::Container::Dir.new : IronWorkerNG::Code::Container::Zip.new
IronCore::Logger.debug 'IronWorkerNG', "Creating #{local ? 'local ' : ''}code container '#{container.name}'"
if local
bundle(container, local)
else
if @remote_build_command || @full_remote_build
@dest_dir = '__build__/'
end
bundle(container, local)
if @remote_build_command || @full_remote_build
IronCore::Logger.info 'IronWorkerNG', 'Remote building worker'
builder = IronWorkerNG::Code::Builder.new
builder.builder_remote_build_command = @remote_build_command
builder.use_local_iron_worker_ng = @use_local_iron_worker_ng
if @use_local_iron_worker_ng
builder.gem('iron_worker_ng')
builder.fixate
end
builder.bundle(container, local)
container.get_output_stream(@name + '.worker') do |wf|
wf.write(build_workerfile)
end
end
if @remote_build_command || @full_remote_build
@dest_dir = ''
end
end
container.close
container.name
end
|
#fixate ⇒ Object
190
191
192
193
194
|
# File 'lib/iron_worker_ng/code/base.rb', line 190
def fixate
@fixators.each do |f|
send(f)
end
end
|
#full_remote_build(full_remote_build = nil) ⇒ Object
144
145
146
147
148
|
# File 'lib/iron_worker_ng/code/base.rb', line 144
def full_remote_build(full_remote_build = nil)
@full_remote_build = full_remote_build unless full_remote_build.nil?
@full_remote_build
end
|
#full_remote_build=(full_remote_build) ⇒ Object
150
151
152
|
# File 'lib/iron_worker_ng/code/base.rb', line 150
def full_remote_build=(full_remote_build)
@full_remote_build = full_remote_build
end
|
#guess_name_for_path(path) ⇒ Object
117
118
119
|
# File 'lib/iron_worker_ng/code/base.rb', line 117
def guess_name_for_path(path)
File.basename(path).gsub(/#{File.extname(path)}$/, '')
end
|
#install(standalone = false) ⇒ Object
311
312
|
# File 'lib/iron_worker_ng/code/base.rb', line 311
def install(standalone = false)
end
|
#name(name = nil) ⇒ Object
121
122
123
124
125
|
# File 'lib/iron_worker_ng/code/base.rb', line 121
def name(name = nil)
@name = name if name
@name
end
|
#name=(name) ⇒ Object
127
128
129
|
# File 'lib/iron_worker_ng/code/base.rb', line 127
def name=(name)
@name = name
end
|
#remote ⇒ Object
154
155
156
|
# File 'lib/iron_worker_ng/code/base.rb', line 154
def remote
@full_remote_build = true
end
|
#remote_build_command(remote_build_command = nil) ⇒ Object
Also known as:
build
131
132
133
134
135
|
# File 'lib/iron_worker_ng/code/base.rb', line 131
def remote_build_command(remote_build_command = nil)
@remote_build_command = remote_build_command unless remote_build_command.nil?
@remote_build_command
end
|
#remote_build_command=(remote_build_command) ⇒ Object
Also known as:
build=
137
138
139
|
# File 'lib/iron_worker_ng/code/base.rb', line 137
def remote_build_command=(remote_build_command)
@remote_build_command = remote_build_command
end
|
#run(params = {}) ⇒ Object
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
|
# File 'lib/iron_worker_ng/code/base.rb', line 295
def run(params = {})
container_name = create_container(true)
payload = File.open("#{container_name}/__payload__", 'wb')
payload.write(params.is_a?(String) ? params : params.to_json)
payload.close
if @remote_build_command
system("cd #{container_name} && #{@remote_build_command}")
end
system("sh #{container_name}/__runner__.sh -d #{container_name} -payload #{container_name}/__payload__ -id 0")
FileUtils.rm_rf(container_name)
end
|
#runtime(runtime = nil) ⇒ Object
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
|
# File 'lib/iron_worker_ng/code/base.rb', line 158
def runtime(runtime = nil)
return @runtime unless runtime
unless @runtime.nil?
IronCore::Logger.error 'IronWorkerNG', "Runtime is already set to '#{@runtime}'", IronCore::Error
end
runtime_module = nil
runtime = runtime.to_s
begin
runtime_module = IronWorkerNG::Code::Runtime.const_get(runtime.capitalize)
rescue
begin
runtime_module = IronWorkerNG::Code::Runtime.const_get(runtime.upcase)
rescue
end
end
if runtime_module.nil?
IronCore::Logger.error 'IronWorkerNG', "Can't find runtime '#{runtime}'"
end
self.extend(runtime_module)
@runtime = runtime
end
|
#runtime=(runtime) ⇒ Object
186
187
188
|
# File 'lib/iron_worker_ng/code/base.rb', line 186
def runtime=(runtime)
runtime(runtime)
end
|
#runtime_bundle(container, local = false) ⇒ Object
196
197
|
# File 'lib/iron_worker_ng/code/base.rb', line 196
def runtime_bundle(container, local = false)
end
|
#runtime_run_code(local = false) ⇒ Object
199
200
201
|
# File 'lib/iron_worker_ng/code/base.rb', line 199
def runtime_run_code(local = false)
''
end
|
#to_s ⇒ Object
325
326
327
|
# File 'lib/iron_worker_ng/code/base.rb', line 325
def to_s
"runtime='#{@runtime}', name='#{@name}', exec='#{@exec.nil? ? '' : @exec.path}'"
end
|