shard-ameba/src/ameba/formatter/explain_formatter.cr

101 lines
2.6 KiB
Crystal

require "./util"
module Ameba::Formatter
# A formatter that shows the detailed explanation of the issue at
# a specific location.
class ExplainFormatter
include Util
getter output : IO::FileDescriptor | IO::Memory
getter location : Crystal::Location
# Creates a new instance of `ExplainFormatter`.
#
# Accepts *output* which indicates the io where the explanation will be written to.
# Second argument is *location* which indicates the location to explain.
#
# ```
# ExplainFormatter.new output, {
# file: path,
# line: line_number,
# column: column_number,
# }
# ```
def initialize(@output, location)
@location = Crystal::Location.new(
location[:file],
location[:line],
location[:column]
)
end
# Reports the explanations at the *@location*.
def finished(sources)
source = sources.find(&.path.==(@location.filename))
return unless source
issue = source.issues.find(&.location.==(@location))
return unless issue
explain(source, issue)
end
private def explain(source, issue)
return unless location = issue.location
output << '\n'
output_title "Issue info"
output_paragraph [
issue.message.colorize(:red),
location.to_s.colorize(:cyan),
]
if affected_code = affected_code(issue, context_lines: 3)
output_title "Affected code"
output_paragraph affected_code
end
rule = issue.rule
output_title "Rule info"
output_paragraph "%s of a %s severity" % {
rule.name.colorize(:magenta),
rule.severity.to_s.colorize(rule.severity.color),
}
if rule_description = colorize_code_fences(rule.description)
output_paragraph rule_description
end
rule_doc = colorize_code_fences(rule.class.parsed_doc)
return unless rule_doc
output_title "Detailed description"
output_paragraph rule_doc
end
private def colorize_code_fences(string)
return unless string
string
.gsub(/```(.+?)```/m, &.colorize(:dark_gray))
.gsub(/`(?!`)(.+?)`/, &.colorize(:dark_gray))
end
private def output_title(title)
output << "### ".colorize(:yellow)
output << title.upcase.colorize(:yellow)
output << "\n\n"
end
private def output_paragraph(paragraph : String)
output_paragraph(paragraph.lines)
end
private def output_paragraph(paragraph : Array)
paragraph.each do |line|
output << " " << line << '\n'
end
output << '\n'
end
end
end