Class: Vagrant::Action::General::Package

Inherits:
Object
  • Object
show all
Includes:
Util
Defined in:
lib/vagrant/action/general/package.rb

Overview

A general packaging (tar) middleware. Given the following options, it will do the right thing:

* package.output - The filename of the outputted package.
* package.include - An array of files to include in the package.
* package.directory - The directory which contains the contents to
    compress into the package.

This middleware always produces the final file in the current working directory (FileUtils.pwd)

Instance Method Summary collapse

Constructor Details

#initialize(app, env) ⇒ Package

Returns a new instance of Package.



21
22
23
24
25
26
# File 'lib/vagrant/action/general/package.rb', line 21

def initialize(app, env)
  @app = app

  env["package.files"]  ||= {}
  env["package.output"] ||= env[:global_config].package.name
end

Instance Method Details

#call(env) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/vagrant/action/general/package.rb', line 28

def call(env)
  @env = env

  raise Errors::PackageOutputDirectory if File.directory?(tar_path)
  raise Errors::PackageOutputExists if File.exist?(tar_path)
  raise Errors::PackageRequiresDirectory if !env["package.directory"] ||
    !File.directory?(env["package.directory"])

  compress

  @app.call(env)
end

#compressObject

Compress the exported file into a package



75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/vagrant/action/general/package.rb', line 75

def compress
  @env[:ui].info I18n.t("vagrant.actions.general.package.compressing", :tar_path => tar_path)

  # Copy over the included files
  copy_include_files

  # Get the output path. We have to do this up here so that the
  # pwd returns the proper thing.
  output_path = tar_path.to_s

  # Switch into that directory and package everything up
  Dir.chdir(@env["package.directory"]) do
    # Find all the files in our current directory and tar it up!
    files = Dir.glob(File.join(".", "**", "*"))

    # Package!
    Util::Subprocess.execute("bsdtar", "-czf", output_path, *files)
  end
end

#copy_include_filesObject

This method copies the include files (passed in via command line) to the temporary directory so they are included in a sub-folder within the actual box



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# File 'lib/vagrant/action/general/package.rb', line 55

def copy_include_files
  include_directory = Pathname.new(@env["package.directory"]).join("include")

  @env["package.files"].each do |from, dest|
    # We place the file in the include directory
    to = include_directory.join(dest)

    @env[:ui].info I18n.t("vagrant.actions.general.package.packaging", :file => from)
    FileUtils.mkdir_p(to.parent)

    # Copy direcotry contents recursively.
    if File.directory?(from)
      FileUtils.cp_r(Dir.glob(from), to.parent, :preserve => true)
    else
      FileUtils.cp(from, to, :preserve => true)
    end
  end
end

#recover(env) ⇒ Object



41
42
43
44
45
46
47
48
49
50
# File 'lib/vagrant/action/general/package.rb', line 41

def recover(env)
  # There are certain exceptions that we don't delete the file for.
  ignore_exc = [Errors::PackageOutputDirectory, Errors::PackageOutputExists]
  ignore_exc.each do |exc|
    return if env["vagrant.error"].is_a?(exc)
  end

  # Cleanup any packaged files if the packaging failed at some point.
  File.delete(tar_path) if File.exist?(tar_path)
end

#tar_pathObject

Path to the final box output file



96
97
98
# File 'lib/vagrant/action/general/package.rb', line 96

def tar_path
  File.expand_path(@env["package.output"], FileUtils.pwd)
end