Exception: ActionView::TemplateError

Inherits:
ActionViewError show all
Defined in:
lib/action_view/template_error.rb

Overview

The TemplateError exception is raised when the compilation of the template fails. This exception then gathers a bunch of intimate details and uses it to report a very precise exception message.

Constant Summary collapse

SOURCE_CODE_RADIUS =

:nodoc:

3

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(template, assigns, original_exception) ⇒ TemplateError

Returns a new instance of TemplateError.



9
10
11
12
13
14
# File 'lib/action_view/template_error.rb', line 9

def initialize(template, assigns, original_exception)
  @base_path = template.base_path_for_exception
  @assigns, @source, @original_exception = assigns.dup, template.source, original_exception
  @file_path = template.filename
  @backtrace = compute_backtrace
end

Instance Attribute Details

#original_exceptionObject (readonly)

Returns the value of attribute original_exception.



7
8
9
# File 'lib/action_view/template_error.rb', line 7

def original_exception
  @original_exception
end

Instance Method Details

#backtraceObject

don’t do anything nontrivial here. Any raised exception from here becomes fatal (and can’t be rescued).



79
80
81
# File 'lib/action_view/template_error.rb', line 79

def backtrace
  @backtrace
end

#clean_backtraceObject



20
21
22
# File 'lib/action_view/template_error.rb', line 20

def clean_backtrace
  original_exception.clean_backtrace
end

#file_nameObject



66
67
68
69
70
# File 'lib/action_view/template_error.rb', line 66

def file_name
  stripped = strip_base_path(@file_path)
  stripped.slice!(0,1) if stripped[0] == ?/
  stripped
end

#line_numberObject



57
58
59
60
61
62
63
64
# File 'lib/action_view/template_error.rb', line 57

def line_number
  @line_number ||=
    if file_name
      regexp = /#{Regexp.escape File.basename(file_name)}:(\d+)/

      $1 if message =~ regexp or clean_backtrace.find { |line| line =~ regexp }
    end
end

#messageObject



16
17
18
# File 'lib/action_view/template_error.rb', line 16

def message
  ActiveSupport::Deprecation.silence { original_exception.message }
end

#source_extract(indentation = 0) ⇒ Object



33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/action_view/template_error.rb', line 33

def source_extract(indentation = 0)
  return unless num = line_number
  num = num.to_i

  source_code = IO.readlines(@file_path)

  start_on_line = [ num - SOURCE_CODE_RADIUS - 1, 0 ].max
  end_on_line   = [ num + SOURCE_CODE_RADIUS - 1, source_code.length].min

  indent = ' ' * indentation
  line_counter = start_on_line
  return unless source_code = source_code[start_on_line..end_on_line] 
  
  source_code.sum do |line|
    line_counter += 1
    "#{indent}#{line_counter}: #{line}"
  end
end

#sub_template_messageObject



24
25
26
27
28
29
30
31
# File 'lib/action_view/template_error.rb', line 24

def sub_template_message
  if @sub_templates
    "Trace of template inclusion: " +
    @sub_templates.collect { |template| strip_base_path(template) }.join(", ")
  else
    ""
  end
end

#sub_template_of(template_path) ⇒ Object



52
53
54
55
# File 'lib/action_view/template_error.rb', line 52

def sub_template_of(template_path)
  @sub_templates ||= []
  @sub_templates << template_path
end

#to_sObject



72
73
74
75
# File 'lib/action_view/template_error.rb', line 72

def to_s
  "\n\n#{self.class} (#{message}) #{source_location}:\n" +
    "#{source_extract}\n    #{clean_backtrace.join("\n    ")}\n\n"
end