debian-mirror-gitlab/lib/gitlab/diff/parallel_diff.rb

62 lines
1.6 KiB
Ruby
Raw Normal View History

2016-01-29 22:53:50 +05:30
module Gitlab
module Diff
class ParallelDiff
attr_accessor :diff_file
def initialize(diff_file)
@diff_file = diff_file
end
def parallelize
2016-08-24 12:49:21 +05:30
i = 0
free_right_index = nil
lines = []
2016-01-29 22:53:50 +05:30
highlighted_diff_lines = diff_file.highlighted_diff_lines
highlighted_diff_lines.each do |line|
2016-09-13 17:45:13 +05:30
if line.meta? || line.unchanged?
2016-01-29 22:53:50 +05:30
# line in the right panel is the same as in the left one
lines << {
2016-09-13 17:45:13 +05:30
left: line,
right: line
2016-01-29 22:53:50 +05:30
}
2016-08-24 12:49:21 +05:30
free_right_index = nil
i += 1
2016-09-13 17:45:13 +05:30
elsif line.removed?
2016-08-24 12:49:21 +05:30
lines << {
2016-09-13 17:45:13 +05:30
left: line,
right: nil
2016-08-24 12:49:21 +05:30
}
# Once we come upon a new line it can be put on the right of this old line
free_right_index ||= i
i += 1
2016-09-13 17:45:13 +05:30
elsif line.added?
2016-08-24 12:49:21 +05:30
if free_right_index
# If an old line came before this without a line on the right, this
# line can be put to the right of it.
2016-09-13 17:45:13 +05:30
lines[free_right_index][:right] = line
2016-08-24 12:49:21 +05:30
# If there are any other old lines on the left that don't yet have
# a new counterpart on the right, update the free_right_index
next_free_right_index = free_right_index + 1
free_right_index = next_free_right_index < i ? next_free_right_index : nil
2016-01-29 22:53:50 +05:30
else
lines << {
2016-09-13 17:45:13 +05:30
left: nil,
right: line
2016-01-29 22:53:50 +05:30
}
2016-08-24 12:49:21 +05:30
free_right_index = nil
i += 1
2016-01-29 22:53:50 +05:30
end
end
end
2016-08-24 12:49:21 +05:30
lines
2016-01-29 22:53:50 +05:30
end
end
end
end