debian-mirror-gitlab/lib/gitlab/git/commit_stats.rb

35 lines
855 B
Ruby
Raw Normal View History

2019-02-15 15:39:39 +05:30
# frozen_string_literal: true
2017-08-17 22:00:37 +05:30
# Gitlab::Git::CommitStats counts the additions, deletions, and total changes
# in a commit.
module Gitlab
module Git
class CommitStats
2018-12-13 13:39:08 +05:30
include Gitlab::Git::WrapsGitalyErrors
2017-08-17 22:00:37 +05:30
attr_reader :id, :additions, :deletions, :total
# Instantiate a CommitStats object
2017-09-10 17:25:29 +05:30
#
# Gitaly migration: https://gitlab.com/gitlab-org/gitaly/issues/323
2018-03-17 18:26:18 +05:30
def initialize(repo, commit)
2017-08-17 22:00:37 +05:30
@id = commit.id
@additions = 0
@deletions = 0
@total = 0
2018-12-13 13:39:08 +05:30
wrapped_gitaly_errors do
2018-11-08 19:23:39 +05:30
gitaly_stats(repo, commit)
2017-08-17 22:00:37 +05:30
end
end
2018-03-17 18:26:18 +05:30
def gitaly_stats(repo, commit)
stats = repo.gitaly_commit_client.commit_stats(@id)
@additions = stats.additions
@deletions = stats.deletions
@total = @additions + @deletions
end
2017-08-17 22:00:37 +05:30
end
end
end