Sha256: c9a282cae85ec17927c429fe1ca71cd919703c9a03a80fa883bd5aa8445d2d88

Contents?: true

Size: 1.39 KB

Versions: 5

Compression:

Stored size: 1.39 KB

Contents

module PactBroker
  module Verifications
    class Sequence < Sequel::Model(:verification_sequence_number)
      dataset_module do
        # The easiest way to implement a cross database compatible sequence.
        # Sad, I know.
        def next_val
          if PactBroker::Dataset::Helpers.postgres?
            db.execute("SELECT nextval('verification_number_sequence') as val") { |v| v.first["val"].to_i }
          else
            db.transaction do
              for_update.first
              select_all.update(value: Sequel[:value]+1)
              row = first
              if row
                row.value
              else
                # The first row should have been created in the migration, so this code
                # should only ever be executed in a test context.
                # There would be a risk of a race condition creating two rows if this
                # code executed in prod, as I don't think you can lock an empty table
                # to prevent another record being inserted.
                max_verification_number = PactBroker::Domain::Verification.max(:number)
                value = max_verification_number ? max_verification_number + 100 : 1
                insert(value: value)
                value
              end
            end
          end
        end
      end
    end
  end
end

# Table: verification_sequence_number
# Columns:
#  value | integer | NOT NULL

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
pact_broker-2.112.0 lib/pact_broker/verifications/sequence.rb
pact_broker-2.111.0 lib/pact_broker/verifications/sequence.rb
pact_broker-2.109.1 lib/pact_broker/verifications/sequence.rb
pact_broker-2.109.0 lib/pact_broker/verifications/sequence.rb
pact_broker-2.108.0 lib/pact_broker/verifications/sequence.rb