1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/actionpack/lib/action_view/template/resolver.rb

214 lines
6.2 KiB
Ruby
Raw Normal View History

require "pathname"
2009-09-02 18:00:22 -04:00
require "active_support/core_ext/class"
require "action_view/template"
2009-04-14 20:22:51 -04:00
module ActionView
2010-06-20 16:26:31 -04:00
# = Action View Resolver
class Resolver
class Path < String
attr_reader :name, :prefix, :partial, :virtual
alias_method :partial?, :partial
def initialize(name, prefix, partial)
@name, @prefix, @partial = name, prefix, partial
rebuild(@name, @prefix, @partial)
end
def rebuild(name, prefix, partial)
@virtual = ""
@virtual << "#{prefix}/" unless prefix.empty?
@virtual << (partial ? "_#{name}" : name)
self.replace(@virtual)
end
end
cattr_accessor :caching
self.caching = true
class << self
alias :caching? :caching
end
2010-03-07 06:49:27 -05:00
def initialize
@cached = Hash.new { |h1,k1| h1[k1] = Hash.new { |h2,k2|
h2[k2] = Hash.new { |h3,k3| h3[k3] = Hash.new { |h4,k4| h4[k4] = {} } } } }
end
2010-03-08 17:13:24 -05:00
def clear_cache
@cached.clear
end
# Normalizes the arguments and passes it on to find_template.
def find_all(name, prefix=nil, partial=false, details={}, key=nil, locals=[])
cached(key, [name, prefix, partial], details, locals) do
2010-03-08 17:13:24 -05:00
find_templates(name, prefix, partial, details)
2009-09-02 18:00:22 -04:00
end
end
2009-09-02 18:00:22 -04:00
private
delegate :caching?, :to => "self.class"
2010-03-07 06:49:27 -05:00
# This is what child classes implement. No defaults are needed
# because Resolver guarantees that the arguments are present and
# normalized.
2010-03-08 17:13:24 -05:00
def find_templates(name, prefix, partial, details)
raise NotImplementedError, "Subclasses must implement a find_templates(name, prefix, partial, details) method"
end
# Helpers that builds a path. Useful for building virtual paths.
def build_path(name, prefix, partial)
Path.new(name, prefix, partial)
end
# Handles templates caching. If a key is given and caching is on
# always check the cache before hitting the resolver. Otherwise,
# it always hits the resolver but check if the resolver is fresher
# before returning it.
def cached(key, path_info, details, locals) #:nodoc:
name, prefix, partial = path_info
locals = sort_locals(locals)
if key && caching?
@cached[key][name][prefix][partial][locals] ||= decorate(yield, path_info, details, locals)
else
fresh = decorate(yield, path_info, details, locals)
return fresh unless key
scope = @cached[key][name][prefix][partial]
cache = scope[locals]
mtime = cache && cache.map(&:updated_at).max
if !mtime || fresh.empty? || fresh.any? { |t| t.updated_at > mtime }
scope[locals] = fresh
else
cache
end
end
end
# Ensures all the resolver information is set in the template.
def decorate(templates, path_info, details, locals) #:nodoc:
cached = nil
templates.each do |t|
t.locals = locals
t.formats = details[:formats] || [:html] if t.formats.empty?
t.virtual_path ||= (cached ||= build_path(*path_info))
end
end
if :symbol.respond_to?("<=>")
def sort_locals(locals) #:nodoc:
locals.sort.freeze
end
else
def sort_locals(locals) #:nodoc:
locals = locals.map{ |l| l.to_s }
locals.sort!
locals.freeze
end
end
end
2009-04-14 20:22:51 -04:00
2009-09-02 18:00:22 -04:00
class PathResolver < Resolver
EXTENSIONS = [:locale, :formats, :handlers]
DEFAULT_PATTERN = ":prefix/:action{.:locale,}{.:formats,}{.:handlers,}"
def initialize(pattern=nil)
@pattern = pattern || DEFAULT_PATTERN
super()
end
private
2010-03-08 17:13:24 -05:00
def find_templates(name, prefix, partial, details)
path = build_path(name, prefix, partial)
extensions = Hash[EXTENSIONS.map { |ext| [ext, details[ext]] }.flatten(0)]
query(path, extensions, details[:formats])
end
2009-09-02 18:00:22 -04:00
def query(path, exts, formats)
query = build_query(path, exts)
templates = []
sanitizer = Hash.new { |h,k| h[k] = Dir["#{File.dirname(k)}/*"] }
Dir[query].each do |p|
next if File.directory?(p) || !sanitizer[p].include?(p)
handler, format = extract_handler_and_format(p, formats)
contents = File.open(p, "rb") {|io| io.read }
templates << Template.new(contents, File.expand_path(p), handler,
:virtual_path => path.virtual, :format => format, :updated_at => mtime(p))
end
templates
2009-04-14 20:22:51 -04:00
end
# Helper for building query glob string based on resolver's pattern.
def build_query(path, exts)
query = @pattern.dup
query.gsub!(/\:prefix(\/)?/, path.prefix.empty? ? "" : "#{path.prefix}\\1") # prefix can be empty...
query.gsub!(/\:action/, path.partial? ? "_#{path.name}" : path.name)
exts.each { |ext, variants|
query.gsub!(/\:#{ext}/, "{#{variants.compact.uniq.join(',')}}")
}
query.gsub!(/\.{html,/, ".{html,text.html,")
query.gsub!(/\.{text,/, ".{text,text.plain,")
File.expand_path(query, @path)
end
# Returns the file mtime from the filesystem.
def mtime(p)
File.stat(p).mtime
end
# Extract handler and formats from path. If a format cannot be a found neither
# from the path, or the handler, we should return the array of formats given
# to the resolver.
def extract_handler_and_format(path, default_formats)
pieces = File.basename(path).split(".")
pieces.shift
handler = Template.handler_for_extension(pieces.pop)
format = pieces.last && Mime[pieces.last]
[handler, format]
end
2009-04-14 20:22:51 -04:00
end
# A resolver that loads files from the filesystem.
2009-09-02 18:00:22 -04:00
class FileSystemResolver < PathResolver
def initialize(path, pattern=nil)
2009-09-02 18:00:22 -04:00
raise ArgumentError, "path already is a Resolver class" if path.is_a?(Resolver)
super(pattern)
@path = File.expand_path(path)
2009-09-02 18:00:22 -04:00
end
def to_s
@path.to_s
end
alias :to_path :to_s
def eql?(resolver)
self.class.equal?(resolver.class) && to_path == resolver.to_path
2009-09-02 18:00:22 -04:00
end
alias :== :eql?
end
# The same as FileSystemResolver but does not allow templates to store
# a virtual path since it is invalid for such resolvers.
class FallbackFileSystemResolver < FileSystemResolver
def self.instances
[new(""), new("/")]
end
def decorate(*)
super.each { |t| t.virtual_path = nil }
end
end
end