Class: Bosh::Gen::Generators::JobGenerator

Inherits:
Thor::Group
  • Object
show all
Includes:
Thor::Actions
Defined in:
lib/bosh/gen/generators/job_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.source_rootObject



14
15
16
# File 'lib/bosh/gen/generators/job_generator.rb', line 14

def self.source_root
  File.join(File.dirname(__FILE__), "job_generator", "templates")
end

Instance Method Details

#check_nameObject

Raises:

  • (Thor::Error)


24
25
26
# File 'lib/bosh/gen/generators/job_generator.rb', line 24

def check_name
  raise Thor::Error.new("'#{job_name}' is not a valid BOSH id") unless job_name.bosh_valid_id?
end

#check_purposeObject



28
29
30
31
32
# File 'lib/bosh/gen/generators/job_generator.rb', line 28

def check_purpose
  unless valid_purposes.include?(purpose)
    raise Thor::Error.new("'#{purpose}' is not a valid job purpose of #{valid_purposes.inspect}")
  end
end

#check_root_is_releaseObject



18
19
20
21
22
# File 'lib/bosh/gen/generators/job_generator.rb', line 18

def check_root_is_release
  unless File.exist?("jobs") && File.exist?("packages")
    raise Thor::Error.new("run inside a BOSH release project")
  end
end

#template_filesObject

copy the thor template files into the bosh release to be bosh templates that’s right, templates (.tt) can become templates (.erb)



45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# File 'lib/bosh/gen/generators/job_generator.rb', line 45

def template_files
  generator_job_templates_path = File.join(self.class.source_root, "jobs/%job_name%_#{purpose}")
  directory "jobs/%job_name%_#{purpose}", "jobs/#{job_name}"

  # build a hash of { 'bin/webapp_ctl.erb' => 'bin/webapp_ctl', ...} used in spec
  @template_files = {}
  FileUtils.chdir(File.join(generator_job_templates_path, "templates")) do
    `ls */*`.split("\n").each do |template_file|
      # clean up thor name convention
      template_file.gsub!("%job_name%", job_name)
      template_file.gsub!(".tt", "")
      # strip erb from target file
      target_template_file = template_file.gsub(/.erb/, '')

      @template_files[template_file] = target_template_file
    end
  end
end

#warn_missing_dependenciesObject



34
35
36
37
38
39
40
41
# File 'lib/bosh/gen/generators/job_generator.rb', line 34

def warn_missing_dependencies
  dependencies.each do |d|
    raise Thor::Error.new("dependency '#{d}' is not a valid BOSH id") unless d.bosh_valid_id?
    unless File.exist?(File.join("packages", d))
      say_status "warning", "missing dependency '#{d}'", :yellow
    end
  end
end