Skip to content

Commit

Permalink
chore: refractor postgresql class
Browse files Browse the repository at this point in the history
  • Loading branch information
seuros committed Feb 12, 2024
1 parent a078c31 commit 06bc1ce
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 21 deletions.
1 change: 1 addition & 0 deletions lib/with_advisory_lock.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
loader.setup

module WithAdvisoryLock
LOCK_PREFIX_ENV = 'WITH_ADVISORY_LOCK_PREFIX'.freeze
end

ActiveSupport.on_load :active_record do
Expand Down
6 changes: 2 additions & 4 deletions lib/with_advisory_lock/base.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def initialize(connection, lock_name, options)
end

def lock_str
@lock_str ||= "#{ENV['WITH_ADVISORY_LOCK_PREFIX']}#{lock_name}"
@lock_str ||= "#{ENV[LOCK_PREFIX_ENV]}#{lock_name}"
end

def lock_stack_item
Expand All @@ -56,9 +56,7 @@ def already_locked?
def with_advisory_lock_if_needed(&block)
if disable_query_cache
return lock_and_yield do
connection.uncached do
yield
end
connection.uncached(&block)
end
end

Expand Down
49 changes: 32 additions & 17 deletions lib/with_advisory_lock/postgresql.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,42 +2,57 @@

module WithAdvisoryLock
class PostgreSQL < Base
# See http://www.postgresql.org/docs/9.1/static/functions-admin.html#FUNCTIONS-ADVISORY-LOCKS
# See https://www.postgresql.org/docs/16/functions-admin.html#FUNCTIONS-ADVISORY-LOCKS

# MRI returns 't', jruby returns true. YAY!
LOCK_RESULT_VALUES = ['t', true].freeze
PG_ADVISORY_UNLOCK = 'pg_advisory_unlock'
PG_TRY_ADVISORY = 'pg_try_advisory'
ERROR_MESSAGE_REGEX = / ERROR: +current transaction is aborted,/

def try_lock
pg_function = "pg_try_advisory#{transaction ? '_xact' : ''}_lock#{shared ? '_shared' : ''}"
execute_successful?(pg_function)
execute_successful?(pg_function_name(PG_TRY_ADVISORY, transaction))
end

def release_lock
return if transaction

pg_function = "pg_advisory_unlock#{shared ? '_shared' : ''}"
execute_successful?(pg_function)
rescue ActiveRecord::StatementInvalid => e
raise unless e.message =~ / ERROR: +current transaction is aborted,/

begin
execute_successful?(pg_function_name(PG_ADVISORY_UNLOCK, false))
rescue ActiveRecord::StatementInvalid => e
raise unless e.message =~ ERROR_MESSAGE_REGEX

connection.rollback_db_transaction
execute_successful?(pg_function)
retry
ensure
connection.begin_db_transaction
end
end

def pg_function_name(base_name, transaction_scope)
[
base_name,
transaction_scope ? '_xact' : nil,
shared ? '_shared' : nil
].compact.join
end

def execute_successful?(pg_function)
result = connection.select_value(prepare_sql(pg_function))
LOCK_RESULT_VALUES.include?(result)
end

def prepare_sql(pg_function)
comment = lock_name.to_s.gsub(%r{(/\*)|(\*/)}, '--')
sql = "SELECT #{pg_function}(#{lock_keys.join(',')}) AS #{unique_column_name} /* #{comment} */"
result = connection.select_value(sql)
# MRI returns 't', jruby returns true. YAY!
['t', true].include?(result)
"SELECT #{pg_function}(#{lock_keys.join(',')}) AS #{unique_column_name} /* #{comment} */"
end

# PostgreSQL wants 2 32bit integers as the lock key.
def lock_keys
@lock_keys ||= [stable_hashcode(lock_name), ENV['WITH_ADVISORY_LOCK_PREFIX']].map do |ea|
# pg advisory args must be 31 bit ints
ea.to_i & 0x7fffffff
end
@lock_keys ||= [
stable_hashcode(lock_name),
ENV[LOCK_PREFIX_ENV]
].map { |ea| ea.to_i & 0x7fffffff }
end
end
end

0 comments on commit 06bc1ce

Please sign in to comment.