2018-11-09 13:39:43 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-30 15:30:05 -04:00
|
|
|
module Gitlab
|
|
|
|
module GitalyClient
|
|
|
|
class DiffStitcher
|
|
|
|
include Enumerable
|
|
|
|
|
2020-10-15 23:08:29 -04:00
|
|
|
delegate :size, to: :rpc_response
|
|
|
|
|
|
|
|
def initialize(rpc_response_param)
|
|
|
|
@rpc_response = rpc_response_param
|
2017-05-30 15:30:05 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def each
|
|
|
|
current_diff = nil
|
|
|
|
|
|
|
|
@rpc_response.each do |diff_msg|
|
|
|
|
if current_diff.nil?
|
2017-11-13 05:05:16 -05:00
|
|
|
diff_params = diff_msg.to_h.slice(*GitalyClient::Diff::ATTRS)
|
2017-06-21 19:51:46 -04:00
|
|
|
# gRPC uses frozen strings by default, and we need to have an unfrozen string as it
|
|
|
|
# gets processed further down the line. So we unfreeze the first chunk of the patch
|
|
|
|
# in case it's the only chunk we receive for this diff.
|
|
|
|
diff_params[:patch] = diff_msg.raw_patch_data.dup
|
2017-05-30 15:30:05 -04:00
|
|
|
|
|
|
|
current_diff = GitalyClient::Diff.new(diff_params)
|
|
|
|
else
|
2018-11-09 13:39:43 -05:00
|
|
|
current_diff.patch = "#{current_diff.patch}#{diff_msg.raw_patch_data}"
|
2017-05-30 15:30:05 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
if diff_msg.end_of_patch
|
|
|
|
yield current_diff
|
|
|
|
current_diff = nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-10-15 23:08:29 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
attr_reader :rpc_response
|
2017-05-30 15:30:05 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|