aboutsummaryrefslogblamecommitdiffstats
path: root/actionpack/lib/action_view/renderer/abstract_renderer.rb
blob: d389105a7af9ec68de12741f89ea7a318839f4af (plain) (tree)
1
2
3
4
5
6
7
8

                                 
                                                                                 
                                                                             
 
                                              
                                      
                              





                               



                                                                  
 
                                       




                                                        
 



                                                                




                                                                                             
     
   
module ActionView
  class AbstractRenderer #:nodoc:
    delegate :find_template, :template_exists?, :with_fallbacks, :update_details,
      :with_layout_format, :formats, :freeze_formats, :to => :@lookup_context

    def initialize(lookup_context, controller)
      @lookup_context = lookup_context
      @controller = controller
    end

    def render
      raise NotImplementedError
    end

    # Checks if the given path contains a format and if so, change
    # the lookup context to take this new format into account.
    def wrap_formats(value)
      return yield unless value.is_a?(String)

      if value.sub!(formats_regexp, "")
        update_details(:formats => [$1.to_sym]){ yield }
      else
        yield
      end
    end

    def formats_regexp
      @@formats_regexp ||= /\.(#{Mime::SET.symbols.join('|')})$/
    end

    protected

    def instrument(name, options={})
      ActiveSupport::Notifications.instrument("render_#{name}.action_view", options){ yield }
    end
  end
end