pool_repository.rb 2.2 KB
Newer Older
N
Nick Thomas 已提交
1 2
# frozen_string_literal: true

3 4 5
# The PoolRepository model is the database equivalent of an ObjectPool for Gitaly
# That is; PoolRepository is the record in the database, ObjectPool is the
# repository on disk
N
Nick Thomas 已提交
6
class PoolRepository < ActiveRecord::Base
7
  include Shardable
8 9 10 11
  include AfterCommitQueue

  has_one :source_project, class_name: 'Project'
  validates :source_project, presence: true
N
Nick Thomas 已提交
12

13
  has_many :member_projects, class_name: 'Project'
N
Nick Thomas 已提交
14

15
  after_create :correct_disk_path
N
Nick Thomas 已提交
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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
  state_machine :state, initial: :none do
    state :scheduled
    state :ready
    state :failed

    event :schedule do
      transition none: :scheduled
    end

    event :mark_ready do
      transition [:scheduled, :failed] => :ready
    end

    event :mark_failed do
      transition all => :failed
    end

    state all - [:ready] do
      def joinable?
        false
      end
    end

    state :ready do
      def joinable?
        true
      end
    end

    after_transition none: :scheduled do |pool, _|
      pool.run_after_commit do
        ::ObjectPool::CreateWorker.perform_async(pool.id)
      end
    end

    after_transition scheduled: :ready do |pool, _|
      pool.run_after_commit do
        ::ObjectPool::ScheduleJoinWorker.perform_async(pool.id)
      end
    end
  end

  def create_object_pool
    object_pool.create
  end

  # The members of the pool should have fetched the missing objects to their own
  # objects directory. If the caller fails to do so, data loss might occur
  def delete_object_pool
    object_pool.delete
  end

  def link_repository(repository)
    object_pool.link(repository.raw)
  end

  # This RPC can cause data loss, as not all objects are present the local repository
  # No execution path yet, will be added through:
  # https://gitlab.com/gitlab-org/gitaly/issues/1415
  def delete_repository_alternate(repository)
    object_pool.unlink_repository(repository.raw)
  end

  def object_pool
    @object_pool ||= Gitlab::Git::ObjectPool.new(
      shard.name,
      disk_path + '.git',
      source_project.repository.raw)
  end

87 88 89
  private

  def correct_disk_path
90
    update!(disk_path: storage.disk_path)
91 92 93 94 95 96
  end

  def storage
    Storage::HashedProject
      .new(self, prefix: Storage::HashedProject::POOL_PATH_PREFIX)
  end
N
Nick Thomas 已提交
97
end