summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Brandl <abrandl@gitlab.com>2018-03-12 16:51:38 +0100
committerAndreas Brandl <abrandl@gitlab.com>2018-03-16 13:35:25 +0100
commit3fa2eb4e10885c9b3a01f0f9f244c9fbb26cf6a1 (patch)
tree3cda29db8773fdc2c818b42523f4808d9336ac2c
parent0360b0928aada1db7635e6c6bc40f0f571b72c30 (diff)
downloadgitlab-ce-3fa2eb4e10885c9b3a01f0f9f244c9fbb26cf6a1.tar.gz
Refactor, extract class and improve comments.
-rw-r--r--app/models/concerns/atomic_internal_id.rb32
-rw-r--r--app/models/internal_id.rb93
-rw-r--r--app/models/issue.rb2
-rw-r--r--spec/models/concerns/issuable_spec.rb2
-rw-r--r--spec/models/internal_id_spec.rb9
5 files changed, 95 insertions, 43 deletions
diff --git a/app/models/concerns/atomic_internal_id.rb b/app/models/concerns/atomic_internal_id.rb
index eef5c0bfcd1..6a0f29806c4 100644
--- a/app/models/concerns/atomic_internal_id.rb
+++ b/app/models/concerns/atomic_internal_id.rb
@@ -1,13 +1,41 @@
+# Include atomic internal id generation scheme for a model
+#
+# This allows to atomically generate internal ids that are
+# unique within a given scope.
+#
+# For example, let's generate internal ids for Issue per Project:
+# ```
+# class Issue < ActiveRecord::Base
+# has_internal_id :iid, scope: :project, init: ->(s) { s.project.issues.maximum(:iid) }
+# end
+# ```
+#
+# This generates unique internal ids per project for newly created issues.
+# The generated internal id is saved in the `iid` attribute of `Issue`.
+#
+# This concern uses InternalId records to facilitate atomicity.
+# In the absence of a record for the given scope, one will be created automatically.
+# In this situation, the `init` block is called to calculate the initial value.
+# In the example above, we calculate the maximum `iid` of all issues
+# within the given project.
+#
+# Note that a model may have more than one internal id associated with possibly
+# different scopes.
module AtomicInternalId
extend ActiveSupport::Concern
included do
class << self
- def has_internal_id(on, scope:, usage: nil, init: nil)
+ def has_internal_id(on, scope:, usage: nil, init: nil) # rubocop:disable Naming/PredicateName
before_validation(on: :create) do
if self.public_send(on).blank? # rubocop:disable GitlabSecurity/PublicSend
+
+ scope_attrs = [scope].flatten.compact.each_with_object({}) do |e, h|
+ h[e] = self.public_send(e) # rubocop:disable GitlabSecurity/PublicSend
+ end
+
usage = (usage || self.class.name.tableize).to_sym
- new_iid = InternalId.generate_next(self, scope, usage, init)
+ new_iid = InternalId.generate_next(self, scope_attrs, usage, init)
self.public_send("#{on}=", new_iid) # rubocop:disable GitlabSecurity/PublicSend
end
end
diff --git a/app/models/internal_id.rb b/app/models/internal_id.rb
index 58e71b623d0..4673dffa842 100644
--- a/app/models/internal_id.rb
+++ b/app/models/internal_id.rb
@@ -1,21 +1,26 @@
# An InternalId is a strictly monotone sequence of integers
-# for a given project and usage (e.g. issues).
+# generated for a given scope and usage.
#
-# For possible usages, see InternalId#usage enum.
+# For example, issues use their project to scope internal ids:
+# In that sense, scope is "project" and usage is "issues".
+# Generated internal ids for an issue are unique per project.
+#
+# See InternalId#usage enum for available usages.
+#
+# In order to leverage InternalId for other usages, the idea is to
+# * Add `usage` value to enum
+# * (Optionally) add columns to `internal_ids` if needed for scope.
class InternalId < ActiveRecord::Base
belongs_to :project
enum usage: { issues: 0 }
validates :usage, presence: true
- validates :project_id, presence: true
# Increments #last_value and saves the record
#
- # The operation locks the record and gathers
- # a `ROW SHARE` lock (in PostgreSQL). As such,
- # the increment is atomic and safe to be called
- # concurrently.
+ # The operation locks the record and gathers a `ROW SHARE` lock (in PostgreSQL).
+ # As such, the increment is atomic and safe to be called concurrently.
def increment_and_save!
lock!
self.last_value = (last_value || 0) + 1
@@ -24,59 +29,79 @@ class InternalId < ActiveRecord::Base
end
class << self
- # Generate next internal id for a given project and usage.
+ def generate_next(subject, scope, usage, init)
+ InternalIdGenerator.new(subject, scope, usage, init).generate
+ end
+ end
+
+ class InternalIdGenerator
+ # Generate next internal id for a given scope and usage.
#
# For currently supported usages, see #usage enum.
#
# The method implements a locking scheme that has the following properties:
- # 1) Generated sequence of internal ids is unique per (project, usage)
+ # 1) Generated sequence of internal ids is unique per (scope and usage)
# 2) The method is thread-safe and may be used in concurrent threads/processes.
# 3) The generated sequence is gapless.
# 4) In the absence of a record in the internal_ids table, one will be created
# and last_value will be calculated on the fly.
- def generate_next(subject, scope, usage, init)
- scope = [scope].flatten.compact
- raise 'scope is not well-defined, need at least one column for scope (given: 0)' if scope.empty?
- raise "usage #{usage} is unknown. Supported values are InternalId.usages = #{InternalId.usages.keys.to_s}" unless InternalId.usages.include?(usage.to_sym)
+ #
+ # subject: The instance we're generating an internal id for. Gets passed to init if called.
+ # scope: Attributes that define the scope for id generation.
+ # usage: Symbol to define the usage of the internal id, see InternalId.usages
+ # init: Block that gets called to initialize InternalId record if not yet present (optional)
+ attr_reader :subject, :scope, :init, :scope_attrs, :usage
+ def initialize(subject, scope, usage, init)
+ @subject = subject
+ @scope = scope
+ @init = init || ->(s) { 0 }
+ @usage = usage
- init ||= ->(s) { 0 }
+ raise 'scope is not well-defined, need at least one column for scope (given: 0)' if scope.empty?
- scope_attrs = scope.inject({}) do |h, e|
- h[e] = subject.public_send(e)
- h
+ unless InternalId.usages.keys.include?(usage.to_s)
+ raise "Usage '#{usage}' is unknown. Supported values are #{InternalId.usages.keys} from InternalId.usages"
end
+ end
- transaction do
+ # Generates next internal id and returns it
+ def generate
+ subject.transaction do
# Create a record in internal_ids if one does not yet exist
- id = (lookup(scope_attrs, usage) || create_record(scope_attrs, usage, init, subject))
-
- # This will lock the InternalId record with ROW SHARE
- # and increment #last_value
- id.increment_and_save!
+ # and increment it's last value
+ #
+ # Note this will acquire a ROW SHARE lock on the InternalId record
+ (lookup || create_record).increment_and_save!
end
end
private
# Retrieve InternalId record for (project, usage) combination, if it exists
- def lookup(scope_attrs, usage)
- InternalId.find_by(usage: usages[usage.to_s], **scope_attrs)
+ def lookup
+ InternalId.find_by(**scope, usage: usage_value)
+ end
+
+ def usage_value
+ @usage_value ||= InternalId.usages[usage.to_s]
end
- # Create InternalId record for (project, usage) combination, if it doesn't exist
+ # Create InternalId record for (scope, usage) combination, if it doesn't exist
#
- # We blindly insert without any synchronization. If another process
+ # We blindly insert without synchronization. If another process
# was faster in doing this, we'll realize once we hit the unique key constraint
# violation. We can safely roll-back the nested transaction and perform
# a lookup instead to retrieve the record.
- def create_record(scope_attrs, usage, init, subject)
- begin
- transaction(requires_new: true) do
- create!(usage: usages[usage.to_s], **scope_attrs, last_value: init.call(subject) || 0)
- end
- rescue ActiveRecord::RecordNotUnique
- lookup(scope_attrs, usage)
+ def create_record
+ subject.transaction(requires_new: true) do
+ InternalId.create!(
+ **scope,
+ usage: usage_value,
+ last_value: init.call(subject) || 0
+ )
end
+ rescue ActiveRecord::RecordNotUnique
+ lookup
end
end
end
diff --git a/app/models/issue.rb b/app/models/issue.rb
index 509e214c601..7bfc45c1f43 100644
--- a/app/models/issue.rb
+++ b/app/models/issue.rb
@@ -24,7 +24,7 @@ class Issue < ActiveRecord::Base
belongs_to :project
belongs_to :moved_to, class_name: 'Issue'
- has_internal_id :iid, scope: :project, init: ->(s) { s.project.issues.maximum(:iid) }
+ has_internal_id :iid, scope: :project, init: ->(s) { s&.project&.issues&.maximum(:iid) }
has_many :events, as: :target, dependent: :destroy # rubocop:disable Cop/ActiveRecordDependent
diff --git a/spec/models/concerns/issuable_spec.rb b/spec/models/concerns/issuable_spec.rb
index 4b217df2e8f..f8874d14e3f 100644
--- a/spec/models/concerns/issuable_spec.rb
+++ b/spec/models/concerns/issuable_spec.rb
@@ -34,7 +34,7 @@ describe Issuable do
subject { build(:issue) }
before do
- allow(subject).to receive(:set_iid).and_return(false)
+ allow(InternalId).to receive(:generate_next).and_return(nil)
end
it { is_expected.to validate_presence_of(:project) }
diff --git a/spec/models/internal_id_spec.rb b/spec/models/internal_id_spec.rb
index 5971d8f47a6..6d5a12c9d06 100644
--- a/spec/models/internal_id_spec.rb
+++ b/spec/models/internal_id_spec.rb
@@ -4,12 +4,11 @@ describe InternalId do
let(:project) { create(:project) }
let(:usage) { :issues }
let(:issue) { build(:issue, project: project) }
- let(:scope) { :project }
- let(:init) { ->(s) { project.issues.size } }
+ let(:scope) { { project: project } }
+ let(:init) { ->(s) { s.project.issues.size } }
context 'validations' do
it { is_expected.to validate_presence_of(:usage) }
- it { is_expected.to validate_presence_of(:project_id) }
end
describe '.generate_next' do
@@ -31,8 +30,8 @@ describe InternalId do
context 'with existing issues' do
before do
- rand(10).times { create(:issue, project: project) }
- InternalId.delete_all
+ rand(1..10).times { create(:issue, project: project) }
+ described_class.delete_all
end
it 'calculates last_value values automatically' do