summaryrefslogtreecommitdiff
path: root/app/services/branches/diverging_commit_counts_service.rb
blob: f947cec1663aca73ec366e9b2920a757d35847ce (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
43
44
45
46
47
48
49
50
51
52
53
54
# frozen_string_literal: true

module Branches
  class DivergingCommitCountsService
    def initialize(repository)
      @repository = repository
      @cache = Gitlab::RepositoryCache.new(repository)
    end

    def call(branch)
      if Feature.enabled?('gitaly_count_diverging_commits_no_max')
        diverging_commit_counts_without_max(branch)
      else
        diverging_commit_counts(branch)
      end
    end

    private

    attr_reader :repository, :cache

    delegate :raw_repository, to: :repository

    def diverging_commit_counts(branch)
      ## TODO: deprecate the below code after 12.0
      @root_ref_hash ||= raw_repository.commit(repository.root_ref).id
      cache.fetch(:"diverging_commit_counts_#{branch.name}") do
        number_commits_behind, number_commits_ahead =
          repository.raw_repository.diverging_commit_count(
            @root_ref_hash,
            branch.dereferenced_target.sha,
            max_count: Repository::MAX_DIVERGING_COUNT)

        if number_commits_behind + number_commits_ahead >= Repository::MAX_DIVERGING_COUNT
          { distance: Repository::MAX_DIVERGING_COUNT }
        else
          { behind: number_commits_behind, ahead: number_commits_ahead }
        end
      end
    end

    def diverging_commit_counts_without_max(branch)
      @root_ref_hash ||= raw_repository.commit(repository.root_ref).id
      cache.fetch(:"diverging_commit_counts_without_max_#{branch.name}") do
        number_commits_behind, number_commits_ahead =
          raw_repository.diverging_commit_count(
            @root_ref_hash,
            branch.dereferenced_target.sha)

        { behind: number_commits_behind, ahead: number_commits_ahead }
      end
    end
  end
end