Welcome to mirror list, hosted at ThFree Co, Russian Federation.

diff_stitcher.rb « gitaly_client « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e98ae75590d9ff48cb3c621478c9e19a05530f17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true

module Gitlab
  module GitalyClient
    class DiffStitcher
      include Enumerable

      delegate :size, to: :rpc_response

      def initialize(rpc_response_param)
        @rpc_response = rpc_response_param
      end

      def each
        current_diff = nil

        @rpc_response.each do |diff_msg|
          if current_diff.nil?
            diff_params = diff_msg.to_h.slice(*GitalyClient::Diff::ATTRS)
            # 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

            current_diff = GitalyClient::Diff.new(diff_params)
          else
            current_diff.patch = "#{current_diff.patch}#{diff_msg.raw_patch_data}"
          end

          if diff_msg.end_of_patch
            yield current_diff
            current_diff = nil
          end
        end
      end

      private

      attr_reader :rpc_response
    end
  end
end