Class: Jammit::Packager

Inherits:
Object
Defined in:
lib/jammit/packager.rb

Overview

The Jammit::Packager resolves the configuration file into lists of real assets that get merged into individual asset packages. Given the compiled contents of an asset package, the Packager knows how to cache that package with the correct timestamps.

Constant Summary

PATH_TO_URL = In Rails, the difference between a path and an asset URL is “public”.
/\A\/?public/

Method Summary

Constructor Details

- (Packager) initialize

Creating a new Packager will rebuild the list of assets from the Jammit.configuration. When assets.yml is being changed on the fly, create a new Packager.

Returns:

  • (Packager) — a new instance of Packager


15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/jammit/packager.rb', line 15

def initialize
  @compressor = Compressor.new
  @config = {
    :css => (Jammit.configuration[:stylesheets] || {}).symbolize_keys,
    :js  => (Jammit.configuration[:javascripts] || {}).symbolize_keys,
    :jst => (Jammit.configuration[:templates]   || {}).symbolize_keys
  }
  @packages = {
    :css => create_packages(@config[:css]),
    :js  => create_packages(@config[:js]),
    :jst => create_packages(@config[:jst])
  }
end

Method Details

- (Object) cache(package, extension, contents, output_dir, suffix = nil, mtime = Time.now)

Caches a single prebuilt asset package and gzips it at the highest compression level. Ensures that the modification time of both both variants is identical, for web server caching modules, as well as MHTML.



52
53
54
55
56
57
58
59
# File 'lib/jammit/packager.rb', line 52

def cache(package, extension, contents, output_dir, suffix=nil, mtime=Time.now)
  FileUtils.mkdir_p(output_dir) unless File.exists?(output_dir)
  filename = File.join(output_dir, Jammit.filename(package, extension, suffix))
  zip_name = "#{filename}.gz"
  File.open(filename, 'wb+') {|f| f.write(contents) }
  Zlib::GzipWriter.open(zip_name, Zlib::BEST_COMPRESSION) {|f| f.write(contents) }
  File.utime(mtime, mtime, filename, zip_name)
end

- (Object) individual_urls(package, extension)

Get the list of individual assets for a package.



62
63
64
# File 'lib/jammit/packager.rb', line 62

def individual_urls(package, extension)
  package_for(package, extension)[:urls]
end

- (Object) pack_javascripts(package)

Return the compressed contents of a javascript package.



72
73
74
# File 'lib/jammit/packager.rb', line 72

def pack_javascripts(package)
  @compressor.compress_js(package_for(package, :js)[:paths])
end

- (Object) pack_stylesheets(package, variant = nil, asset_url = nil)

Return the compressed contents of a stylesheet package.



67
68
69
# File 'lib/jammit/packager.rb', line 67

def pack_stylesheets(package, variant=nil, asset_url=nil)
  @compressor.compress_css(package_for(package, :css)[:paths], variant, asset_url)
end

- (Object) pack_templates(package)

Return the compiled contents of a JST package.



77
78
79
# File 'lib/jammit/packager.rb', line 77

def pack_templates(package)
  @compressor.compile_jst(package_for(package, :jst)[:paths])
end

- (Object) precache_all(output_dir = nil, base_url = nil)

Ask the packager to precache all defined assets, along with their gzip’d versions. In order to prebuild the MHTML stylesheets, we need to know the base_url, because IE only supports MHTML with absolute references.



32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/jammit/packager.rb', line 32

def precache_all(output_dir=nil, base_url=nil)
  output_dir ||= "#{ASSET_ROOT}/public/#{Jammit.package_path}"
  @config[:js].keys.each  {|p| cache(p, 'js',  pack_javascripts(p), output_dir) }
  @config[:jst].keys.each {|p| cache(p, 'jst', pack_templates(p),  output_dir) }
  @config[:css].keys.each do |p|
    cache(p, 'css', pack_stylesheets(p), output_dir)
    if Jammit.embed_images
      cache(p, 'css', pack_stylesheets(p, :datauri), output_dir, :datauri)
      if Jammit.mhtml_enabled && base_url
        mtime = Time.now
        asset_url = "#{base_url}#{Jammit.asset_url(p, :css, :mhtml, mtime)}"
        cache(p, 'css', pack_stylesheets(p, :mhtml, asset_url), output_dir, :mhtml, mtime)
      end
    end
  end
end

- (Object) create_packages(config) (private)

Compiles the list of assets that goes into each package. Runs an ordered list of Dir.globs, taking the merged unique result.



93
94
95
96
97
98
99
100
101
102
103
104
# File 'lib/jammit/packager.rb', line 93

def create_packages(config)
  packages = {}
  return packages if !config
  config.each do |name, globs|
    globs                  ||= []
    packages[name]         = {}
    paths                  = globs.map {|glob| Dir[glob] }.flatten.uniq
    packages[name][:paths] = paths
    packages[name][:urls]  = paths.map {|path| path.sub(PATH_TO_URL, '') }
  end
  packages
end

- (Object) not_found(package, extension) (private)

Raise a PackageNotFound exception for missing packages…

Raises:



107
108
109
# File 'lib/jammit/packager.rb', line 107

def not_found(package, extension)
  raise PackageNotFound, "assets.yml does not contain a \"#{package}\" #{extension.to_s.upcase} package"
end

- (Object) package_for(package, extension) (private)

Look up a package asset list by name, raising an exception if the package has gone missing.



86
87
88
89
# File 'lib/jammit/packager.rb', line 86

def package_for(package, extension)
  pack = @packages[extension] && @packages[extension][package]
  pack || not_found(package, extension)
end