Class: Jammit::Compressor
- Inherits:
- Object
- Defined in:
- lib/jammit/compressor.rb
Overview
Uses the YUI Compressor or Closure Compiler to compress JavaScript. Always uses YUI to compress CSS (Which means that Java must be installed.) Also knows how to create a concatenated JST file. If “embed_images” is turned on, creates “mhtml” and “datauri” versions of all stylesheets, with all enabled images inlined into the css.
Constant Summary
- IMAGE_MIME_TYPES = Mapping from extension to mime-type of all embeddable images.
{ '.png' => 'image/png', '.jpg' => 'image/jpeg', '.jpeg' => 'image/jpeg', '.gif' => 'image/gif', '.tif' => 'image/tiff', '.tiff' => 'image/tiff' }
- IMAGE_DETECTOR = Detect all image URLs that are inside of an “embed” folder.
/url\(['"]?([^\s)]*embed\/[^\s)]+\.(png|jpg|jpeg|gif|tif|tiff))['"]?\)/
- IMAGE_REPLACER =
/url\(__EMBED__([^\s)]+)\)/
- MHTML_START = MHTML file constants.
"/*\r\nContent-Type: multipart/related; boundary=\"JAMMIT_MHTML_SEPARATOR\"\r\n\r\n"
- MHTML_SEPARATOR =
"--JAMMIT_MHTML_SEPARATOR\r\n"
- MHTML_END =
"*/\r\n"
- JST_START = JST file constants.
"(function(){window.JST = window.JST || {};"
- JST_END =
"})();"
- DEFAULT_OPTIONS =
{ :yui => {:munge => true}, :closure => {} }
Method Summary
- - (Object) compile_jst(paths) Compiles a single JST file by writing out a javascript that adds template properties to a top-level “window.JST” object.
- - (Object) compress_css(paths, variant = nil, asset_url = nil) Concatenate and compress a list of CSS stylesheets.
- - (Object) compress_js(paths) Concatenate together a list of JavaScript paths, and pass them through the YUI Compressor (with munging enabled).
- - (Compressor) initialize Creating a compressor initializes the internal YUI Compressor from the “yui-compressor” gem, or the internal Closure Compiler from the “closure-compiler” gem.
- - (Object) concatenate(paths) private Concatenate together a list of asset files.
- - (Object) concatenate_and_tag_images(paths) private In order to support embedded images from relative paths, we need to expand the paths before contatenating the CSS together and losing the location of the original stylesheet path.
- - (Object) encoded_contents(image_path) private Return the Base64-encoded contents of an image on a single line.
- - (Object) mime_type(image_path) private Grab the mime-type of an image, by filename.
- - (Object) public_path(image_path, css_path) private Get the site-absolute public path for an image file path that may or may not be relative, given the path of the stylesheet that contains it.
- - (Object) valid_image(image_path) private An image is valid if it exists, and is less than 32K.
- - (Object) with_data_uris(css) private Re-write all enabled image URLs in a stylesheet with their corresponding Data-URI Base-64 encoded image contents.
- - (Object) with_mhtml(css, asset_url) private Re-write all enabled image URLs in a stylesheet with the MHTML equivalent.
Constructor Details
- (Compressor) initialize
Creating a compressor initializes the internal YUI Compressor from the “yui-compressor” gem, or the internal Closure Compiler from the “closure-compiler” gem.
41 42 43 44 45 46 47 48 |
# File 'lib/jammit/compressor.rb', line 41 def initialize @css_compressor = YUI::CssCompressor.new flavor = Jammit.javascript_compressor = DEFAULT_OPTIONS[flavor].merge(Jammit.) @js_compressor = flavor == :closure ? Closure::Compiler.new() : YUI::JavaScriptCompressor.new() end |
Method Details
- (Object) compile_jst(paths)
Compiles a single JST file by writing out a javascript that adds template properties to a top-level “window.JST” object. Adds a JST-compilation function to the top of the package, unless you’ve specified your own preferred function, or turned it off. JST templates are named with the basename of their file.
72 73 74 75 76 77 78 79 80 |
# File 'lib/jammit/compressor.rb', line 72 def compile_jst(paths) compiled = paths.map do |path| template_name = File.basename(path, File.extname(path)) contents = File.read(path).gsub(/\n/, '').gsub("'", '\\\\\'') "window.JST.#{template_name} = #{Jammit.template_function}('#{contents}');" end compiler = Jammit.include_jst_script ? File.read(DEFAULT_JST_SCRIPT) : ''; [JST_START, compiler, compiled, JST_END].flatten.join("\n") end |
- (Object) compress_css(paths, variant = nil, asset_url = nil)
Concatenate and compress a list of CSS stylesheets. When compressing a :datauri or :mhtml variant, post-processes the result to embed referenced images.
59 60 61 62 63 64 65 |
# File 'lib/jammit/compressor.rb', line 59 def compress_css(paths, variant=nil, asset_url=nil) return @css_compressor.compress(concatenate(paths)) if variant.nil? compressed_css = @css_compressor.compress(concatenate_and_tag_images(paths)) return with_data_uris(compressed_css) if variant == :datauri return with_mhtml(compressed_css, asset_url) if variant == :mhtml raise PackageNotFound, "\"#{variant}\" is not a valid stylesheet variant" end |
- (Object) compress_js(paths)
Concatenate together a list of JavaScript paths, and pass them through the YUI Compressor (with munging enabled).
52 53 54 |
# File 'lib/jammit/compressor.rb', line 52 def compress_js(paths) @js_compressor.compress(concatenate(paths)) end |
- (Object) concatenate(paths) (private)
Concatenate together a list of asset files.
148 149 150 |
# File 'lib/jammit/compressor.rb', line 148 def concatenate(paths) [paths].flatten.map {|p| File.read(p) }.join("\n") end |
- (Object) concatenate_and_tag_images(paths) (private)
In order to support embedded images from relative paths, we need to expand the paths before contatenating the CSS together and losing the location of the original stylesheet path. Validate the images while we’re at it.
89 90 91 92 93 94 95 96 97 |
# File 'lib/jammit/compressor.rb', line 89 def concatenate_and_tag_images(paths) stylesheets = [paths].flatten.map do |css_path| File.read(css_path).gsub(IMAGE_DETECTOR) do |url| image_path = public_path($1, css_path) valid_image(image_path) ? "url(__EMBED__#{image_path})" : url end end stylesheets.join("\n") end |
- (Object) encoded_contents(image_path) (private)
Return the Base64-encoded contents of an image on a single line.
138 139 140 |
# File 'lib/jammit/compressor.rb', line 138 def encoded_contents(image_path) Base64.encode64(File.read(image_path)).gsub(/\n/, '') end |
- (Object) mime_type(image_path) (private)
Grab the mime-type of an image, by filename.
143 144 145 |
# File 'lib/jammit/compressor.rb', line 143 def mime_type(image_path) IMAGE_MIME_TYPES[File.extname(image_path)] end |
- (Object) public_path(image_path, css_path) (private)
Get the site-absolute public path for an image file path that may or may not be relative, given the path of the stylesheet that contains it.
125 126 127 128 |
# File 'lib/jammit/compressor.rb', line 125 def public_path(image_path, css_path) image_path, css_path = Pathname.new(image_path), Pathname.new(css_path) (image_path.absolute? ? Pathname.new("#{ASSET_ROOT}/public#{image_path}") : css_path.dirname + image_path).cleanpath end |
- (Object) valid_image(image_path) (private)
An image is valid if it exists, and is less than 32K. IE does not support Data-URIs larger than 32K, and you probably shouldn’t be embedding images that large in any case.
133 134 135 |
# File 'lib/jammit/compressor.rb', line 133 def valid_image(image_path) image_path.exist? && image_path.size < 32.kilobytes end |
- (Object) with_data_uris(css) (private)
Re-write all enabled image URLs in a stylesheet with their corresponding Data-URI Base-64 encoded image contents.
101 102 103 104 105 |
# File 'lib/jammit/compressor.rb', line 101 def with_data_uris(css) css.gsub(IMAGE_REPLACER) do |url| "url(\"data:#{mime_type($1)};base64,#{encoded_contents($1)}\")" end end |
- (Object) with_mhtml(css, asset_url) (private)
Re-write all enabled image URLs in a stylesheet with the MHTML equivalent. The newlines (“\r\n”) in the following method are critical. Without them your MHTML will look identical, but won’t work.
110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/jammit/compressor.rb', line 110 def with_mhtml(css, asset_url) paths, index = {}, 0 css = css.gsub(IMAGE_REPLACER) do |url| i = paths[$1] ||= "#{index += 1}-#{File.basename($1)}" "url(mhtml:#{asset_url}!#{i})" end mhtml = paths.map do |path, identifier| mime, contents = mime_type(path), encoded_contents(path) [MHTML_SEPARATOR, "Content-Location: #{identifier}\r\n", "Content-Type: #{mime}\r\n", "Content-Transfer-Encoding: base64\r\n\r\n", contents, "\r\n"] end [MHTML_START, mhtml, MHTML_END, css].flatten.join('') end |