Class: ActionView::Digestor

Inherits:
Object show all
Defined in:
actionview/lib/action_view/digestor.rb

Direct Known Subclasses

PartialDigestor

Constant Summary collapse

@@cache =
ThreadSafe::Cache.new
@@digest_monitor =
Monitor.new

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options) ⇒ Digestor

Returns a new instance of Digestor.



56
57
58
59
# File 'actionview/lib/action_view/digestor.rb', line 56

def initialize(options)
  @name, @finder = options.values_at(:name, :finder)
  @options = options.except(:name, :finder)
end

Instance Attribute Details

#finderObject (readonly)

Returns the value of attribute finder



54
55
56
# File 'actionview/lib/action_view/digestor.rb', line 54

def finder
  @finder
end

#nameObject (readonly)

Returns the value of attribute name



54
55
56
# File 'actionview/lib/action_view/digestor.rb', line 54

def name
  @name
end

#optionsObject (readonly)

Returns the value of attribute options



54
55
56
# File 'actionview/lib/action_view/digestor.rb', line 54

def options
  @options
end

Class Method Details

.digest(options) ⇒ Object

Supported options:

  • name - Template name

  • finder - An instance of ActionView::LookupContext

  • dependencies - An array of dependent views

  • partial - Specifies whether the template is a partial



18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'actionview/lib/action_view/digestor.rb', line 18

def digest(options)
  options.assert_valid_keys(:name, :finder, :dependencies, :partial)

  cache_key = ([ options[:name], options[:finder].details_key.hash ].compact + Array.wrap(options[:dependencies])).join('.')

  # this is a correctly done double-checked locking idiom
  # (ThreadSafe::Cache's lookups have volatile semantics)
  @@cache[cache_key] || @@digest_monitor.synchronize do
    @@cache.fetch(cache_key) do # re-check under lock
      compute_and_store_digest(cache_key, options)
    end
  end
end

Instance Method Details

#dependenciesObject



70
71
72
73
74
# File 'actionview/lib/action_view/digestor.rb', line 70

def dependencies
  DependencyTracker.find_dependencies(name, template)
rescue ActionView::MissingTemplate
  [] # File doesn't exist, so no dependencies
end

#digestObject



61
62
63
64
65
66
67
68
# File 'actionview/lib/action_view/digestor.rb', line 61

def digest
  Digest::MD5.hexdigest("#{source}-#{dependency_digest}").tap do |digest|
    logger.try :info, "  Cache digest for #{template.inspect}: #{digest}"
  end
rescue ActionView::MissingTemplate
  logger.try :error, "  Couldn't find template for digesting: #{name}"
  ''
end

#nested_dependenciesObject



76
77
78
79
80
81
# File 'actionview/lib/action_view/digestor.rb', line 76

def nested_dependencies
  dependencies.collect do |dependency|
    dependencies = PartialDigestor.new(name: dependency, finder: finder).nested_dependencies
    dependencies.any? ? { dependency => dependencies } : dependency
  end
end