Class: IronWorkerNG::Code::Base

Direct Known Subclasses

Binary, Builder, Go, Java, Mono, Node, PHP, Perl, Python, Ruby

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Feature::Common::SetEnv::InstanceMethods

#set_env

Methods included from Feature::Common::MergeDeb::InstanceMethods

#merge_deb

Methods included from Feature::Common::MergeDir::InstanceMethods

#merge_dir

Methods included from Feature::Common::MergeFile::InstanceMethods

#merge_file

Constructor Details

#initialize(*args, &block) ⇒ Base

Returns a new instance of Base.



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
# File 'lib/iron_worker_ng/code/base.rb', line 33

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



110
111
112
113
114
115
116
117
# File 'lib/iron_worker_ng/code/base.rb', line 110

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_dirObject

Returns the value of attribute base_dir.



19
20
21
# File 'lib/iron_worker_ng/code/base.rb', line 19

def base_dir
  @base_dir
end

#dest_dirObject

Returns the value of attribute dest_dir.



20
21
22
# File 'lib/iron_worker_ng/code/base.rb', line 20

def dest_dir
  @dest_dir
end

#envObject

Returns the value of attribute env.



21
22
23
# File 'lib/iron_worker_ng/code/base.rb', line 21

def env
  @env
end

#featuresObject

Returns the value of attribute features.



16
17
18
# File 'lib/iron_worker_ng/code/base.rb', line 16

def features
  @features
end

#fixatorsObject

Returns the value of attribute fixators.



17
18
19
# File 'lib/iron_worker_ng/code/base.rb', line 17

def fixators
  @fixators
end

#use_local_iron_worker_ngObject

Returns the value of attribute use_local_iron_worker_ng.



23
24
25
# File 'lib/iron_worker_ng/code/base.rb', line 23

def use_local_iron_worker_ng
  @use_local_iron_worker_ng
end

Instance Method Details

#build_workerfileObject



318
319
320
321
322
323
324
325
326
327
# File 'lib/iron_worker_ng/code/base.rb', line 318

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



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
# File 'lib/iron_worker_ng/code/base.rb', line 205

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

#{container.runner_additions}

#{runtime_run_code(local)}
RUNNER
    end

    runtime_bundle(container, local)
  end
end

#create_container(local = false) ⇒ Object



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
# File 'lib/iron_worker_ng/code/base.rb', line 245

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

#fixateObject



192
193
194
195
196
# File 'lib/iron_worker_ng/code/base.rb', line 192

def fixate
  @fixators.each do |f|
    send(f)
  end
end

#full_remote_build(full_remote_build = nil) ⇒ Object



146
147
148
149
150
# File 'lib/iron_worker_ng/code/base.rb', line 146

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



152
153
154
# File 'lib/iron_worker_ng/code/base.rb', line 152

def full_remote_build=(full_remote_build)
  @full_remote_build = full_remote_build
end

#guess_name_for_path(path) ⇒ Object



119
120
121
# File 'lib/iron_worker_ng/code/base.rb', line 119

def guess_name_for_path(path)
  File.basename(path).gsub(/#{File.extname(path)}$/, '')
end

#install(standalone = false) ⇒ Object



315
316
# File 'lib/iron_worker_ng/code/base.rb', line 315

def install(standalone = false)
end

#name(name = nil) ⇒ Object



123
124
125
126
127
# File 'lib/iron_worker_ng/code/base.rb', line 123

def name(name = nil)
  @name = name if name

  @name
end

#name=(name) ⇒ Object



129
130
131
# File 'lib/iron_worker_ng/code/base.rb', line 129

def name=(name)
  @name = name
end

#remoteObject



156
157
158
# File 'lib/iron_worker_ng/code/base.rb', line 156

def remote
  @full_remote_build = true
end

#remote_build_command(remote_build_command = nil) ⇒ Object Also known as: build



133
134
135
136
137
# File 'lib/iron_worker_ng/code/base.rb', line 133

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=



139
140
141
# File 'lib/iron_worker_ng/code/base.rb', line 139

def remote_build_command=(remote_build_command)
  @remote_build_command = remote_build_command
end

#run(params = {}) ⇒ Object



299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
# File 'lib/iron_worker_ng/code/base.rb', line 299

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



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
# File 'lib/iron_worker_ng/code/base.rb', line 160

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



188
189
190
# File 'lib/iron_worker_ng/code/base.rb', line 188

def runtime=(runtime)
  runtime(runtime)
end

#runtime_bundle(container, local = false) ⇒ Object



198
199
# File 'lib/iron_worker_ng/code/base.rb', line 198

def runtime_bundle(container, local = false)
end

#runtime_run_code(local = false) ⇒ Object



201
202
203
# File 'lib/iron_worker_ng/code/base.rb', line 201

def runtime_run_code(local = false)
  ''
end

#to_sObject



329
330
331
# File 'lib/iron_worker_ng/code/base.rb', line 329

def to_s
  "runtime='#{@runtime}', name='#{@name}', exec='#{@exec.nil? ? '' : @exec.path}'"
end