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

33 lines
824 B
Ruby
Raw Normal View History

2017-01-04 18:43:06 +00:00
# Gitlab::Git::CommitStats counts the additions, deletions, and total changes
# in a commit.
module Gitlab
module Git
class CommitStats
include Gitlab::Git::WrapsGitalyErrors
2017-01-04 18:43:06 +00:00
attr_reader :id, :additions, :deletions, :total
# Instantiate a CommitStats object
#
# Gitaly migration: https://gitlab.com/gitlab-org/gitaly/issues/323
2017-09-06 10:55:16 +00:00
def initialize(repo, commit)
2017-01-04 18:43:06 +00:00
@id = commit.id
@additions = 0
@deletions = 0
@total = 0
wrapped_gitaly_errors do
2018-07-03 15:39:08 +00:00
gitaly_stats(repo, commit)
2017-09-06 10:55:16 +00:00
end
end
def gitaly_stats(repo, commit)
stats = repo.gitaly_commit_client.commit_stats(@id)
@additions = stats.additions
@deletions = stats.deletions
@total = @additions + @deletions
end
2017-01-04 18:43:06 +00:00
end
end
end