2017-07-12 10:31:36 -04:00
|
|
|
# Gitaly note: JV: no RPC's here.
|
|
|
|
|
2017-01-04 13:43:06 -05:00
|
|
|
module Gitlab
|
|
|
|
module Git
|
|
|
|
class DiffCollection
|
|
|
|
include Enumerable
|
|
|
|
|
|
|
|
DEFAULT_LIMITS = { max_files: 100, max_lines: 5000 }.freeze
|
|
|
|
|
2017-07-13 18:22:09 -04:00
|
|
|
attr_reader :limits
|
|
|
|
|
|
|
|
delegate :max_files, :max_lines, :max_bytes, :safe_max_files, :safe_max_lines, :safe_max_bytes, to: :limits
|
|
|
|
|
|
|
|
def self.collection_limits(options = {})
|
|
|
|
limits = {}
|
|
|
|
limits[:max_files] = options.fetch(:max_files, DEFAULT_LIMITS[:max_files])
|
|
|
|
limits[:max_lines] = options.fetch(:max_lines, DEFAULT_LIMITS[:max_lines])
|
|
|
|
limits[:max_bytes] = limits[:max_files] * 5.kilobytes # Average 5 KB per file
|
|
|
|
limits[:safe_max_files] = [limits[:max_files], DEFAULT_LIMITS[:max_files]].min
|
|
|
|
limits[:safe_max_lines] = [limits[:max_lines], DEFAULT_LIMITS[:max_lines]].min
|
|
|
|
limits[:safe_max_bytes] = limits[:safe_max_files] * 5.kilobytes # Average 5 KB per file
|
|
|
|
|
|
|
|
OpenStruct.new(limits)
|
|
|
|
end
|
|
|
|
|
2017-01-04 13:43:06 -05:00
|
|
|
def initialize(iterator, options = {})
|
|
|
|
@iterator = iterator
|
2017-07-13 18:22:09 -04:00
|
|
|
@limits = self.class.collection_limits(options)
|
2017-05-31 15:41:25 -04:00
|
|
|
@enforce_limits = !!options.fetch(:limits, true)
|
2017-05-26 19:27:30 -04:00
|
|
|
@expanded = !!options.fetch(:expanded, true)
|
2017-01-04 13:43:06 -05:00
|
|
|
|
|
|
|
@line_count = 0
|
|
|
|
@byte_count = 0
|
|
|
|
@overflow = false
|
2017-05-23 10:14:52 -04:00
|
|
|
@empty = true
|
2017-01-04 13:43:06 -05:00
|
|
|
@array = Array.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def each(&block)
|
2017-07-13 18:22:09 -04:00
|
|
|
@array.each(&block)
|
|
|
|
|
|
|
|
return if @overflow
|
|
|
|
return if @iterator.nil?
|
|
|
|
|
|
|
|
Gitlab::GitalyClient.migrate(:commit_raw_diffs) do |is_enabled|
|
2017-07-25 16:48:17 -04:00
|
|
|
if is_enabled && @iterator.is_a?(Gitlab::GitalyClient::DiffStitcher)
|
2017-07-13 18:22:09 -04:00
|
|
|
each_gitaly_patch(&block)
|
|
|
|
else
|
|
|
|
each_rugged_patch(&block)
|
|
|
|
end
|
2017-01-04 13:43:06 -05:00
|
|
|
end
|
2017-07-13 18:22:09 -04:00
|
|
|
|
|
|
|
@populated = true
|
|
|
|
|
|
|
|
# Allow iterator to be garbage-collected. It cannot be reused anyway.
|
|
|
|
@iterator = nil
|
2017-01-04 13:43:06 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def empty?
|
2017-05-23 10:14:52 -04:00
|
|
|
any? # Make sure the iterator has been exercised
|
|
|
|
@empty
|
2017-01-04 13:43:06 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def overflow?
|
|
|
|
populate!
|
|
|
|
!!@overflow
|
|
|
|
end
|
|
|
|
|
|
|
|
def size
|
|
|
|
@size ||= count # forces a loop using each method
|
|
|
|
end
|
|
|
|
|
|
|
|
def real_size
|
|
|
|
populate!
|
|
|
|
|
|
|
|
if @overflow
|
|
|
|
"#{size}+"
|
|
|
|
else
|
|
|
|
size.to_s
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def decorate!
|
|
|
|
collection = each_with_index do |element, i|
|
|
|
|
@array[i] = yield(element)
|
|
|
|
end
|
|
|
|
collection
|
|
|
|
end
|
|
|
|
|
2017-05-15 13:18:19 -04:00
|
|
|
alias_method :to_ary, :to_a
|
|
|
|
|
2017-01-04 13:43:06 -05:00
|
|
|
private
|
|
|
|
|
|
|
|
def populate!
|
|
|
|
return if @populated
|
|
|
|
|
|
|
|
each { nil } # force a loop through all diffs
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
|
|
|
|
def over_safe_limits?(files)
|
2017-07-13 18:22:09 -04:00
|
|
|
files >= safe_max_files || @line_count > safe_max_lines || @byte_count >= safe_max_bytes
|
2017-01-04 13:43:06 -05:00
|
|
|
end
|
|
|
|
|
2017-07-13 18:22:09 -04:00
|
|
|
def each_gitaly_patch
|
|
|
|
i = @array.length
|
|
|
|
|
|
|
|
@iterator.each do |raw|
|
|
|
|
diff = Gitlab::Git::Diff.new(raw, expanded: !@enforce_limits || @expanded)
|
|
|
|
|
|
|
|
if raw.overflow_marker
|
|
|
|
@overflow = true
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
yield @array[i] = diff
|
2017-05-23 10:14:52 -04:00
|
|
|
i += 1
|
|
|
|
end
|
2017-07-13 18:22:09 -04:00
|
|
|
end
|
2017-05-23 10:14:52 -04:00
|
|
|
|
2017-07-13 18:22:09 -04:00
|
|
|
def each_rugged_patch
|
|
|
|
i = @array.length
|
2017-01-04 13:43:06 -05:00
|
|
|
|
2017-05-23 10:14:52 -04:00
|
|
|
@iterator.each do |raw|
|
|
|
|
@empty = false
|
2017-01-04 13:43:06 -05:00
|
|
|
|
2017-07-13 18:22:09 -04:00
|
|
|
if @enforce_limits && i >= max_files
|
2017-01-04 13:43:06 -05:00
|
|
|
@overflow = true
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
2017-05-31 15:41:25 -04:00
|
|
|
expanded = !@enforce_limits || @expanded
|
2017-01-04 13:43:06 -05:00
|
|
|
|
2017-05-26 19:27:30 -04:00
|
|
|
diff = Gitlab::Git::Diff.new(raw, expanded: expanded)
|
2017-01-04 13:43:06 -05:00
|
|
|
|
2017-06-06 17:28:06 -04:00
|
|
|
if !expanded && over_safe_limits?(i) && diff.line_count > 0
|
2017-05-26 19:27:30 -04:00
|
|
|
diff.collapse!
|
2017-01-04 13:43:06 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
@line_count += diff.line_count
|
|
|
|
@byte_count += diff.diff.bytesize
|
|
|
|
|
2017-07-13 18:22:09 -04:00
|
|
|
if @enforce_limits && (@line_count >= max_lines || @byte_count >= max_bytes)
|
2017-01-04 13:43:06 -05:00
|
|
|
# This last Diff instance pushes us over the lines limit. We stop and
|
|
|
|
# discard it.
|
|
|
|
@overflow = true
|
|
|
|
break
|
|
|
|
end
|
|
|
|
|
|
|
|
yield @array[i] = diff
|
2017-05-23 10:14:52 -04:00
|
|
|
i += 1
|
2017-01-04 13:43:06 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|