gitlab-org--gitlab-foss/lib/gitlab/git/diff.rb

292 lines
8.3 KiB
Ruby
Raw Normal View History

2017-07-12 15:06:35 +00:00
# Gitaly note: JV: needs RPC for Gitlab::Git::Diff.between.
2017-01-04 18:43:06 +00:00
# Gitlab::Git::Diff is a wrapper around native Rugged::Diff object
module Gitlab
module Git
class Diff
TimeoutError = Class.new(StandardError)
include Gitlab::EncodingHelper
2017-01-04 18:43:06 +00:00
# Diff properties
attr_accessor :old_path, :new_path, :a_mode, :b_mode, :diff
# Stats properties
attr_accessor :new_file, :renamed_file, :deleted_file
alias_method :new_file?, :new_file
alias_method :deleted_file?, :deleted_file
alias_method :renamed_file?, :renamed_file
attr_accessor :expanded
attr_writer :too_large
2017-01-04 18:43:06 +00:00
2017-06-06 21:28:06 +00:00
alias_method :expanded?, :expanded
SERIALIZE_KEYS = %i(diff new_path old_path a_mode b_mode new_file renamed_file deleted_file too_large).freeze
2017-05-30 19:50:02 +00:00
class << self
# The maximum size of a diff to display.
def size_limit
if RequestStore.active?
RequestStore['gitlab_git_diff_size_limit'] ||= find_size_limit
else
find_size_limit
end
end
# The maximum size before a diff is collapsed.
def collapse_limit
if RequestStore.active?
RequestStore['gitlab_git_diff_collapse_limit'] ||= find_collapse_limit
else
find_collapse_limit
end
end
def find_size_limit
if Feature.enabled?('gitlab_git_diff_size_limit_increase')
200.kilobytes
else
100.kilobytes
end
end
2017-01-04 18:43:06 +00:00
def find_collapse_limit
if Feature.enabled?('gitlab_git_diff_size_limit_increase')
100.kilobytes
else
10.kilobytes
end
end
2017-01-04 18:43:06 +00:00
def between(repo, head, base, options = {}, *paths)
straight = options.delete(:straight) || false
common_commit = if straight
base
else
# Only show what is new in the source branch
# compared to the target branch, not the other way
# around. The linex below with merge_base is
# equivalent to diff with three dots (git diff
# branch1...branch2) From the git documentation:
# "git diff A...B" is equivalent to "git diff
# $(git-merge-base A B) B"
repo.merge_base_commit(head, base)
end
options ||= {}
actual_options = filter_diff_options(options)
repo.diff(common_commit, head, actual_options, *paths)
end
# Return a copy of the +options+ hash containing only keys that can be
# passed to Rugged. Allowed options are:
#
# :ignore_whitespace_change ::
# If true, changes in amount of whitespace will be ignored.
#
# :disable_pathspec_match ::
# If true, the given +*paths+ will be applied as exact matches,
# instead of as fnmatch patterns.
#
def filter_diff_options(options, default_options = {})
2017-07-12 15:06:35 +00:00
allowed_options = [:ignore_whitespace_change,
:disable_pathspec_match, :paths,
2017-05-31 19:41:25 +00:00
:max_files, :max_lines, :limits, :expanded]
2017-01-04 18:43:06 +00:00
if default_options
actual_defaults = default_options.dup
actual_defaults.keep_if do |key|
allowed_options.include?(key)
end
else
actual_defaults = {}
end
if options
filtered_opts = options.dup
filtered_opts.keep_if do |key|
allowed_options.include?(key)
end
filtered_opts = actual_defaults.merge(filtered_opts)
else
filtered_opts = actual_defaults
end
filtered_opts
end
end
def initialize(raw_diff, expanded: true)
@expanded = expanded
2017-01-04 18:43:06 +00:00
case raw_diff
when Hash
2017-02-24 15:53:44 +00:00
init_from_hash(raw_diff)
prune_diff_if_eligible
2017-01-04 18:43:06 +00:00
when Rugged::Patch, Rugged::Diff::Delta
init_from_rugged(raw_diff)
2017-05-30 19:30:05 +00:00
when Gitlab::GitalyClient::Diff
2017-02-24 15:53:44 +00:00
init_from_gitaly(raw_diff)
prune_diff_if_eligible
when Gitaly::CommitDelta
init_from_gitaly(raw_diff)
2017-01-04 18:43:06 +00:00
when nil
raise "Nil as raw diff passed"
else
raise "Invalid raw diff type: #{raw_diff.class}"
end
end
def to_hash
hash = {}
SERIALIZE_KEYS.each do |key|
2017-01-04 18:43:06 +00:00
hash[key] = send(key)
end
hash
end
def mode_changed?
a_mode && b_mode && a_mode != b_mode
end
2017-01-04 18:43:06 +00:00
def submodule?
a_mode == '160000' || b_mode == '160000'
end
def line_count
@line_count ||= Util.count_lines(@diff)
end
def too_large?
2017-05-31 02:48:30 +00:00
if @too_large.nil?
@too_large = @diff.bytesize >= self.class.size_limit
2017-05-31 02:48:30 +00:00
else
@too_large
end
2017-01-04 18:43:06 +00:00
end
# This is used by `to_hash` and `init_from_hash`.
alias_method :too_large, :too_large?
def too_large!
2017-01-04 18:43:06 +00:00
@diff = ''
@line_count = 0
@too_large = true
end
def collapsed?
return @collapsed if defined?(@collapsed)
@collapsed = !expanded && @diff.bytesize >= self.class.collapse_limit
2017-01-04 18:43:06 +00:00
end
def collapse!
2017-01-04 18:43:06 +00:00
@diff = ''
@line_count = 0
@collapsed = true
end
private
def init_from_rugged(rugged)
2017-01-04 18:43:06 +00:00
if rugged.is_a?(Rugged::Patch)
init_from_rugged_patch(rugged)
2017-01-04 18:43:06 +00:00
d = rugged.delta
else
d = rugged
end
@new_path = encode!(d.new_file[:path])
@old_path = encode!(d.old_file[:path])
@a_mode = d.old_file[:mode].to_s(8)
@b_mode = d.new_file[:mode].to_s(8)
@new_file = d.added?
@renamed_file = d.renamed?
@deleted_file = d.deleted?
end
def init_from_rugged_patch(patch)
2017-01-04 18:43:06 +00:00
# Don't bother initializing diffs that are too large. If a diff is
# binary we're not going to display anything so we skip the size check.
return if !patch.delta.binary? && prune_large_patch(patch)
2017-01-04 18:43:06 +00:00
@diff = encode!(strip_diff_headers(patch.to_s))
end
2017-02-24 15:53:44 +00:00
def init_from_hash(hash)
2017-01-04 18:43:06 +00:00
raw_diff = hash.symbolize_keys
SERIALIZE_KEYS.each do |key|
2017-01-04 18:43:06 +00:00
send(:"#{key}=", raw_diff[key.to_sym])
end
2017-02-24 15:53:44 +00:00
end
2017-05-30 19:30:05 +00:00
def init_from_gitaly(diff)
2017-06-21 23:51:46 +00:00
@diff = encode!(diff.patch) if diff.respond_to?(:patch)
2017-05-30 19:30:05 +00:00
@new_path = encode!(diff.to_path.dup)
@old_path = encode!(diff.from_path.dup)
@a_mode = diff.old_mode.to_s(8)
@b_mode = diff.new_mode.to_s(8)
@new_file = diff.from_id == BLANK_SHA
@renamed_file = diff.from_path != diff.to_path
@deleted_file = diff.to_id == BLANK_SHA
collapse! if diff.respond_to?(:collapsed) && diff.collapsed
2017-02-24 15:53:44 +00:00
end
2017-01-04 18:43:06 +00:00
def prune_diff_if_eligible
if too_large?
too_large!
elsif collapsed?
collapse!
end
2017-01-04 18:43:06 +00:00
end
# If the patch surpasses any of the diff limits it calls the appropiate
# prune method and returns true. Otherwise returns false.
def prune_large_patch(patch)
2017-01-04 18:43:06 +00:00
size = 0
patch.each_hunk do |hunk|
hunk.each_line do |line|
size += line.content.bytesize
if size >= self.class.size_limit
too_large!
2017-01-04 18:43:06 +00:00
return true
end
end
end
if !expanded && size >= self.class.collapse_limit
collapse!
2017-01-04 18:43:06 +00:00
return true
end
false
end
# Strip out the information at the beginning of the patch's text to match
# Grit's output
def strip_diff_headers(diff_text)
# Delete everything up to the first line that starts with '---' or
# 'Binary'
diff_text.sub!(/\A.*?^(---|Binary)/m, '\1')
if diff_text.start_with?('---', 'Binary')
diff_text
else
# If the diff_text did not contain a line starting with '---' or
# 'Binary', return the empty string. No idea why; we are just
# preserving behavior from before the refactor.
''
end
end
end
end
end