# frozen_string_literal: true # Represent a BugInstance. class BugInstance RANK_ERROR_THRESHOLD = 4 attr_reader :absolute_path, :relative_path attr_accessor :source_dirs, :bug_instance def initialize(prefix, source_dirs, bug_instance) @source_dirs = source_dirs @bug_instance = bug_instance source_path = get_source_path(bug_instance) @absolute_path = get_absolute_path(source_path) prefix += (prefix.end_with?(file_separator) ? '' : file_separator) @relative_path = get_relative_path(prefix, @absolute_path) end def rank @rank ||= bug_instance.attribute('rank').value.to_i end def type @type ||= rank > RANK_ERROR_THRESHOLD ? :warn : :fail end def line @line ||= get_value_safely(bug_instance.xpath('SourceLine').attribute('start'), 0).to_i end def description @description ||= bug_instance.xpath('LongMessage').text end private def get_source_path(bug_instance) get_value_safely(bug_instance.xpath('SourceLine').attribute('sourcepath'), '').to_s end def get_absolute_path(source_path) @source_dirs.map do |source_dir| return source_dir if source_dir.end_with?(source_path) end end def get_relative_path(prefix, absolute_path) if absolute_path.start_with?(prefix) absolute_path[prefix.length, absolute_path.length - prefix.length] else absolute_path end end def file_separator File::ALT_SEPARATOR || File::SEPARATOR end def get_value_safely(array, default_value) array.compact.empty? ? default_value : array.compact.first.value end end