Class: RuboCop::Formatter::FormatterSet

Inherits:
Array
  • Object
show all
Defined in:
lib/rubocop/formatter/formatter_set.rb

Overview

This is a collection of formatters. A FormatterSet can hold multiple formatter instances and provides transparent formatter API methods which invoke same method of each formatters.

Constant Summary collapse

BUILTIN_FORMATTERS_FOR_KEYS =
{
  '[a]utogenconf' => AutoGenConfigFormatter,
  '[c]lang'       => ClangStyleFormatter,
  '[e]macs'       => EmacsStyleFormatter,
  '[fi]les'       => FileListFormatter,
  '[fu]ubar'      => FuubarStyleFormatter,
  '[h]tml'        => HTMLFormatter,
  '[j]son'        => JSONFormatter,
  '[ju]nit'       => JUnitFormatter,
  '[o]ffenses'    => OffenseCountFormatter,
  '[pa]cman'      => PacmanFormatter,
  '[p]rogress'    => ProgressFormatter,
  '[q]uiet'       => QuietFormatter,
  '[s]imple'      => SimpleTextFormatter,
  '[t]ap'         => TapFormatter,
  '[w]orst'       => WorstOffendersFormatter
}.freeze
FORMATTER_APIS =
%i[started finished].freeze

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ FormatterSet

Returns a new instance of FormatterSet.



37
38
39
# File 'lib/rubocop/formatter/formatter_set.rb', line 37

def initialize(options = {})
  @options = options # CLI options
end

Instance Method Details

#add_formatter(formatter_type, output_path = nil) ⇒ Object



52
53
54
55
56
57
58
59
60
61
62
# File 'lib/rubocop/formatter/formatter_set.rb', line 52

def add_formatter(formatter_type, output_path = nil)
  if output_path
    dir_path = File.dirname(output_path)
    FileUtils.mkdir_p(dir_path) unless File.exist?(dir_path)
    output = File.open(output_path, 'w')
  else
    output = $stdout
  end

  self << formatter_class(formatter_type).new(output, @options)
end

#close_output_filesObject



64
65
66
67
68
# File 'lib/rubocop/formatter/formatter_set.rb', line 64

def close_output_files
  each do |formatter|
    formatter.output.close if formatter.output.is_a?(File)
  end
end

#file_finished(file, offenses) ⇒ Object



47
48
49
50
# File 'lib/rubocop/formatter/formatter_set.rb', line 47

def file_finished(file, offenses)
  each { |f| f.file_finished(file, offenses) }
  offenses
end

#file_started(file, options) ⇒ Object



41
42
43
44
45
# File 'lib/rubocop/formatter/formatter_set.rb', line 41

def file_started(file, options)
  @options = options[:cli_options]
  @config_store = options[:config_store]
  each { |f| f.file_started(file, options) }
end