docbrown/app/models/application_record.rb
PJ 6de70e3810
Sort organization members and tag moderators by badge count (#19582)
* show tag moderators in descending badge count order

* show organization users in descending badge count order

* specs & docs for find_each_respecting_scope
2023-06-09 15:30:46 +01:00

129 lines
4.6 KiB
Ruby

class ApplicationRecord < ActiveRecord::Base
self.abstract_class = true
include Purgeable
# see <https://www.postgresql.org/docs/11/catalog-pg-class.html> for details
# on the `pg_class` table
QUERY_ESTIMATED_COUNT = <<~SQL.squish.freeze
SELECT (
(reltuples / GREATEST(relpages, 1)) *
(pg_relation_size(?) / (GREATEST(current_setting('block_size')::integer, 1)))
)::bigint AS count
FROM pg_class
WHERE relname = ? AND relkind = 'r';
SQL
# Computes an estimated count of the number of rows using stats collected by VACUUM
# inspired by <https://www.citusdata.com/blog/2016/10/12/count-performance/#dup_counts_estimated_full>
# and <https://stackoverflow.com/a/48391562/4186181>
def self.estimated_count
query = sanitize_sql_array([QUERY_ESTIMATED_COUNT, table_name, table_name])
result = connection.execute(query)
count = result.first["count"]
result.clear # PG::Result is manually managed in memory, we need to release its resources
count
end
# Decorate collection with appropriate decorator
def self.decorate
decorator_class.decorate_collection(all)
end
# Infers the decorator class to be used by (e.g. `User` maps to `UserDecorator`).
# adapted from https://github.com/drapergem/draper/blob/157eb955072a941e6455e0121fca09a989fcbc21/lib/draper/decoratable.rb#L71
def self.decorator_class(called_on = self)
prefix = respond_to?(:model_name) ? model_name : name
decorator_name = "#{prefix}Decorator"
decorator_name_constant = decorator_name.safe_constantize
return decorator_name_constant unless decorator_name_constant.nil?
return superclass.decorator_class(called_on) if superclass.respond_to?(:decorator_class)
raise UninferrableDecoratorError,
I18n.t("models.application_record.uninferrable", class: called_on.class.name)
end
def self.statement_timeout
connection.execute("SELECT setting FROM pg_settings WHERE name = 'statement_timeout'")
.first["setting"]
.to_i
.seconds / 1000
end
def self.with_statement_timeout(duration, connection: self.connection)
original_timeout = statement_timeout
milliseconds = (duration.to_f * 1000).to_i
connection.execute "SET statement_timeout = #{milliseconds}"
yield
ensure
milliseconds = original_timeout.to_i * 1000
connection.execute "SET statement_timeout = #{milliseconds}"
end
# ActiveRecord's `find_each` method allows you to work with a large collection of records
# in batches, but strictly only orders those batches by IDs in ascending order.
# Any other specified order is either ignored or raises an error (depending on configuration).
# This method allows performing batch queries of arbitrary order.
#
# @param batch_size [Integer] Batch size limit
# @yieldparam [self]
# @return [Enumerator<self>] if no block is given
#
# @see https://api.rubyonrails.org/v7.0.4.2/classes/ActiveRecord/Batches.html#method-i-find_each
def self.find_each_respecting_scope(batch_size: 1000, &block)
load_in_batches = Enumerator.new do |e|
in_batches_respecting_scope(batch_size: batch_size) do |batch|
batch.each { |record| e.yield record }
end
end
return load_in_batches unless block
load_in_batches.each(&block)
end
def self.in_batches_respecting_scope(batch_size: 1000)
relation = self
# Without a specified order, the sorting of PostgreSQL's query results is undefined behaviour
relation = relation.order(id: :asc) if all.arel.orders.blank?
all_ids = relation.ids.to_a
# `where` and `order` are unnecessary as we already know the exact records we need (and in what order)
# `limit` and `offset` would conflict with the manual batching
batch_relation = relation.unscope(:where, :order, :limit, :offset)
# We're loading in batches to reduce memory usage; if the results get cached anyway, that defeats the purpose
batch_relation.skip_query_cache!
all_ids.in_groups_of(batch_size, false) do |ids|
records = batch_relation.where(id: ids).index_by(&:id)
# Avoid yielding nil if e.g. record has been deleted since loading IDs
yield ids.filter_map { |id| records[id] }
end
end
# Decorate object with appropriate decorator
def decorate
self.class.decorator_class.new(self)
end
def decorated?
false
end
# In our view objects, we often ask "What's this object's class's name?"
#
# We can either first check "Are you decorated?" If so, ask for the decorated object's class
# name. Or we can add a helper method for that very thing.
#
# @return [String]
def class_name
self.class.name
end
def errors_as_sentence
errors.full_messages.to_sentence
end
end