Class: Bake::Blocks::Block

Inherits:
Object
  • Object
show all
Defined in:
lib/blocks/block.rb

Constant Summary collapse

@@block_counter =
0
@@delayed_result =
true
@@threads =
[]

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(config, referencedConfigs, prebuild, tcs) ⇒ Block

Returns a new instance of Block.



77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
# File 'lib/blocks/block.rb', line 77

def initialize(config, referencedConfigs, prebuild, tcs)
  @inDeps = false
  @prebuild = prebuild
  @visited = false
  @library = nil
  @executable = nil
  @config = config
  @referencedConfigs = referencedConfigs
  @projectName = config.parent.name
  @configName = config.name
  @projectDir = config.get_project_dir
  @result = true
  @tcs = tcs
  @bes = []
  @besDirect = []
  @lib_elements = []

  calcOutputDir
end

Instance Attribute Details

#besObject

Returns the value of attribute bes.



27
28
29
# File 'lib/blocks/block.rb', line 27

def bes
  @bes
end

#besDirectObject

Returns the value of attribute besDirect.



27
28
29
# File 'lib/blocks/block.rb', line 27

def besDirect
  @besDirect
end

#configObject (readonly)

Returns the value of attribute config.



26
27
28
# File 'lib/blocks/block.rb', line 26

def config
  @config
end

#configNameObject (readonly)

Returns the value of attribute configName.



26
27
28
# File 'lib/blocks/block.rb', line 26

def configName
  @configName
end

#executableObject (readonly)

Returns the value of attribute executable.



26
27
28
# File 'lib/blocks/block.rb', line 26

def executable
  @executable
end

#inDepsObject

Returns the value of attribute inDeps.



27
28
29
# File 'lib/blocks/block.rb', line 27

def inDeps
  @inDeps
end

#lib_elementsObject (readonly)

Returns the value of attribute lib_elements.



26
27
28
# File 'lib/blocks/block.rb', line 26

def lib_elements
  @lib_elements
end

#libraryObject (readonly)

Returns the value of attribute library.



26
27
28
# File 'lib/blocks/block.rb', line 26

def library
  @library
end

#output_dirObject (readonly)

Returns the value of attribute output_dir.



26
27
28
# File 'lib/blocks/block.rb', line 26

def output_dir
  @output_dir
end

#prebuildObject (readonly)

Returns the value of attribute prebuild.



26
27
28
# File 'lib/blocks/block.rb', line 26

def prebuild
  @prebuild
end

#projectDirObject (readonly)

Returns the value of attribute projectDir.



26
27
28
# File 'lib/blocks/block.rb', line 26

def projectDir
  @projectDir
end

#projectNameObject (readonly)

Returns the value of attribute projectName.



26
27
28
# File 'lib/blocks/block.rb', line 26

def projectName
  @projectName
end

#resultObject

Returns the value of attribute result.



27
28
29
# File 'lib/blocks/block.rb', line 27

def result
  @result
end

#tcsObject (readonly)

Returns the value of attribute tcs.



26
27
28
# File 'lib/blocks/block.rb', line 26

def tcs
  @tcs
end

#visitedObject

Returns the value of attribute visited.



27
28
29
# File 'lib/blocks/block.rb', line 27

def visited
  @visited
end

Class Method Details

.block_counterObject



179
180
181
# File 'lib/blocks/block.rb', line 179

def self.block_counter
  @@block_counter
end

.delayed_resultObject



195
196
197
# File 'lib/blocks/block.rb', line 195

def self.delayed_result
  @@delayed_result
end

.inc_block_counterObject



175
176
177
# File 'lib/blocks/block.rb', line 175

def self.inc_block_counter()
  @@block_counter += 1
end

.init_threadsObject



527
528
529
530
531
532
533
# File 'lib/blocks/block.rb', line 527

def self.init_threads()
  @@threads = []
  @@result = true
  @@mutex = Mutex.new
  @@mutexStdinSelect = Mutex.new
  Bake::Multithread::Jobs.init_semaphore()
end

.reset_block_counterObject



183
184
185
# File 'lib/blocks/block.rb', line 183

def self.reset_block_counter
  @@block_counter = 1
end

.reset_delayed_resultObject



191
192
193
# File 'lib/blocks/block.rb', line 191

def self.reset_delayed_result
  @@delayed_result = true
end

.set_delayed_resultObject



187
188
189
# File 'lib/blocks/block.rb', line 187

def self.set_delayed_result
  @@delayed_result = false
end

.set_num_projects(blocks) ⇒ Object



237
238
239
240
241
242
243
244
245
246
247
# File 'lib/blocks/block.rb', line 237

def self.set_num_projects(blocks)
  if Bake.options.verbose >= 2
    @@num_projects = blocks.length
  else
    counter = 0
    blocks.each do |b|
      counter += 1 if b.isBuildBlock?
    end
    @@num_projects = counter
  end
end

.threadsObject



199
200
201
# File 'lib/blocks/block.rb', line 199

def self.threads
  @@threads
end

.waitForAllThreadsObject



203
204
205
206
207
208
209
210
# File 'lib/blocks/block.rb', line 203

def self.waitForAllThreads
  if @@threads.length > 0
    STDOUT.puts "DEBUG_THREADS: Wait for all threads." if Bake.options.debug_threads
    @@threads.each{|t| while not t.join(2) do end}
    @@threads = []
    STDOUT.puts "DEBUG_THREADS: All threads finished." if Bake.options.debug_threads
  end
end

.waitForFreeThreadObject



307
308
309
310
311
312
313
314
315
316
317
# File 'lib/blocks/block.rb', line 307

def self.waitForFreeThread
  if @@threads.length == Bake.options.threads
    begin
      STDOUT.puts "DEBUG_THREADS: Wait for free thread." if Bake.options.debug_threads
      endedThread = ThreadsWait.new(*@@threads).next_wait
      STDOUT.puts "DEBUG_THREADS: Thread free: #{endedThread.object_id}" if Bake.options.debug_threads
      @@threads.delete(endedThread)
    rescue ErrNoWaitingThread
    end
  end
end

Instance Method Details

#blockAbort?(res) ⇒ Boolean

Returns:

  • (Boolean)


360
361
362
# File 'lib/blocks/block.rb', line 360

def blockAbort?(res)
  ((not res) || !@@delayed_result) and Bake.options.stopOnFirstError or Bake::IDEInterface.instance.get_abort
end

#calcIsBuildBlockObject



212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
# File 'lib/blocks/block.rb', line 212

def calcIsBuildBlock
  @startupSteps ||= []

  return true if Metamodel::ExecutableConfig === @config
  if Metamodel::CustomConfig === @config
    return true if @config.step
  else
    return true if @config.files.length > 0
  end
  if ((@config.startupSteps && @config.startupSteps.step.length > 0) ||
    (@config.preSteps && @config.preSteps.step.length > 0) ||
    (@config.postSteps && @config.postSteps.step.length > 0) ||
    (@config.exitSteps && @config.exitSteps.step.length > 0) ||
    (@config.cleanSteps && @config.cleanSteps.step.length > 0) ||
    (@config.preSteps && @config.preSteps.step.length > 0))
      return true
  end
  return false
end

#calcOutputDirObject



588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
# File 'lib/blocks/block.rb', line 588

def calcOutputDir
  if @tcs[:OUTPUT_DIR] != nil
    p = convPath(@tcs[:OUTPUT_DIR])
    p = p[2..-1] if p.start_with?("./")
    @output_dir = p
  else
    qacPart = Bake.options.qac ? (".qac" + Bake.options.buildDirDelimiter) : ""
    if isMainProject?
      @output_dir = "build" + Bake.options.buildDirDelimiter + qacPart + Bake.options.build_config
    else
      @output_dir = "build" + Bake.options.buildDirDelimiter + qacPart + @config.name + "_" + Bake.options.main_project_name + "_" + Bake.options.build_config
    end
  end
  if @tcs[:OUTPUT_DIR_POSTFIX] != nil
    @output_dir = @output_dir + @tcs[:OUTPUT_DIR_POSTFIX] 
  end
  if Bake.options.abs_path_in
    @output_dir = File.expand_path(@output_dir, @projectDir)
  end
end

#callDeps(method) ⇒ Object



296
297
298
299
300
301
302
303
304
305
# File 'lib/blocks/block.rb', line 296

def callDeps(method)
  return true if Bake.options.project
  depResult = true
  bes.each do |dep|
    next if Metamodel::IncludeDir === dep
    depResult = (ALL_BLOCKS[dep.name+","+dep.config].send(method) and depResult)
    break if (!depResult) && Bake.options.stopOnFirstError
  end
  return depResult
end

#callSteps(method) ⇒ Object



370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
# File 'lib/blocks/block.rb', line 370

def callSteps(method)
  @config.writeEnvVars()
  Thread.current[:lastCommand] = nil
  @allSteps = (preSteps + mainSteps + postSteps)
  # check if we have to delay the output (if the last step of this block is not in a thread)
  @outputStep = nil
  @allSteps.each { |step| @outputStep = independent?(method, step) ? step : nil }
  while !@allSteps.empty?
    parallel = []
    while @allSteps.first && independent?(method, @allSteps.first)
      parallel << @allSteps.shift
    end
    if parallel.length > 0
      execute_in_thread(parallel) {
        lastStep = Thread.current[:steps].last
         begin
           Thread.current[:steps].each do |step|
             Multithread::Jobs.incThread() if !Compile === step
             begin
               @result = executeStep(step, :execute) if @result
             ensure
               Multithread::Jobs.decThread() if !Compile === step
             end
             @@delayed_result &&= @result
             break if blockAbort?(@result)
           end
         ensure
           SyncOut.stopStream() if lastStep == @outputStep if Bake.options.syncedOutput
         end
       }
    else
      step = @allSteps.shift
      Blocks::Block::waitForAllThreads()
      @result = executeStep(step, method) if @result
      @outputStep = nil if !@result && blockAbort?(@result)
    end
    return @result if blockAbort?(@result)
  end

  return @result
end

#childsObject



57
58
59
# File 'lib/blocks/block.rb', line 57

def childs
  @childs ||= []
end

#cleanObject



485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
# File 'lib/blocks/block.rb', line 485

def clean
  return true if (@visited)
  @visited = true

  depResult = callDeps(:clean)
  return false if not depResult and Bake.options.stopOnFirstError

  if Bake.options.verbose >= 2
    typeStr = "Cleaning"
    if @prebuild
      typeStr = "Checking"
    elsif not isBuildBlock?
      typeStr = "Skipping"
    end
    Bake.formatter.printAdditionalInfo "**** #{typeStr} #{Block.block_counter} of #{@@num_projects}: #{@projectName} (#{@configName}) ****"
  end

  if Bake.options.verbose >= 2 || (isBuildBlock? && Bake.options.verbose >= 1)
    Block.inc_block_counter()
  end

  @result = callSteps(:clean)

  if Bake.options.clobber
    Dir.chdir(@projectDir) do
      if File.exist?".bake"
        puts "Deleting folder .bake" if Bake.options.verbose >= 2
        if !Bake.options.dry
          FileUtils.rm_rf(".bake")
        end
      end
    end
  end

  cleanSteps.each do |step|
    @result = executeStep(step, :cleanStep) if @result
    return false if not @result and Bake.options.stopOnFirstError
  end

  return (depResult && @result)
end

#cleanStepsObject



49
50
51
# File 'lib/blocks/block.rb', line 49

def cleanSteps
  @cleanSteps ||= []
end

#convPath(dir, elem = nil, warnIfLocal = false) ⇒ Object



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
# File 'lib/blocks/block.rb', line 101

def convPath(dir, elem=nil, warnIfLocal=false)
  if dir.respond_to?("name")
    d = dir.name
    elem = dir
  else
    d = dir
  end

  return d if Bake.options.no_autodir

  inc = d.split("/")
  if (inc[0] == "..") # very simple check, but should be okay for 99.9 % of the cases
    if elem and Bake.options.verbose >= 2
      SyncOut.mutex.synchronize do
        Bake.formatter.printInfo("path starts with \"..\"", elem)
      end
    end
  end

  res = []

  return d if (inc[0] == "." || inc[0] == "..") # prio 0: force local

  if (inc[0] == @projectName) # prio 1: the real path magic
    resPathMagic = inc[1..-1].join("/") # within self
    resPathMagic = "." if resPathMagic == ""
    res << resPathMagic
    if warnIfLocal
      if resPathMagic == "."
        Bake.formatter.printInfo("\"#{d}\" uses path magic in IncludeDir, please use \".\" instead", elem)
      else
        Bake.formatter.printInfo("\"#{d}\" uses path magic in IncludeDir, please omit \"#{inc[0]}/\" or use \"./#{resPathMagic}\"", elem) if warnIfLocal
      end
    end
  elsif @referencedConfigs.include?(inc[0])
    dirOther = @referencedConfigs[inc[0]].first.parent.get_project_dir
    resPathMagic = File.rel_from_to_project(@projectDir, dirOther, false)
    postfix = inc[1..-1].join("/")
    resPathMagic = resPathMagic + "/" + postfix if postfix != ""
    resPathMagic = "." if resPathMagic == ""
    res << resPathMagic
    Bake.formatter.printInfo("\"#{d}\" uses path magic in IncludeDir, please use a Dependency to \"#{inc[0]}\" instead", elem) if warnIfLocal
  end

  if File.exist?(@projectDir + "/" + d) # prio 2: local, e.g. "include"
    res << d
  end

  # prio 3: check if dir exists without Project.meta entry
  Bake.options.roots.each do |r|
    absIncDir = r.dir+"/"+d
    if File.exist?(absIncDir)
      res << File.rel_from_to_project(@projectDir,absIncDir,false)
      Bake.formatter.printInfo("\"#{d}\" uses path magic in IncludeDir, please create a Project.meta in \"#{absIncDir}\" or upwards and use a Dependency instead", elem) if warnIfLocal && res.length == 1
    end
  end

  return d if res.empty? # prio 4: fallback, no path found

  res = res.map{ |r| Pathname.new(r).cleanpath.to_s }.uniq

  if warnIfLocal && res.length > 1
    if elem and Bake.options.verbose >= 2
      SyncOut.mutex.synchronize do
        Bake.formatter.printInfo("#{d} matches several paths:", elem)
        puts "  #{res[0]} (chosen)"
        res[1..-1].each { |r| puts "  #{r}" }
      end
    end
  end

  res[0]
end

#dependenciesObject



53
54
55
# File 'lib/blocks/block.rb', line 53

def dependencies
  @dependencies ||= []
end

#executeObject



412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
# File 'lib/blocks/block.rb', line 412

def execute
  if (@inDeps)
    if Bake.options.verbose >= 3
      SyncOut.mutex.synchronize do
        Bake.formatter.printWarning("While calculating next config, a circular dependency was found including project #{@projectName} with config #{@configName}", @config)
      end
    end
    return true
  end

  SyncOut.mutex.synchronize do
    if @visited
      while !defined?(@allSteps) || !@allSteps.empty?
        sleep(0.1)
      end
      return true # maybe to improve later (return false if step has a failed non-independent step)
    end
    @visited = true
  end

  @inDeps = true
  begin
    depResult = callDeps(:execute)
  rescue Exception => e
    @allSteps = []
    raise
  end

  @inDeps = false
  if blockAbort?(depResult)
    @allSteps = []
    return @result && depResult 
  end

  Bake::IDEInterface.instance.set_build_info(@projectName, @configName)
  begin
    SyncOut.mutex.synchronize do
      @outputStep = nil
      SyncOut.startStream() if Bake.options.syncedOutput
      if !Bake.options.skipBuildingLine && (Bake.options.verbose >= 2 || (isBuildBlock? && Bake.options.verbose >= 1))
        typeStr = "Building"
        if @prebuild
          typeStr = "Using"
        elsif not isBuildBlock?
          typeStr = "Applying"
        end

        bcStr = ">>CONF_NUM<<"
        if !Bake.options.syncedOutput
          bcStr = Block.block_counter
          Block.inc_block_counter()
        end

        Bake.formatter.printAdditionalInfo "**** #{typeStr} #{bcStr} of #{@@num_projects}: #{@projectName} (#{@configName}) ****"
      end
      puts "Project path: #{@projectDir}" if Bake.options.projectPaths
    end

    @result = callSteps(:execute)
  ensure
    if Bake.options.syncedOutput
      if !@outputStep
        SyncOut.stopStream()
      else
        SyncOut.discardStreams()
      end
    end
    @allSteps = []
  end
  
  return (depResult && @result)
end

#execute_in_thread(steps) ⇒ Object

Raises:



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
# File 'lib/blocks/block.rb', line 319

def execute_in_thread(steps)
  @@mutex.synchronize do
    Block::waitForFreeThread()
    return if blockAbort?(true)

    tmpstdout = Thread.current[:tmpStdout].nil? ? nil : Thread.current[:tmpStdout].dup
    @@threads << Thread.new(Thread.current[:stdout], tmpstdout, steps) { |outStr, tmpStdout, steps|
      STDOUT.puts "DEBUG_THREADS: Started: #{Thread.current.object_id} (#{@projectName}, #{@config.name})" if Bake.options.debug_threads
      Thread.current[:stdout] = outStr
      Thread.current[:tmpStdout] = tmpStdout
      Thread.current[:steps] = steps
      exceptionOccured = false
      begin
        yield
        exceptionOccured = true
      rescue Bake::SystemCommandFailed => scf # normal compilation error
      rescue SystemExit => exSys
      rescue AbortException => exSys
        Bake::IDEInterface.instance.set_abort(true)
      rescue Exception => ex1
        if !Bake::IDEInterface.instance.get_abort
          SyncOut.mutex.synchronize do
            Bake.formatter.printError("Error: #{ex1.message}")
            puts ex1.backtrace if Bake.options.debug
          end

        end
      end
      if !exceptionOccured
        @result = false
        @@delayed_result = false
      end
      STDOUT.puts "DEBUG_THREADS: Stopped: #{Thread.current.object_id} (#{@projectName}, #{@config.name})" if Bake.options.debug_threads
    }

    Block::waitForFreeThread()
    return if blockAbort?(true)
  end
  raise AbortException.new if Bake::IDEInterface.instance.get_abort
end

#executeStep(step, method) ⇒ Object

Raises:



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
# File 'lib/blocks/block.rb', line 249

def executeStep(step, method)
  begin
    @result = step.send(method) && @result
  rescue Bake::SystemCommandFailed => scf
    @result = false
    ProcessHelper.killProcess(true)
  rescue SystemExit => exSys
    @result = false
    ProcessHelper.killProcess(true)
  rescue Exception => ex1
    @result = false
    if not Bake::IDEInterface.instance.get_abort
      SyncOut.mutex.synchronize do
        Bake.formatter.printError("Error: #{ex1.message}")
        puts ex1.backtrace if Bake.options.debug
      end
    end
  end

  if Bake::IDEInterface.instance.get_abort
    raise AbortException.new
  end

  # needed for ctrl-c in Cygwin console
  #####################################
  # additionally, the user has to enable raw mode of Cygwin console: "stty raw".
  # raw mode changes the signals into raw characters.
  # original problem: Cygwin is compiled with broken control handler config,
  # which might not be changed due to backward compatibility.
  # the control handler works only with programs compiled under Cygwin, which is
  # not true for Windows RubyInstaller packages.
  ctrl_c_found = false
  begin
    @@mutexStdinSelect.synchronize do
      while IO.select([$stdin],nil,nil,0) do
        nextChar = $stdin.sysread(1)
        if nextChar == "\x03"
          ctrl_c_found = true
        end
      end
    end
  rescue Exception => e
  end
  raise AbortException.new if ctrl_c_found
  return @result
end

#exitsObject



552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
# File 'lib/blocks/block.rb', line 552

def exits
  return true if (@visited)
  @visited = true

  depResult = callDeps(:exits)

  if Bake.options.verbose >= 1 and not exitSteps.empty?
    Bake.formatter.printAdditionalInfo "**** Exiting #{@projectName} (#{@configName}) ****"
  end

  exitSteps.each do |step|
    @result = executeStep(step, :exitStep) && @result
  end

  return (depResult && @result)
end

#exitStepsObject



45
46
47
# File 'lib/blocks/block.rb', line 45

def exitSteps
  @exitSteps ||= []
end

#getBlocks(method) ⇒ Object



578
579
580
581
582
# File 'lib/blocks/block.rb', line 578

def getBlocks(method)
  @otherBlocks = []
  getSubBlocks(self, method)
  return @otherBlocks
end

#getCompileBlocksObject



97
98
99
# File 'lib/blocks/block.rb', line 97

def getCompileBlocks()
  mainSteps.select { |m| Compile === m }
end

#getSubBlocks(b, method) ⇒ Object



569
570
571
572
573
574
575
576
# File 'lib/blocks/block.rb', line 569

def getSubBlocks(b, method)
  b.send(method).each do |child_b|
    if not @otherBlocks.include?child_b and not child_b == self
      @otherBlocks << child_b
      getSubBlocks(child_b, method)
    end
  end
end

#independent?(method, step) ⇒ Boolean

Returns:

  • (Boolean)


364
365
366
367
368
# File 'lib/blocks/block.rb', line 364

def independent?(method, step)
  method == :execute && (Library === step || Compile === step ||
    (CommandLine === step && step.config.independent) ||
    (Makefile === step && step.config.independent))
end

#isBuildBlock?Boolean

Returns:

  • (Boolean)


232
233
234
235
# File 'lib/blocks/block.rb', line 232

def isBuildBlock?
  return true if Bake.options.conversion_info
  @isBuildBlock ||= calcIsBuildBlock
end

#isMainProject?Boolean

Returns:

  • (Boolean)


584
585
586
# File 'lib/blocks/block.rb', line 584

def isMainProject?
  @projectName == Bake.options.main_project_name and @config.name == Bake.options.build_config
end

#mainStepsObject



37
38
39
# File 'lib/blocks/block.rb', line 37

def mainSteps
  @mainSteps ||= []
end

#parentsObject



61
62
63
# File 'lib/blocks/block.rb', line 61

def parents
  @parents ||= []
end

#postStepsObject



41
42
43
# File 'lib/blocks/block.rb', line 41

def postSteps
  @postSteps ||= []
end

#preStepsObject



33
34
35
# File 'lib/blocks/block.rb', line 33

def preSteps
  @preSteps ||= []
end

#qnameObject



73
74
75
# File 'lib/blocks/block.rb', line 73

def qname()
  @projectName + "," + @configName
end

#set_executable(executable) ⇒ Object



69
70
71
# File 'lib/blocks/block.rb', line 69

def set_executable(executable)
  @executable = executable
end

#set_library(library) ⇒ Object



65
66
67
# File 'lib/blocks/block.rb', line 65

def set_library(library)
  @library = library
end

#startupObject



535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
# File 'lib/blocks/block.rb', line 535

def startup
  return true if (@visited)
  @visited = true

  depResult = callDeps(:startup)

  if Bake.options.verbose >= 1 and not startupSteps.empty?
    Bake.formatter.printAdditionalInfo "**** Starting up #{@projectName} (#{@configName}) ****"
  end

  startupSteps.each do |step|
    @result = executeStep(step, :startupStep) && @result
  end

  return (depResult && @result)
end

#startupStepsObject



29
30
31
# File 'lib/blocks/block.rb', line 29

def startupSteps
  @startupSteps ||= []
end