Class: UglyFace::Formatter::ReportStep::SnippetExtractor

Inherits:
Object
  • Object
show all
Defined in:
lib/ugly_face/formatter/report.rb

Constant Summary collapse

@@converter =
Syntax::Convertors::HTML.for_syntax "ruby"

Instance Method Summary collapse

Instance Method Details

#file_name_and_line(error_line) ⇒ Object



243
244
245
246
247
# File 'lib/ugly_face/formatter/report.rb', line 243

def file_name_and_line(error_line)
  if error_line =~ /(.*):(\d+)/
    [$1, $2.to_i]
  end
end

#lines_around(file, line) ⇒ Object



265
266
267
268
269
270
271
272
273
274
275
276
# File 'lib/ugly_face/formatter/report.rb', line 265

def lines_around(file, line)
  if File.file?(file)
    # lines = File.open(file).read.split("\n")
    lines = File.readlines(file)
    min = [0, line-3].max
    max = [line+1, lines.length-1].min
    # lines[min..max].join("\n")
    lines[min..max].join
  else
    "# Couldn't get snippet for #{file}"
  end
end

#post_process(highlighted, offending_line) ⇒ Object



278
279
280
281
282
283
284
285
286
# File 'lib/ugly_face/formatter/report.rb', line 278

def post_process(highlighted, offending_line)
  new_lines = []
  highlighted.split("\n").each_with_index do |line, i|
    new_line = "<span class=\"linenum\">#{offending_line+i-2}</span>#{line}"
    new_line = "<span class=\"offending\">#{new_line}</span>" if i == 2
    new_lines << new_line
  end
  new_lines.join("\n")
end

#snippet(error) ⇒ Object



249
250
251
252
253
254
# File 'lib/ugly_face/formatter/report.rb', line 249

def snippet(error)
  raw_code, line, file = snippet_for(error[0])
  highlighted = @@converter.convert(raw_code, false)

  "<pre class=\"ruby\"><strong>#{file + "\n"}</strong><code>#{post_process(highlighted, line)}</code></pre>"
end

#snippet_for(error_line) ⇒ Object



256
257
258
259
260
261
262
263
# File 'lib/ugly_face/formatter/report.rb', line 256

def snippet_for(error_line)
  file, line = file_name_and_line(error_line)
  if file
    [lines_around(file, line), line, file]
  else
    ["# Couldn't get snippet for #{error_line}", 1, 'File Unknown']
  end
end