class Pronto::Golang

Constants

CONFIG_FILE
GOLANG_FILE_EXTENSIONS

Public Instance Methods

available_tools() click to toggle source
# File lib/pronto/golang.rb, line 85
def available_tools
  if @tools == nil
    config = dotconfig

    @tools = GolangTools.constants.sort.map do |constant|
      next if constant.to_s == 'Base'

      tool_class = Object.const_get("Pronto::GolangTools::#{constant}")

      tool = tool_class.new(config.fetch('tools').fetch(tool_class.base_command))

      if tool.available?
        tool
      else
        nil
      end
    end.compact
  end

  return @tools
end
dotconfig() click to toggle source
# File lib/pronto/golang.rb, line 107
def dotconfig
  file = find_file_upwards(CONFIG_FILE, Dir.pwd, use_home: true)

  base = {
    'tools' => {}
  }

  if file
    return base.merge(YAML.load_file(file))
  end

  return base
end
go_file?(path) click to toggle source
# File lib/pronto/golang.rb, line 121
def go_file?(path)
  GOLANG_FILE_EXTENSIONS.include?(File.extname(path))
end
inspect(patch) click to toggle source
# File lib/pronto/golang.rb, line 31
def inspect(patch)
  escaped_path = Shellwords.escape(patch.new_file_full_path.to_s)

  messages = []

  available_tools.each do |tool|
    # Skip the patch if the filepath is blacklisted in the 'blacklisted_files' config
    # Note: this defaults to '.*' and therefore matches everything by default
    if tool.blacklisted_files_regexp.match?(escaped_path)
      next
    end

    Open3.popen3("#{tool.command(escaped_path)}") do |stdin, stdout, stderr, wait_thr|
      [stdout, stderr].each do |result_text|
        while output_line = result_text.gets
          next if output_line.strip == 'exit status 1'

          messages << process_line(patch, tool, output_line)
        end
      end

      while output_line = stderr.gets
        process_line(patch, tool, output_line)
      end
    end
  end

  return messages
end
process_line(patch, tool, output_line) click to toggle source
# File lib/pronto/golang.rb, line 61
def process_line(patch, tool, output_line)
  return nil if output_line =~ /^#/

  begin
    file_path, line_number, level, message = tool.parse_line(output_line)

    patch.added_lines.each do |line|
      if line_number.to_s == line.new_lineno.to_s &&
         patch.new_file_full_path.to_s == File.expand_path(file_path)

        prefix_message = "#{tool.base_command}: #{message}"

        return Message.new(
          file_path, line, level, prefix_message, line.commit_sha, self.class
        )
      end
    end
  rescue ::Pronto::GolangSupport::UnprocessableLine
    # Do nothing if the line is not processable
  end

  return nil
end
run() click to toggle source
# File lib/pronto/golang.rb, line 17
def run
  return [] unless @patches

  @patches
    .select { |patch| valid_patch?(patch) }
    .map { |patch| inspect(patch) }
    .flatten
    .compact
end
valid_patch?(patch) click to toggle source
# File lib/pronto/golang.rb, line 27
def valid_patch?(patch)
  patch.additions > 0 && go_file?(patch.new_file_full_path)
end