Skip to content

Commit

Permalink
Revert r8669 for now, breaks Action Mailer. Reopens #10800.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@8676 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
  • Loading branch information
jeremy committed Jan 19, 2008
1 parent 16b129a commit 88bc014
Show file tree
Hide file tree
Showing 12 changed files with 167 additions and 240 deletions.
2 changes: 0 additions & 2 deletions actionpack/CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

* Performance: optimize route recognition. Large speedup for apps with many resource routes. #10835 [oleganza]

* Introduce TemplateFinder to handle view paths and lookups. #10800 [Pratik Naik]

* Make render :partial recognise form builders and use the _form partial. #10814 [djanowski]

* Allow users to declare other namespaces when using the atom feed helpers. #10304 [david.calavera]
Expand Down
16 changes: 6 additions & 10 deletions actionpack/lib/action_controller/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
require 'action_controller/resources'
require 'action_controller/url_rewriter'
require 'action_controller/status_codes'
require 'action_view/template_finder'
require 'drb'
require 'set'

Expand Down Expand Up @@ -429,7 +428,6 @@ def view_paths

def view_paths=(value)
@view_paths = value
ActionView::TemplateFinder.process_view_paths(value)
end

# Adds a view_path to the front of the view_paths array.
Expand All @@ -442,7 +440,6 @@ def view_paths=(value)
def prepend_view_path(path)
@view_paths = superclass.view_paths.dup if @view_paths.nil?
view_paths.unshift(*path)
ActionView::TemplateFinder.process_view_paths(path)
end

# Adds a view_path to the end of the view_paths array.
Expand All @@ -455,7 +452,6 @@ def prepend_view_path(path)
def append_view_path(path)
@view_paths = superclass.view_paths.dup if @view_paths.nil?
view_paths.push(*path)
ActionView::TemplateFinder.process_view_paths(path)
end

# Replace sensitive parameter data from the request log.
Expand Down Expand Up @@ -646,11 +642,11 @@ def session_enabled?

# View load paths for controller.
def view_paths
@template.finder.view_paths
@template.view_paths
end

def view_paths=(value)
@template.finder.view_paths = value # Mutex needed
@template.view_paths = value
end

# Adds a view_path to the front of the view_paths array.
Expand All @@ -660,7 +656,7 @@ def view_paths=(value)
# self.prepend_view_path(["views/default", "views/custom"])
#
def prepend_view_path(path)
@template.finder.prepend_view_path(path) # Mutex needed
@template.prepend_view_path(path)
end

# Adds a view_path to the end of the view_paths array.
Expand All @@ -670,7 +666,7 @@ def prepend_view_path(path)
# self.append_view_path(["views/default", "views/custom"])
#
def append_view_path(path)
@template.finder.append_view_path(path) # Mutex needed
@template.append_view_path(path)
end

protected
Expand Down Expand Up @@ -1253,15 +1249,15 @@ def close_session
end

def template_exists?(template_name = default_template_name)
@template.finder.file_exists?(template_name)
@template.file_exists?(template_name)
end

def template_public?(template_name = default_template_name)
@template.file_public?(template_name)
end

def template_exempt_from_layout?(template_name = default_template_name)
extension = @template && @template.finder.pick_template_extension(template_name)
extension = @template && @template.pick_template_extension(template_name)
name_with_extension = !template_name.include?('.') && extension ? "#{template_name}.#{extension}" : template_name
@@exempt_from_layout.any? { |ext| name_with_extension =~ ext }
end
Expand Down
1 change: 0 additions & 1 deletion actionpack/lib/action_controller/dispatcher.rb
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,6 @@ def prepare_application(force = false)

if unprepared || force
run_callbacks :prepare_dispatch
ActionView::TemplateFinder.reload! unless ActionView::Base.cache_template_loading
self.unprepared = false
end
end
Expand Down
13 changes: 12 additions & 1 deletion actionpack/lib/action_controller/layout.rb
Original file line number Diff line number Diff line change
Expand Up @@ -208,6 +208,12 @@ def normalize_conditions(conditions)
conditions.inject({}) {|hash, (key, value)| hash.merge(key => [value].flatten.map {|action| action.to_s})}
end

def layout_directory_exists_cache
@@layout_directory_exists_cache ||= Hash.new do |h, dirname|
h[dirname] = File.directory? dirname
end
end

def default_layout_with_format(format, layout)
list = layout_list
if list.grep(%r{layouts/#{layout}\.#{format}(\.[a-z][0-9a-z]*)+$}).empty?
Expand Down Expand Up @@ -307,8 +313,13 @@ def action_has_layout?
end
end

# Does a layout directory for this class exist?
# we cache this info in a class level hash
def layout_directory?(layout_name)
@template.finder.find_template_extension_from_handler(File.join('layouts', layout_name))
view_paths.find do |path|
next unless template_path = Dir[File.join(path, 'layouts', layout_name) + ".*"].first
self.class.send!(:layout_directory_exists_cache)[File.dirname(template_path)]
end
end
end
end
2 changes: 0 additions & 2 deletions actionpack/lib/action_view.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
require 'action_view/template_handlers/erb'
require 'action_view/template_handlers/rjs'

require 'action_view/template_finder'

require 'action_view/base'
require 'action_view/partials'
require 'action_view/template_error'
Expand Down
145 changes: 129 additions & 16 deletions actionpack/lib/action_view/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -150,9 +150,9 @@ class ActionViewError < StandardError #:nodoc:
class Base
include ERB::Util

attr_reader :first_render, :finder
attr_reader :first_render
attr_accessor :base_path, :assigns, :template_extension
attr_accessor :controller
attr_accessor :controller, :view_paths

attr_reader :logger, :response, :headers
attr_internal :cookies, :flash, :headers, :params, :request, :response, :session
Expand Down Expand Up @@ -204,6 +204,12 @@ module CompiledTemplates #:nodoc:
@@template_args = {}
# Count the number of inline templates
@@inline_template_count = 0
# Maps template paths without extension to their file extension returned by pick_template_extension.
# If for a given path, path.ext1 and path.ext2 exist on the file system, the order of extensions
# used by pick_template_extension determines whether ext1 or ext2 will be stored.
@@cached_template_extension = {}
# Maps template paths / extensions to
@@cached_base_paths = {}

# Cache public asset paths
cattr_reader :computed_public_paths
Expand Down Expand Up @@ -235,11 +241,10 @@ def self.load_helpers #:nodoc:
# return the rendered template as a string.
def self.register_template_handler(extension, klass)
@@template_handlers[extension.to_sym] = klass
TemplateFinder.update_extension_cache_for(extension.to_s)
end

def self.template_handler_extensions
@@template_handlers.keys.map(&:to_s).sort
@@template_handler_extensions ||= @@template_handlers.keys.map(&:to_s).sort
end

def self.register_default_template_handler(extension, klass)
Expand All @@ -260,11 +265,11 @@ def self.handler_class_for_extension(extension)
register_template_handler :rxml, TemplateHandlers::Builder

def initialize(view_paths = [], assigns_for_first_render = {}, controller = nil)#:nodoc:
@view_paths = view_paths.respond_to?(:find) ? view_paths.dup : [*view_paths].compact
@assigns = assigns_for_first_render
@assigns_added = nil
@controller = controller
@logger = controller && controller.logger
@finder = TemplateFinder.new(self, view_paths)
@logger = controller && controller.logger
end

# Renders the template present at <tt>template_path</tt>. If <tt>use_full_path</tt> is set to true,
Expand All @@ -285,16 +290,16 @@ def render_file(template_path, use_full_path = true, local_assigns = {}) #:nodoc
end

@first_render ||= template_path
template_path_without_extension, template_extension = @finder.path_and_extension(template_path)
template_path_without_extension, template_extension = path_and_extension(template_path)
if use_full_path
if template_extension
template_file_name = @finder.pick_template(template_path_without_extension, template_extension)
template_file_name = full_template_path(template_path_without_extension, template_extension)
else
template_extension = @finder.pick_template_extension(template_path).to_s
template_extension = pick_template_extension(template_path).to_s
unless template_extension
raise ActionViewError, "No template found for #{template_path} in #{@finder.view_paths.inspect}"
raise ActionViewError, "No template found for #{template_path} in #{view_paths.inspect}"
end
template_file_name = @finder.pick_template(template_path, template_extension)
template_file_name = full_template_path(template_path, template_extension)
template_extension = template_extension.gsub(/^.+\./, '') # strip off any formats
end
else
Expand All @@ -304,7 +309,7 @@ def render_file(template_path, use_full_path = true, local_assigns = {}) #:nodoc
template_source = nil # Don't read the source until we know that it is required

if template_file_name.blank?
raise ActionViewError, "Couldn't find template file for #{template_path} in #{@finder.view_paths.inspect}"
raise ActionViewError, "Couldn't find template file for #{template_path} in #{view_paths.inspect}"
end

begin
Expand All @@ -314,8 +319,7 @@ def render_file(template_path, use_full_path = true, local_assigns = {}) #:nodoc
e.sub_template_of(template_file_name)
raise e
else
raise TemplateError.new(@finder.find_base_path_for("#{template_path_without_extension}.#{template_extension}") ||
@finder.view_paths.first, template_file_name, @assigns, template_source, e)
raise TemplateError.new(find_base_path_for("#{template_path_without_extension}.#{template_extension}") || view_paths.first, template_file_name, @assigns, template_source, e)
end
end
end
Expand Down Expand Up @@ -367,6 +371,45 @@ def render_template(template_extension, template, file_path = nil, local_assigns
end
end

# Gets the full template path with base path for the given template_path and extension.
#
# full_template_path('users/show', 'html.erb')
# # => '~/rails/app/views/users/show.html.erb
#
def full_template_path(template_path, extension)
if @@cache_template_extensions
(@@cached_base_paths[template_path] ||= {})[extension.to_s] ||= find_full_template_path(template_path, extension)
else
find_full_template_path(template_path, extension)
end
end

# Gets the extension for an existing template with the given template_path.
# Returns the format with the extension if that template exists.
#
# pick_template_extension('users/show')
# # => 'html.erb'
#
# pick_template_extension('users/legacy')
# # => "rhtml"
#
def pick_template_extension(template_path)#:nodoc:
if @@cache_template_extensions
(@@cached_template_extension[template_path] ||= {})[template_format] ||= find_template_extension_for(template_path)
else
find_template_extension_for(template_path)
end
end

def file_exists?(template_path)#:nodoc:
template_file_name, template_file_extension = path_and_extension(template_path)
if template_file_extension
template_exists?(template_file_name, template_file_extension)
else
template_exists?(template_file_name, pick_template_extension(template_path))
end
end

# Returns true is the file may be rendered implicitly.
def file_public?(template_path)#:nodoc:
template_path.split('/').last[0,1] != '_'
Expand All @@ -379,12 +422,83 @@ def template_format
@template_format = format.blank? ? :html : format.to_sym
end

# Adds a view_path to the front of the view_paths array.
# This change affects the current request only.
#
# @template.prepend_view_path("views/default")
# @template.prepend_view_path(["views/default", "views/custom"])
#
def prepend_view_path(path)
@view_paths.unshift(*path)
end

# Adds a view_path to the end of the view_paths array.
# This change affects the current request only.
#
# @template.append_view_path("views/default")
# @template.append_view_path(["views/default", "views/custom"])
#
def append_view_path(path)
@view_paths.push(*path)
end

private
def wrap_content_for_layout(content)
original_content_for_layout = @content_for_layout
@content_for_layout = content
returning(yield) { @content_for_layout = original_content_for_layout }
end

def find_full_template_path(template_path, extension)
file_name = "#{template_path}.#{extension}"
base_path = find_base_path_for(file_name)
base_path.blank? ? "" : "#{base_path}/#{file_name}"
end

# Asserts the existence of a template.
def template_exists?(template_path, extension)
file_path = full_template_path(template_path, extension)
!file_path.blank? && @@method_names.has_key?(file_path) || File.exist?(file_path)
end

# Splits the path and extension from the given template_path and returns as an array.
def path_and_extension(template_path)
template_path_without_extension = template_path.sub(/\.(\w+)$/, '')
[ template_path_without_extension, $1 ]
end

# Returns the view path that contains the given relative template path.
def find_base_path_for(template_file_name)
view_paths.find { |p| File.file?(File.join(p, template_file_name)) }
end

# Returns the view path that the full path resides in.
def extract_base_path_from(full_path)
view_paths.find { |p| full_path[0..p.size - 1] == p }
end

# Determines the template's file extension, such as rhtml, rxml, or rjs.
def find_template_extension_for(template_path)
find_template_extension_from_handler(template_path, true) ||
find_template_extension_from_handler(template_path) ||
find_template_extension_from_first_render()
end

def find_template_extension_from_handler(template_path, formatted = nil)
checked_template_path = formatted ? "#{template_path}.#{template_format}" : template_path

self.class.template_handler_extensions.each do |extension|
if template_exists?(checked_template_path, extension)
return formatted ? "#{template_format}.#{extension}" : extension.to_s
end
end
nil
end

# Determine the template extension from the <tt>@first_render</tt> filename
def find_template_extension_from_first_render
File.basename(@first_render.to_s)[/^[^.]+\.(.+)$/, 1]
end

# This method reads a template file.
def read_template_file(template_path, extension)
Expand Down Expand Up @@ -489,8 +603,7 @@ def compile_template(handler, template, file_name, local_assigns)
logger.debug "Backtrace: #{e.backtrace.join("\n")}"
end

raise TemplateError.new(@finder.extract_base_path_from(file_name) ||
@finder.view_paths.first, file_name || template, @assigns, template, e)
raise TemplateError.new(extract_base_path_from(file_name) || view_paths.first, file_name || template, @assigns, template, e)
end

@@compile_time[render_symbol] = Time.now
Expand Down
2 changes: 1 addition & 1 deletion actionpack/lib/action_view/helpers/cache_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module CacheHelper
# <i>Topics listed alphabetically</i>
# <% end %>
def cache(name = {}, options = nil, &block)
template_extension = @finder.pick_template_extension(first_render)[/\.?(\w+)$/, 1].to_sym
template_extension = find_template_extension_for(first_render)[/\.?(\w+)$/, 1].to_sym
handler = Base.handler_class_for_extension(template_extension)
handler.new(@controller).cache_fragment(block, name, options)
end
Expand Down
Loading

0 comments on commit 88bc014

Please sign in to comment.