Class: PDK::Module::Build
- Inherits:
-
Object
- Object
- PDK::Module::Build
- Defined in:
- lib/pdk/module/build.rb
Instance Attribute Summary collapse
-
#module_dir ⇒ Object
readonly
Returns the value of attribute module_dir.
-
#target_dir ⇒ Object
readonly
Returns the value of attribute target_dir.
Class Method Summary collapse
Instance Method Summary collapse
-
#build ⇒ String
Build a module package from a module directory.
-
#build_dir ⇒ Object
Return the path to the temporary build directory, which will be placed inside the target directory and match the release name (see #release_name).
-
#build_package ⇒ Object
Creates a gzip compressed tarball of the build directory.
-
#cleanup_build_dir ⇒ Object
Remove the temporary build directory and all its contents from disk.
-
#create_build_dir ⇒ Object
Create a temporary build directory where the files to be included in the package will be staged before building the tarball.
-
#ignore_file ⇒ String
Select the most appropriate ignore file in the module directory.
-
#ignored_files ⇒ PathSpec
Instantiate a new PathSpec class and populate it with the pattern(s) of files to be ignored.
-
#ignored_path?(path) ⇒ Boolean
Check if the given path matches one of the patterns listed in the ignore file.
-
#initialize(options = {}) ⇒ Build
constructor
A new instance of Build.
-
#metadata ⇒ Hash{String => Object}
Read and parse the values from metadata.json for the module that is being built.
-
#module_pdk_compatible? ⇒ Boolean
Check if the module is PDK Compatible.
-
#package_already_exists? ⇒ Boolean
Verify if there is an existing package in the target directory and prompts the user if they want to overwrite it.
-
#package_file ⇒ Object
Return the path where the built package file will be written to.
-
#release_name ⇒ String
Combine the module name and version into a Forge-compatible dash separated string.
-
#stage_module_in_build_dir ⇒ Object
Iterate through all the files and directories in the module and stage them into the temporary build directory (unless ignored).
-
#stage_path(path) ⇒ Object
Stage a file or directory from the module into the build directory.
-
#warn_symlink(path) ⇒ Object
Warn the user about a symlink that would have been included in the built package.
Constructor Details
#initialize(options = {}) ⇒ Build
Returns a new instance of Build.
17 18 19 20 |
# File 'lib/pdk/module/build.rb', line 17 def initialize( = {}) @module_dir = File.([:module_dir] || Dir.pwd) @target_dir = File.([:'target-dir'] || File.join(module_dir, 'pkg')) end |
Instance Attribute Details
#module_dir ⇒ Object (readonly)
Returns the value of attribute module_dir.
14 15 16 |
# File 'lib/pdk/module/build.rb', line 14 def module_dir @module_dir end |
#target_dir ⇒ Object (readonly)
Returns the value of attribute target_dir.
15 16 17 |
# File 'lib/pdk/module/build.rb', line 15 def target_dir @target_dir end |
Class Method Details
.invoke(options = {}) ⇒ Object
10 11 12 |
# File 'lib/pdk/module/build.rb', line 10 def self.invoke( = {}) new().build end |
Instance Method Details
#build ⇒ String
Build a module package from a module directory.
38 39 40 41 42 43 44 45 46 47 |
# File 'lib/pdk/module/build.rb', line 38 def build create_build_dir stage_module_in_build_dir build_package package_file ensure cleanup_build_dir end |
#build_dir ⇒ Object
Return the path to the temporary build directory, which will be placed inside the target directory and match the release name (see #release_name).
63 64 65 |
# File 'lib/pdk/module/build.rb', line 63 def build_dir @build_dir ||= File.join(target_dir, release_name) end |
#build_package ⇒ Object
Creates a gzip compressed tarball of the build directory.
If the destination package already exists, it will be removed before creating the new tarball.
159 160 161 162 163 164 165 166 167 |
# File 'lib/pdk/module/build.rb', line 159 def build_package FileUtils.rm_f(package_file) Dir.chdir(target_dir) do Zlib::GzipWriter.open(package_file) do |package_fd| Minitar.pack(release_name, package_fd) end end end |
#cleanup_build_dir ⇒ Object
Remove the temporary build directory and all its contents from disk.
80 81 82 |
# File 'lib/pdk/module/build.rb', line 80 def cleanup_build_dir FileUtils.rm_rf(build_dir, secure: true) end |
#create_build_dir ⇒ Object
Create a temporary build directory where the files to be included in the package will be staged before building the tarball.
If the directory already exists, remove it first.
71 72 73 74 75 |
# File 'lib/pdk/module/build.rb', line 71 def create_build_dir cleanup_build_dir FileUtils.mkdir_p(build_dir) end |
#ignore_file ⇒ String
Select the most appropriate ignore file in the module directory.
In order of preference, we first try ‘.pdkignore`, then `.pmtignore` and finally `.gitignore`.
176 177 178 179 180 181 182 |
# File 'lib/pdk/module/build.rb', line 176 def ignore_file @ignore_file ||= [ File.join(module_dir, '.pdkignore'), File.join(module_dir, '.pmtignore'), File.join(module_dir, '.gitignore'), ].find { |file| File.file?(file) && File.readable?(file) } end |
#ignored_files ⇒ PathSpec
Instantiate a new PathSpec class and populate it with the pattern(s) of files to be ignored.
188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
# File 'lib/pdk/module/build.rb', line 188 def ignored_files @ignored_files ||= if ignore_file.nil? PathSpec.new else fd = File.open(ignore_file, 'rb:UTF-8') data = fd.read fd.close PathSpec.new(data) end # Also ignore the target directory if it is in the module dir and not already ignored if Find.find(@module_dir).include?(target_dir) && !@ignored_files.match(File.basename(target_dir) + '/') @ignored_files = @ignored_files.add("\/#{File.basename(target_dir)}\/") end @ignored_files end |
#ignored_path?(path) ⇒ Boolean
Check if the given path matches one of the patterns listed in the ignore file.
131 132 133 134 135 |
# File 'lib/pdk/module/build.rb', line 131 def ignored_path?(path) path = path.to_s + '/' if File.directory?(path) !ignored_files.match_paths([path], module_dir).empty? end |
#metadata ⇒ Hash{String => Object}
Read and parse the values from metadata.json for the module that is being built.
26 27 28 |
# File 'lib/pdk/module/build.rb', line 26 def @metadata ||= PDK::Module::Metadata.from_file(File.join(module_dir, 'metadata.json')).data end |
#module_pdk_compatible? ⇒ Boolean
Check if the module is PDK Compatible. If not, then prompt the user if they want to run PDK Convert.
57 58 59 |
# File 'lib/pdk/module/build.rb', line 57 def module_pdk_compatible? ['pdk-version', 'template-url'].any? { |key| .key?(key) } end |
#package_already_exists? ⇒ Boolean
Verify if there is an existing package in the target directory and prompts the user if they want to overwrite it.
51 52 53 |
# File 'lib/pdk/module/build.rb', line 51 def package_already_exists? File.exist? package_file end |
#package_file ⇒ Object
Return the path where the built package file will be written to.
31 32 33 |
# File 'lib/pdk/module/build.rb', line 31 def package_file @package_file ||= File.join(target_dir, "#{release_name}.tar.gz") end |
#release_name ⇒ String
Combine the module name and version into a Forge-compatible dash separated string.
88 89 90 91 92 93 |
# File 'lib/pdk/module/build.rb', line 88 def release_name @release_name ||= [ ['name'], ['version'], ].join('-') end |
#stage_module_in_build_dir ⇒ Object
Iterate through all the files and directories in the module and stage them into the temporary build directory (unless ignored).
99 100 101 102 103 104 105 |
# File 'lib/pdk/module/build.rb', line 99 def stage_module_in_build_dir Find.find(module_dir) do |path| next if path == module_dir ignored_path?(path) ? Find.prune : stage_path(path) end end |
#stage_path(path) ⇒ Object
Stage a file or directory from the module into the build directory.
112 113 114 115 116 117 118 119 120 121 122 123 |
# File 'lib/pdk/module/build.rb', line 112 def stage_path(path) relative_path = Pathname.new(path).relative_path_from(Pathname.new(module_dir)) dest_path = File.join(build_dir, relative_path) if File.directory?(path) FileUtils.mkdir_p(dest_path, mode: File.stat(path).mode) elsif File.symlink?(path) warn_symlink(path) else FileUtils.cp(path, dest_path, preserve: true) end end |
#warn_symlink(path) ⇒ Object
Warn the user about a symlink that would have been included in the built package.
143 144 145 146 147 148 149 150 151 |
# File 'lib/pdk/module/build.rb', line 143 def warn_symlink(path) symlink_path = Pathname.new(path) module_path = Pathname.new(module_dir) PDK.logger.warn _('Symlinks in modules are not supported and will not be included in the package. Please investigate symlink %{from} -> %{to}.') % { from: symlink_path.relative_path_from(module_path), to: symlink_path.realpath.relative_path_from(module_path), } end |