Sha256: 09ded8e8381c43491716b9b8212abf96adaba444f3ee8242137c79318b8392b0

Contents?: true

Size: 1.2 KB

Versions: 1

Compression:

Stored size: 1.2 KB

Contents

module Quality
  # Class processes output from a code quality command, tweaking it
  # for editor output and counting the number of violations found
  class CommandOutputProcessor
    attr_accessor :emacs_format
    attr_accessor :file
    attr_reader :found_output
    attr_reader :violations

    def initialize
      @emacs_format = false
      @found_output = false
      @violations = 0
    end

    def process!(&count_violations_on_line)
      process_file(file, &count_violations_on_line)
    end

    private

    def process_file(file, &count_violations_on_line)
      out = ''
      while (@current_line = file.gets)
        out <<
          process_line(&count_violations_on_line)
      end
      out
    end

    def process_line
      output =
        if emacs_format
          preprocess_line_for_emacs
        else
          @current_line
        end
      @found_output = true
      @violations += yield @current_line
      output
    end

    def preprocess_line_for_emacs
      if @current_line =~ /^ *(\S*.rb:[0-9]*) *(.*)/
        $1 + ': ' + $2 + "\n"
      elsif @current_line =~ /^ *(.*) +(\S*.rb:[0-9]*) *(.*)/
        $2 + ': ' + $1 + "\n"
      else
        @current_line
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
quality-1.3.0 lib/quality/command_output_processor.rb