Class: FPM::Fry::Command::Cook
- Inherits:
-
FPM::Fry::Command
- Object
- Clamp::Command
- FPM::Fry::Command
- FPM::Fry::Command::Cook
- Defined in:
- lib/fpm/fry/command/cook.rb
Constant Summary collapse
- UPDATE_VALUES =
['auto','never','always']
Instance Attribute Summary collapse
Attributes inherited from FPM::Fry::Command
Instance Method Summary collapse
- #adjust_config_files(output) ⇒ Object
- #adjust_package_settings(output) ⇒ Object
- #build! ⇒ Object
- #execute ⇒ Object
- #flavour ⇒ Object
-
#initialize(invocation_path, ctx = {}, parent_attribute_values = {}) ⇒ Cook
constructor
A new instance of Cook.
- #input_package(container) ⇒ Object
- #lint_output_class! ⇒ Object
- #lint_recipe! ⇒ Object
- #lint_recipe_file! ⇒ Object
- #packages ⇒ Object
- #update? ⇒ Boolean
- #write_output!(output) ⇒ Object
Methods inherited from FPM::Fry::Command
Constructor Details
#initialize(invocation_path, ctx = {}, parent_attribute_values = {}) ⇒ Cook
Returns a new instance of Cook.
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/fpm/fry/command/cook.rb', line 21 def initialize(invocation_path, ctx = {}, parent_attribute_values = {}) @tls = nil require 'digest' require 'fileutils' require 'fpm/fry/with_data' require 'fpm/fry/recipe' require 'fpm/fry/recipe/builder' require 'fpm/fry/detector' require 'fpm/fry/docker_file' require 'fpm/fry/stream_parser' require 'fpm/fry/block_enumerator' require 'fpm/fry/build_output_parser' require 'fpm/fry/inspector' require 'fpm/fry/plugin/config' super end |
Instance Attribute Details
#build_image ⇒ Object
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 |
# File 'lib/fpm/fry/command/cook.rb', line 110 def build_image @build_image ||= begin sum = Digest::SHA256.hexdigest( image_id + "\0" + cache.cachekey ) cachetag = "fpm-fry:#{sum[0..30]}" res = begin url = client.url("images/#{cachetag}/json") client.get( expects: [200,404], path: url ) rescue Excon::Error logger.error "could not fetch image json for #{image}, url: #{url}" raise end if res.status == 404 df = DockerFile::Source.new(builder.variables.merge(image: image_id),cache) begin url = client.url("build?rm=1&dockerfile=#{DockerFile::NAME}&t=#{cachetag}") client.post( headers: { 'Content-Type'=>'application/tar' }, expects: [200], path: url, request_block: BlockEnumerator.new(df.tar_io) ) rescue Excon::Error logger.error "could not build #{image}, url: #{url}" raise end else # Hack to trigger hints/warnings even when the cache is valid. DockerFile::Source.new(builder.variables.merge(image: image_id),cache).send(:file_map) end df = DockerFile::Build.new(cachetag, builder.variables.dup,builder.recipe, update: update?) parser = BuildOutputParser.new(out) begin url = client.url("build?rm=1&dockerfile=#{DockerFile::NAME}") res = client.post( headers: { 'Content-Type'=>'application/tar' }, expects: [200], path: url, request_block: BlockEnumerator.new(df.tar_io), response_block: parser ) rescue Excon::Error logger.error "could not build #{image}, url: #{url}" raise end if parser.images.none? raise "Didn't find a build image in the stream. This usually means that the build script failed." end image = parser.images.last logger.debug("Detected build image", image: image) image end end |
#builder ⇒ Object
55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/fpm/fry/command/cook.rb', line 55 def builder @builder ||= begin b = nil Inspector.for_image(client, image) do |inspector| variables = Detector.detect(inspector) logger.debug("Loading recipe",variables: variables, recipe: recipe) b = Recipe::Builder.new(variables, logger: ui.logger, inspector: inspector) b.load_file( recipe ) end b end end |
#cache ⇒ Object
73 74 75 |
# File 'lib/fpm/fry/command/cook.rb', line 73 def cache @cache ||= builder.recipe.source.build_cache(tmpdir) end |
#image_id ⇒ Object
96 97 98 99 100 101 102 103 104 105 106 107 |
# File 'lib/fpm/fry/command/cook.rb', line 96 def image_id @image_id ||= begin url = client.url("images/#{image}/json") res = client.get(expects: [200], path: url) body = JSON.parse(res.body) body.fetch('id'){ body.fetch('Id') } rescue Excon::Error logger.error "could not fetch image json for #{image}, url: #{url}" raise end end |
#output_class ⇒ Object
38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'lib/fpm/fry/command/cook.rb', line 38 def output_class @output_class ||= begin logger.debug("Autodetecting package type",flavour: flavour) case(flavour) when 'debian' require 'fpm/package/deb' FPM::Package::Deb when 'redhat' require 'fpm/package/rpm' FPM::Package::RPM else raise "Cannot auto-detect package type." end end end |
Instance Method Details
#adjust_config_files(output) ⇒ Object
358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 |
# File 'lib/fpm/fry/command/cook.rb', line 358 def adjust_config_files( output ) # FPM flags all files in /etc as config files but only for debian :/. # Actually this behavior makes sense to me for all packages because it's # the thing I usually want. By setting this attribute at least the # misleading warning goes away. output.attributes[:deb_no_default_config_files?] = true output.attributes[:deb_auto_config_files?] = false return if output.attributes[:fry_config_explicitly_used] # Now that we have disabled this for debian we have to reenable if it for # all. etc = File.('etc', output.staging_path) if File.exists?( etc ) # Config plugin wasn't used. Add everything under /etc prefix_length = output.staging_path.size + 1 added = [] Find.find(etc) do | path | next unless File.file? path name = path[prefix_length..-1] if !output.config_files.include? name added << name output.config_files << name end end if added.any? logger.hint( "#{output.name} contains some config files in /etc. They were automatically added. You can customize this using the \"config\" plugin.", documentation: "https://github.com/xing/fpm-fry/wiki/Plugin-config", files: added) end end end |
#adjust_package_settings(output) ⇒ Object
351 352 353 354 355 356 |
# File 'lib/fpm/fry/command/cook.rb', line 351 def adjust_package_settings( output ) # FPM ignores the file permissions on rpm packages. output.attributes[:rpm_use_file_permissions?] = true output.attributes[:rpm_user] = 'root' output.attributes[:rpm_group] = 'root' end |
#build! ⇒ Object
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 |
# File 'lib/fpm/fry/command/cook.rb', line 198 def build! body = begin url = client.url('containers','create') res = client.post( headers: { 'Content-Type' => 'application/json' }, path: url, expects: [201], body: JSON.generate({"Image" => build_image}) ) JSON.parse(res.body) rescue Excon::Error logger.error "could not create #{build_image}, url: #{url}" raise end container = body['Id'] begin begin url = client.url('containers',container,'start') client.post( headers: { 'Content-Type' => 'application/json' }, path: url, expects: [204], body: JSON.generate({}) ) rescue Excon::Error logger.error "could not start container #{container}, url: #{url}" raise end begin url = client.url('containers',container,'attach?stderr=1&stdout=1&stream=1&logs=1') client.post( path: url, body: '', expects: [200], middlewares: [ StreamParser.new(out,err), Excon::Middleware::Expects, Excon::Middleware::Instrumentor, Excon::Middleware::Mock ] ) rescue Excon::Error logger.error "could not attach to container #{container}, url: #{url}" raise end begin res = client.post( path: client.url('containers',container,'wait'), expects: [200], body: '' ) json = JSON.parse(res.body) if json["StatusCode"] != 0 raise Fry::WithData("Build failed", exit_code: json["StatusCode"]) end rescue Excon::Error logger.error "could not wait successfully for container #{container}, url: #{url}" raise end yield container ensure unless keep? client.destroy(container) end end end |
#execute ⇒ Object
393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 |
# File 'lib/fpm/fry/command/cook.rb', line 393 def execute # force some eager loading lint_recipe_file! builder lint_output_class! lint_recipe! cache image_id build_image packages do | dir_map | build! do |container| input_package(container) do |input| input.split( container, dir_map ) end end end return 0 rescue Recipe::NotFound => e logger.error("Recipe not found", recipe: recipe, exception: e) return 1 rescue => e logger.error(e) return 1 end |
#flavour ⇒ Object
69 70 71 |
# File 'lib/fpm/fry/command/cook.rb', line 69 def flavour builder.variables[:flavour] end |
#input_package(container) ⇒ Object
272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 |
# File 'lib/fpm/fry/command/cook.rb', line 272 def input_package(container) input = FPM::Package::Docker.new( logger: logger, client: client, keep_modified_files: builder.keep_modified_files, verbose: verbose ) builder.recipe.apply_input(input) begin input.input(container) return yield(input) ensure input.cleanup_staging input.cleanup_build end end |
#lint_output_class! ⇒ Object
78 79 80 |
# File 'lib/fpm/fry/command/cook.rb', line 78 def lint_output_class! end |
#lint_recipe! ⇒ Object
86 87 88 89 90 91 92 93 94 |
# File 'lib/fpm/fry/command/cook.rb', line 86 def lint_recipe! problems = builder.recipe.lint if problems.any? problems.each do |p| logger.error(p) end raise end end |
#lint_recipe_file! ⇒ Object
82 83 84 |
# File 'lib/fpm/fry/command/cook.rb', line 82 def lint_recipe_file! File.exists?(recipe) || raise(Recipe::NotFound) end |
#packages ⇒ Object
315 316 317 318 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 |
# File 'lib/fpm/fry/command/cook.rb', line 315 def packages dir_map = [] out_map = {} builder.recipe.packages.each do | package | output = output_class.new output.instance_variable_set(:@logger,logger) package.files.each do | pattern | dir_map << [ pattern, output.staging_path ] end out_map[ output ] = package end dir_map = Hash[ dir_map.reverse ] yield dir_map out_map.each do |output, package| package.apply_output(output) adjust_package_settings(output) adjust_config_files(output) end out_map.each do |output, _| write_output!(output) end ensure out_map.each do |output, _| output.cleanup_staging output.cleanup_build end end |
#update? ⇒ Boolean
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 |
# File 'lib/fpm/fry/command/cook.rb', line 172 def update? if flavour == 'debian' case(update) when 'auto' Inspector.for_image(client, image) do |inspector| begin inspector.read('/var/lib/apt/lists') do |file| next if file.header.name == 'lists/' logger.hint("/var/lib/apt/lists is not empty, you could try to speed up builds with --update=never", documentation: 'https://github.com/xing/fpm-fry/wiki/The-update-parameter') break end rescue FPM::Fry::Client::FileNotFound logger.hint("/var/lib/apt/lists does not exists, so we will autoupdate") end end return true when 'always' return true when 'never' return false end else return false end end |
#write_output!(output) ⇒ Object
289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 |
# File 'lib/fpm/fry/command/cook.rb', line 289 def write_output!(output) package_file = File.(output.to_s(nil)) FileUtils.mkdir_p(File.dirname(package_file)) tmp_package_file = package_file + '.tmp' begin FileUtils.rm_rf tmp_package_file rescue Errno::ENOENT end output.output(tmp_package_file) if output.config_files.any? logger.debug("Found config files for #{output.name}", files: output.config_files) else logger.debug("No config files for #{output.name}") end begin FileUtils.rm_rf package_file rescue Errno::ENOENT end File.rename tmp_package_file, package_file logger.info("Created package", :path => package_file) end |