debian-mirror-gitlab/app/models/project_statistics.rb

181 lines
5.3 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2019-07-07 11:18:12 +05:30
class ProjectStatistics < ApplicationRecord
2019-09-30 21:07:59 +05:30
include AfterCommitQueue
2021-01-03 14:25:43 +05:30
include CounterAttribute
2019-09-30 21:07:59 +05:30
2017-08-17 22:00:37 +05:30
belongs_to :project
belongs_to :namespace
2023-01-13 00:05:48 +05:30
attribute :wiki_size, default: 0
attribute :snippets_size, default: 0
2019-09-04 21:01:54 +05:30
2021-01-03 14:25:43 +05:30
counter_attribute :build_artifacts_size
2023-03-04 22:38:38 +05:30
counter_attribute :packages_size
2021-01-03 14:25:43 +05:30
2023-03-04 22:38:38 +05:30
counter_attribute_after_commit do |project_statistics|
project_statistics.refresh_storage_size!
2022-10-11 01:57:18 +05:30
2023-03-04 22:38:38 +05:30
Namespaces::ScheduleAggregationWorker.perform_async(project_statistics.namespace_id)
2021-01-03 14:25:43 +05:30
end
2017-08-17 22:00:37 +05:30
before_save :update_storage_size
2022-07-16 23:28:13 +05:30
COLUMNS_TO_REFRESH = [:repository_size, :wiki_size, :lfs_objects_size, :commit_count, :snippets_size, :uploads_size, :container_registry_size].freeze
2023-03-04 22:38:38 +05:30
INCREMENTABLE_COLUMNS = [
:pipeline_artifacts_size,
:snippets_size
].freeze
2022-07-23 23:45:48 +05:30
NAMESPACE_RELATABLE_COLUMNS = [:repository_size, :wiki_size, :lfs_objects_size, :uploads_size, :container_registry_size].freeze
2022-11-25 23:54:43 +05:30
STORAGE_SIZE_COMPONENTS = [
:repository_size,
:wiki_size,
:lfs_objects_size,
:build_artifacts_size,
:packages_size,
:snippets_size,
:pipeline_artifacts_size,
:uploads_size
].freeze
2017-08-17 22:00:37 +05:30
2019-09-04 21:01:54 +05:30
scope :for_project_ids, ->(project_ids) { where(project_id: project_ids) }
2020-05-24 23:13:21 +05:30
scope :for_namespaces, -> (namespaces) { where(namespace: namespaces) }
2017-08-17 22:00:37 +05:30
def total_repository_size
repository_size + lfs_objects_size
end
2019-09-30 21:07:59 +05:30
def refresh!(only: [])
2021-01-03 14:25:43 +05:30
return if Gitlab::Database.read_only?
2022-11-25 23:54:43 +05:30
columns_to_update = only.empty? ? COLUMNS_TO_REFRESH : COLUMNS_TO_REFRESH & only
columns_to_update.each do |column|
public_send("update_#{column}") # rubocop:disable GitlabSecurity/PublicSend
2017-08-17 22:00:37 +05:30
end
2019-09-30 21:07:59 +05:30
if only.empty? || only.any? { |column| NAMESPACE_RELATABLE_COLUMNS.include?(column) }
schedule_namespace_aggregation_worker
end
2022-11-25 23:54:43 +05:30
detect_race_on_record(log_fields: { caller: __method__, attributes: columns_to_update }) do
save!
end
2017-08-17 22:00:37 +05:30
end
def update_commit_count
self.commit_count = project.repository.commit_count
end
def update_repository_size
self.repository_size = project.repository.size * 1.megabyte
end
2019-09-04 21:01:54 +05:30
def update_wiki_size
self.wiki_size = project.wiki.repository.size * 1.megabyte
end
2020-07-28 23:09:34 +05:30
def update_snippets_size
self.snippets_size = project.snippets.with_statistics.sum(:repository_size)
end
2017-08-17 22:00:37 +05:30
def update_lfs_objects_size
2021-11-18 22:05:49 +05:30
self.lfs_objects_size = LfsObject.joins(:lfs_objects_projects).where(lfs_objects_projects: { project_id: project.id }).sum(:size)
2017-08-17 22:00:37 +05:30
end
2021-01-29 00:20:46 +05:30
def update_uploads_size
self.uploads_size = project.uploads.sum(:size)
end
2022-07-16 23:28:13 +05:30
def update_container_registry_size
self.container_registry_size = project.container_repositories_size || 0
end
2020-07-28 23:09:34 +05:30
# `wiki_size` and `snippets_size` have no default value in the database
# and the column can be nil.
# This means that, when the columns were added, all rows had nil
# values on them.
2023-01-13 00:05:48 +05:30
# Therefore, any call to any of those methods will return nil instead of 0.
2020-07-28 23:09:34 +05:30
#
# These two methods provide consistency and avoid returning nil.
def wiki_size
super.to_i
end
def snippets_size
super.to_i
2019-07-31 22:56:46 +05:30
end
2018-10-15 14:42:47 +05:30
def update_storage_size
2022-11-25 23:54:43 +05:30
self.storage_size = storage_size_components.sum { |component| method(component).call }
2017-08-17 22:00:37 +05:30
end
2022-10-11 01:57:18 +05:30
def refresh_storage_size!
2022-11-25 23:54:43 +05:30
detect_race_on_record(log_fields: { caller: __method__, attributes: :storage_size }) do
update!(storage_size: storage_size_sum)
end
2022-10-11 01:57:18 +05:30
end
# Since this incremental update method does not call update_storage_size above through before_save,
# we have to update the storage_size separately.
#
# For counter attributes, storage_size will be refreshed after the counter is flushed,
2023-03-04 22:38:38 +05:30
# through counter_attribute_after_commit
2022-10-11 01:57:18 +05:30
#
# For non-counter attributes, storage_size is updated depending on key => [columns] in INCREMENTABLE_COLUMNS
2023-03-17 16:20:25 +05:30
def self.increment_statistic(project, key, increment)
return if project.pending_delete?
project.statistics.try do |project_statistics|
project_statistics.increment_statistic(key, increment)
end
end
def self.bulk_increment_statistic(project, key, increments)
unless Feature.enabled?(:project_statistics_bulk_increment, type: :development)
total_amount = Gitlab::Counters::Increment.new(amount: increments.sum(&:amount))
return increment_statistic(project, key, total_amount)
end
return if project.pending_delete?
2021-01-03 14:25:43 +05:30
project.statistics.try do |project_statistics|
2023-03-17 16:20:25 +05:30
project_statistics.bulk_increment_statistic(key, increments)
2021-01-03 14:25:43 +05:30
end
end
2023-03-17 16:20:25 +05:30
def increment_statistic(key, increment)
raise ArgumentError, "Cannot increment attribute: #{key}" unless incrementable_attribute?(key)
increment_counter(key, increment)
end
def bulk_increment_statistic(key, increments)
2023-03-04 22:38:38 +05:30
raise ArgumentError, "Cannot increment attribute: #{key}" unless incrementable_attribute?(key)
2021-01-03 14:25:43 +05:30
2023-03-17 16:20:25 +05:30
bulk_increment_counter(key, increments)
2018-11-18 11:00:15 +05:30
end
2022-11-25 23:54:43 +05:30
private
2018-11-18 11:00:15 +05:30
2023-03-04 22:38:38 +05:30
def incrementable_attribute?(key)
INCREMENTABLE_COLUMNS.include?(key) || counter_attribute_enabled?(key)
end
2022-11-25 23:54:43 +05:30
def storage_size_components
STORAGE_SIZE_COMPONENTS
2017-08-17 22:00:37 +05:30
end
2019-09-30 21:07:59 +05:30
2022-11-25 23:54:43 +05:30
def storage_size_sum
storage_size_components.map { |component| "COALESCE (#{component}, 0)" }.join(' + ').freeze
2022-10-11 01:57:18 +05:30
end
2019-09-30 21:07:59 +05:30
def schedule_namespace_aggregation_worker
run_after_commit do
Namespaces::ScheduleAggregationWorker.perform_async(project.namespace_id)
end
end
2017-08-17 22:00:37 +05:30
end
2019-12-04 20:38:33 +05:30
2021-06-08 01:23:25 +05:30
ProjectStatistics.prepend_mod_with('ProjectStatistics')