2017-08-17 05:00:31 -04:00
|
|
|
module AfterCommitQueue
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
after_commit :_run_after_commit_queue
|
|
|
|
after_rollback :_clear_after_commit_queue
|
|
|
|
end
|
|
|
|
|
2017-11-29 10:30:17 -05:00
|
|
|
def run_after_commit(&block)
|
2017-08-17 05:00:31 -04:00
|
|
|
_after_commit_queue << block if block
|
2017-11-29 10:30:17 -05:00
|
|
|
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def run_after_commit_or_now(&block)
|
|
|
|
if AfterCommitQueue.inside_transaction?
|
2017-12-22 05:38:35 -05:00
|
|
|
if ActiveRecord::Base.connection.current_transaction.records.include?(self)
|
|
|
|
run_after_commit(&block)
|
|
|
|
else
|
|
|
|
# If the current transaction does not include this record, we can run
|
|
|
|
# the block now, even if it queues a Sidekiq job.
|
|
|
|
Sidekiq::Worker.skipping_transaction_check do
|
|
|
|
instance_eval(&block)
|
|
|
|
end
|
|
|
|
end
|
2017-11-29 10:30:17 -05:00
|
|
|
else
|
|
|
|
instance_eval(&block)
|
|
|
|
end
|
|
|
|
|
2017-08-17 05:00:31 -04:00
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2017-11-29 10:30:17 -05:00
|
|
|
def self.open_transactions_baseline
|
|
|
|
if ::Rails.env.test?
|
|
|
|
return DatabaseCleaner.connections.count { |conn| conn.strategy.is_a?(DatabaseCleaner::ActiveRecord::Transaction) }
|
|
|
|
end
|
|
|
|
|
|
|
|
0
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.inside_transaction?
|
|
|
|
ActiveRecord::Base.connection.open_transactions > open_transactions_baseline
|
|
|
|
end
|
|
|
|
|
2017-08-17 05:00:31 -04:00
|
|
|
protected
|
|
|
|
|
|
|
|
def _run_after_commit_queue
|
|
|
|
while action = _after_commit_queue.pop
|
|
|
|
self.instance_eval(&action)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def _after_commit_queue
|
|
|
|
@after_commit_queue ||= []
|
|
|
|
end
|
|
|
|
|
|
|
|
def _clear_after_commit_queue
|
|
|
|
_after_commit_queue.clear
|
|
|
|
end
|
|
|
|
end
|