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

commit_stats.rb « git « gitlab « lib « ruby - gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1959233e191c4ccff905d253b257c2e56e85159f (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
# Gitlab::Git::CommitStats counts the additions, deletions, and total changes
# in a commit.
module Gitlab
  module Git
    class CommitStats
      attr_reader :id, :additions, :deletions, :total

      # Instantiate a CommitStats object
      #
      # Gitaly migration: https://gitlab.com/gitlab-org/gitaly/issues/323
      def initialize(_repo, commit)
        @id = commit.id
        @additions = 0
        @deletions = 0
        @total = 0

        rugged_stats(commit)
      end

      def rugged_stats(commit)
        diff = commit.rugged_diff_from_parent
        _files_changed, @additions, @deletions = diff.stat
        @total = @additions + @deletions
      end
    end
  end
end