Class: Sprockets::Bundle

Inherits:
Object
  • Object
show all
Defined in:
lib/sprockets/bundle.rb

Overview

Internal: Bundle processor takes a single file asset and prepends all the ‘:required` URIs to the contents.

Uses pipeline metadata:

:required - Ordered Set of asset URIs to prepend
:stubbed  - Set of asset URIs to subtract from the required set.

Also see DirectiveProcessor.

Class Method Summary collapse

Class Method Details

.call(input) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/sprockets/bundle.rb', line 17

def self.call(input)
  env  = input[:environment]
  type = input[:content_type]
  input[:links] ||= Set.new
  dependencies = Set.new(input[:metadata][:dependencies])

  processed_uri, deps = env.resolve(input[:filename], accept: type, pipeline: :self)
  dependencies.merge(deps)

  # DirectiveProcessor (and any other transformers called here with pipeline=self)
  primary_asset = env.load(processed_uri)
  to_load = primary_asset..delete(:to_load) || Set.new
  to_link = primary_asset..delete(:to_link) || Set.new

  to_load.each do |uri|
    loaded_asset = env.load(uri)
    dependencies.merge(loaded_asset.[:dependencies])
    if to_link.include?(uri)
       = primary_asset.
      input[:links]            << loaded_asset.uri
      [:links] << loaded_asset.uri
    end
  end

  find_required = proc { |uri| env.load(uri).[:required] }
  required = Utils.dfs(processed_uri, &find_required)
  stubbed  = Utils.dfs(env.load(processed_uri).[:stubbed], &find_required)
  required.subtract(stubbed)
  dedup(required)
  assets = required.map { |uri| env.load(uri) }

  (required + stubbed).each do |uri|
    dependencies.merge(env.load(uri).[:dependencies])
  end

  reducers = Hash[env.match_mime_type_keys(env.config[:bundle_reducers], type).flat_map(&:to_a)]
  process_bundle_reducers(input, assets, reducers).merge(dependencies: dependencies, included: assets.map(&:uri))
end

.dedup(required) ⇒ Object

Internal: Removes uri from required if it’s already included as an alias.

required - Set of required uris

Returns deduped set of uris



61
62
63
64
65
66
67
68
69
70
# File 'lib/sprockets/bundle.rb', line 61

def self.dedup(required)
  dupes = required.reduce([]) do |r, uri|
    path, params = URIUtils.parse_asset_uri(uri)
    if (params.delete(:index_alias))
      r << URIUtils.build_asset_uri(path, params)
    end
    r
  end
  required.subtract(dupes)
end

.process_bundle_reducers(input, assets, reducers) ⇒ Object

Internal: Run bundle reducers on set of Assets producing a reduced metadata Hash.

filename - String bundle filename assets - Array of Assets reducers - Array of [initial, reducer_proc] pairs

Returns reduced asset metadata Hash.



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
# File 'lib/sprockets/bundle.rb', line 80

def self.process_bundle_reducers(input, assets, reducers)
  initial = {}
  reducers.each do |k, (v, _)|
    if v.respond_to?(:call)
      initial[k] = v.call(input)
    elsif !v.nil?
      initial[k] = v
    end
  end

  assets.reduce(initial) do |h, asset|
    reducers.each do |k, (_, block)|
      value = k == :data ? asset.source : asset.[k]
      if h.key?(k)
        if !value.nil?
          h[k] = block.call(h[k], value)
        end
      else
        h[k] = value
      end
    end
    h
  end
end