1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546
|
# frozen-string-literal: true
module Sequel
class Database
# ---------------------
# :section: 8 - Methods related to database transactions
# Database transactions make multiple queries atomic, so
# that either all of the queries take effect or none of
# them do.
# ---------------------
TRANSACTION_ISOLATION_LEVELS = {:uncommitted=>'READ UNCOMMITTED'.freeze,
:committed=>'READ COMMITTED'.freeze,
:repeatable=>'REPEATABLE READ'.freeze,
:serializable=>'SERIALIZABLE'.freeze}.freeze
# The default transaction isolation level for this database,
# used for all future transactions. For MSSQL, this should be set
# to something if you ever plan to use the :isolation option to
# Database#transaction, as on MSSQL if affects all future transactions
# on the same connection.
attr_accessor :transaction_isolation_level
# If a transaction is not currently in process, yield to the block immediately.
# Otherwise, add the block to the list of blocks to call after the currently
# in progress transaction commits (and only if it commits).
# Options:
# :savepoint :: If currently inside a savepoint, only run this hook on transaction
# commit if all enclosing savepoints have been released.
# :server :: The server/shard to use.
def after_commit(opts=OPTS, &block)
raise Error, "must provide block to after_commit" unless block
synchronize(opts[:server]) do |conn|
if h = _trans(conn)
raise Error, "cannot call after_commit in a prepared transaction" if h[:prepare]
if opts[:savepoint] && in_savepoint?(conn)
add_savepoint_hook(conn, :after_commit, block)
else
add_transaction_hook(conn, :after_commit, block)
end
else
yield
end
end
end
# If a transaction is not currently in progress, ignore the block.
# Otherwise, add the block to the list of the blocks to call after the currently
# in progress transaction rolls back (and only if it rolls back).
# Options:
# :savepoint :: If currently inside a savepoint, run this hook immediately when
# any enclosing savepoint is rolled back, which may be before the transaction
# commits or rollsback.
# :server :: The server/shard to use.
def after_rollback(opts=OPTS, &block)
raise Error, "must provide block to after_rollback" unless block
synchronize(opts[:server]) do |conn|
if h = _trans(conn)
raise Error, "cannot call after_rollback in a prepared transaction" if h[:prepare]
if opts[:savepoint] && in_savepoint?(conn)
add_savepoint_hook(conn, :after_rollback, block)
else
add_transaction_hook(conn, :after_rollback, block)
end
end
end
end
# When exiting the transaction block through methods other than an exception
# (e.g. normal exit, non-local return, or throw), set the current transaction
# to rollback instead of committing. This is designed for use in cases where
# you want to preform a non-local return but also want to rollback instead of
# committing.
# Options:
# :cancel :: Cancel the current rollback_on_exit setting, so exiting will commit instead
# of rolling back.
# :savepoint :: Rollback only the current savepoint if inside a savepoint.
# Can also be an positive integer value to rollback that number of enclosing savepoints,
# up to and including the transaction itself.
# If the database does not support savepoints, this option is ignored and the entire
# transaction is affected.
# :server :: The server/shard the transaction is being executed on.
def rollback_on_exit(opts=OPTS)
synchronize(opts[:server]) do |conn|
raise Error, "Cannot call Sequel:: Database#rollback_on_exit unless inside a transaction" unless h = _trans(conn)
rollback = !opts[:cancel]
if supports_savepoints?
savepoints = h[:savepoints]
if level = opts[:savepoint]
level = 1 if level == true
raise Error, "invalid :savepoint option to Database#rollback_on_exit: #{level.inspect}" unless level.is_a?(Integer)
raise Error, "cannot pass nonpositive integer (#{level.inspect}) as :savepoint option to Database#rollback_on_exit" if level < 1
level.times do |i|
break unless savepoint = savepoints[-1 - i]
savepoint[:rollback_on_exit] = rollback
end
else
savepoints[0][:rollback_on_exit] = rollback
end
else
h[:rollback_on_exit] = rollback
end
end
nil
end
# Return true if already in a transaction given the options,
# false otherwise. Respects the :server option for selecting
# a shard.
def in_transaction?(opts=OPTS)
synchronize(opts[:server]){|conn| !!_trans(conn)}
end
# Returns a proc that you can call to check if the transaction
# has been rolled back. The proc will return nil if the
# transaction is still in progress, true if the transaction was
# rolled back, and false if it was committed. Raises an
# Error if called outside a transaction. Respects the :server
# option for selecting a shard.
def rollback_checker(opts=OPTS)
synchronize(opts[:server]) do |conn|
raise Error, "not in a transaction" unless t = _trans(conn)
t[:rollback_checker] ||= proc{Sequel.synchronize{t[:rolled_back]}}
end
end
# Starts a database transaction. When a database transaction is used,
# either all statements are successful or none of the statements are
# successful. Note that MySQL MyISAM tables do not support transactions.
#
# The following general options are respected:
#
# :auto_savepoint :: Automatically use a savepoint for Database#transaction calls
# inside this transaction block.
# :isolation :: The transaction isolation level to use for this transaction,
# should be :uncommitted, :committed, :repeatable, or :serializable,
# used if given and the database/adapter supports customizable
# transaction isolation levels.
# :num_retries :: The number of times to retry if the :retry_on option is used.
# The default is 5 times. Can be set to nil to retry indefinitely,
# but that is not recommended.
# :before_retry :: Proc to execute before retrying if the :retry_on option is used.
# Called with two arguments: the number of retry attempts (counting
# the current one) and the error the last attempt failed with.
# :prepare :: A string to use as the transaction identifier for a
# prepared transaction (two-phase commit), if the database/adapter
# supports prepared transactions.
# :retry_on :: An exception class or array of exception classes for which to
# automatically retry the transaction. Can only be set if not inside
# an existing transaction.
# Note that this should not be used unless the entire transaction
# block is idempotent, as otherwise it can cause non-idempotent
# behavior to execute multiple times.
# :rollback :: Can be set to :reraise to reraise any Sequel::Rollback exceptions
# raised, or :always to always rollback even if no exceptions occur
# (useful for testing).
# :server :: The server to use for the transaction. Set to :default, :read_only, or
# whatever symbol you used in the connect string when naming your servers.
# :savepoint :: Whether to create a new savepoint for this transaction,
# only respected if the database/adapter supports savepoints. By
# default Sequel will reuse an existing transaction, so if you want to
# use a savepoint you must use this option. If the surrounding transaction
# uses :auto_savepoint, you can set this to false to not use a savepoint.
# If the value given for this option is :only, it will only create a
# savepoint if it is inside a transaction.
#
# PostgreSQL specific options:
#
# :deferrable :: (9.1+) If present, set to DEFERRABLE if true or NOT DEFERRABLE if false.
# :read_only :: If present, set to READ ONLY if true or READ WRITE if false.
# :synchronous :: if non-nil, set synchronous_commit
# appropriately. Valid values true, :on, false, :off, :local (9.1+),
# and :remote_write (9.2+).
def transaction(opts=OPTS, &block)
opts = Hash[opts]
if retry_on = opts[:retry_on]
tot_retries = opts.fetch(:num_retries, 5)
num_retries = 0
begin
opts[:retry_on] = nil
opts[:retrying] = true
transaction(opts, &block)
rescue *retry_on => e
num_retries += 1
if tot_retries.nil? || num_retries <= tot_retries
opts[:before_retry].call(num_retries, e) if opts[:before_retry]
retry
end
raise
end
else
synchronize(opts[:server]) do |conn|
if opts[:savepoint] == :only
if supports_savepoints?
if _trans(conn)
opts[:savepoint] = true
else
return yield(conn)
end
else
opts[:savepoint] = false
end
end
if opts[:savepoint] && !supports_savepoints?
raise Sequel::InvalidOperation, "savepoints not supported on #{database_type}"
end
if already_in_transaction?(conn, opts)
if opts[:rollback] == :always && !opts.has_key?(:savepoint)
if supports_savepoints?
opts[:savepoint] = true
else
raise Sequel::Error, "cannot set :rollback=>:always transaction option if already inside a transaction"
end
end
if opts[:savepoint] != false && (stack = _trans(conn)[:savepoints]) && stack.last[:auto_savepoint]
opts[:savepoint] = true
end
unless opts[:savepoint]
if opts[:retrying]
raise Sequel::Error, "cannot set :retry_on options if you are already inside a transaction"
end
return yield(conn)
end
end
_transaction(conn, opts, &block)
end
end
end
private
# Internal generic transaction method. Any exception raised by the given
# block will cause the transaction to be rolled back. If the exception is
# not a Sequel::Rollback, the error will be reraised. If no exception occurs
# inside the block, the transaction is commited.
def _transaction(conn, opts=OPTS)
rollback = opts[:rollback]
begin
add_transaction(conn, opts)
begin_transaction(conn, opts)
if rollback == :always
begin
ret = yield(conn)
rescue Exception => e1
raise e1
ensure
raise ::Sequel::Rollback unless e1
end
else
yield(conn)
end
rescue Exception => e
begin
rollback_transaction(conn, opts)
rescue Exception => e3
end
transaction_error(e, :conn=>conn, :rollback=>rollback)
raise e3 if e3
ret
ensure
begin
committed = commit_or_rollback_transaction(e, conn, opts)
rescue Exception => e2
begin
raise_error(e2, :classes=>database_error_classes, :conn=>conn)
rescue Sequel::DatabaseError => e4
begin
rollback_transaction(conn, opts)
ensure
raise e4
end
end
ensure
remove_transaction(conn, committed)
end
end
end
# Synchronize access to the current transactions, returning the hash
# of options for the current transaction (if any)
def _trans(conn)
Sequel.synchronize{@transactions[conn]}
end
# Add the current thread to the list of active transactions
def add_transaction(conn, opts)
hash = transaction_options(conn, opts)
if supports_savepoints?
if t = _trans(conn)
t[:savepoints].push({:auto_savepoint=>opts[:auto_savepoint]})
return
else
hash[:savepoints] = [{:auto_savepoint=>opts[:auto_savepoint]}]
if (prep = opts[:prepare]) && supports_prepared_transactions?
hash[:prepare] = prep
end
end
elsif (prep = opts[:prepare]) && supports_prepared_transactions?
hash[:prepare] = prep
end
Sequel.synchronize{@transactions[conn] = hash}
end
# Set the given callable as a hook to be called. Type should be either
# :after_commit or :after_rollback.
def add_savepoint_hook(conn, type, block)
savepoint = _trans(conn)[:savepoints].last
(savepoint[type] ||= []) << block
end
# Set the given callable as a hook to be called. Type should be either
# :after_commit or :after_rollback.
def add_transaction_hook(conn, type, block)
hooks = _trans(conn)[type] ||= []
hooks << block
end
# Whether the given connection is already inside a transaction
def already_in_transaction?(conn, opts)
_trans(conn) && (!supports_savepoints? || !opts[:savepoint])
end
# Derive the transaction hash from the options passed to the transaction.
# Meant to be overridden.
def transaction_options(conn, opts)
{}
end
# Issue query to begin a new savepoint.
def begin_savepoint(conn, opts)
log_connection_execute(conn, begin_savepoint_sql(savepoint_level(conn)-1))
end
# SQL to start a new savepoint
def begin_savepoint_sql(depth)
"SAVEPOINT autopoint_#{depth}"
end
# Start a new database transaction on the given connection
def begin_new_transaction(conn, opts)
log_connection_execute(conn, begin_transaction_sql)
set_transaction_isolation(conn, opts)
end
# Start a new database transaction or a new savepoint on the given connection.
def begin_transaction(conn, opts=OPTS)
if in_savepoint?(conn)
begin_savepoint(conn, opts)
else
begin_new_transaction(conn, opts)
end
end
# SQL to BEGIN a transaction.
def begin_transaction_sql
'BEGIN'
end
# Whether to commit the current transaction. Thread.current.status is
# checked because Thread#kill skips rescue blocks (so exception would be
# nil), but the transaction should still be rolled back. On Ruby 1.9 (but
# not 2.0+), the thread status will still be "run", so Thread#kill
# will erroneously commit the transaction, and there isn't a workaround.
def commit_or_rollback_transaction(exception, conn, opts)
if exception
false
else
if rollback_on_transaction_exit?(conn, opts)
rollback_transaction(conn, opts)
false
else
commit_transaction(conn, opts)
true
end
end
end
# SQL to commit a savepoint
def commit_savepoint_sql(depth)
"RELEASE SAVEPOINT autopoint_#{depth}"
end
# Commit the active transaction on the connection
def commit_transaction(conn, opts=OPTS)
if supports_savepoints?
depth = savepoint_level(conn)
log_connection_execute(conn, depth > 1 ? commit_savepoint_sql(depth-1) : commit_transaction_sql)
else
log_connection_execute(conn, commit_transaction_sql)
end
end
# SQL to COMMIT a transaction.
def commit_transaction_sql
'COMMIT'
end
# Method called on the connection object to execute SQL on the database,
# used by the transaction code.
def connection_execute_method
:execute
end
# Which transaction errors to translate, blank by default.
def database_error_classes
[]
end
# Whether the connection is currently inside a savepoint.
def in_savepoint?(conn)
supports_savepoints? && savepoint_level(conn) > 1
end
# Retrieve the savepoint hooks that should be run for the given
# connection and commit status. This expacts that you are
# already inside a savepoint when calling.
def savepoint_hooks(conn, committed)
_trans(conn)[:savepoints].last[committed ? :after_commit : :after_rollback]
end
# Retrieve the transaction hooks that should be run for the given
# connection and commit status.
def transaction_hooks(conn, committed)
unless in_savepoint?(conn)
_trans(conn)[committed ? :after_commit : :after_rollback]
end
end
# Remove the current thread from the list of active transactions
def remove_transaction(conn, committed)
callbacks = transaction_hooks(conn, committed)
if in_savepoint?(conn)
savepoint_callbacks = savepoint_hooks(conn, committed)
if committed
savepoint_rollback_callbacks = savepoint_hooks(conn, false)
end
end
if transaction_finished?(conn)
h = _trans(conn)
rolled_back = !committed
Sequel.synchronize{h[:rolled_back] = rolled_back}
Sequel.synchronize{@transactions.delete(conn)}
elsif savepoint_callbacks || savepoint_rollback_callbacks
if committed
meth = in_savepoint?(conn) ? :add_savepoint_hook : :add_transaction_hook
if savepoint_callbacks
savepoint_callbacks.each do |block|
send(meth, conn, :after_commit, block)
end
end
if savepoint_rollback_callbacks
savepoint_rollback_callbacks.each do |block|
send(meth, conn, :after_rollback, block)
end
end
else
savepoint_callbacks.each(&:call)
end
end
callbacks.each(&:call) if callbacks
end
# SQL to rollback to a savepoint
def rollback_savepoint_sql(depth)
"ROLLBACK TO SAVEPOINT autopoint_#{depth}"
end
# Whether to rollback the transaction when exiting the transaction.
def rollback_on_transaction_exit?(conn, opts)
return true if Thread.current.status == 'aborting'
h = _trans(conn)
if supports_savepoints?
h[:savepoints].last[:rollback_on_exit]
else
h[:rollback_on_exit]
end
end
# Rollback the active transaction on the connection
def rollback_transaction(conn, opts=OPTS)
if supports_savepoints?
depth = savepoint_level(conn)
log_connection_execute(conn, depth > 1 ? rollback_savepoint_sql(depth-1) : rollback_transaction_sql)
else
log_connection_execute(conn, rollback_transaction_sql)
end
end
# SQL to ROLLBACK a transaction.
def rollback_transaction_sql
'ROLLBACK'
end
# Set the transaction isolation level on the given connection
def set_transaction_isolation(conn, opts)
if supports_transaction_isolation_levels? and level = opts.fetch(:isolation, transaction_isolation_level)
log_connection_execute(conn, set_transaction_isolation_sql(level))
end
end
# SQL to set the transaction isolation level
def set_transaction_isolation_sql(level)
"SET TRANSACTION ISOLATION LEVEL #{TRANSACTION_ISOLATION_LEVELS[level]}"
end
# Current savepoint level.
def savepoint_level(conn)
_trans(conn)[:savepoints].length
end
# Raise a database error unless the exception is an Rollback.
def transaction_error(e, opts=OPTS)
if e.is_a?(Rollback)
raise e if opts[:rollback] == :reraise
else
raise_error(e, opts.merge(:classes=>database_error_classes))
end
end
# Finish a subtransaction. If savepoints are supported, pops the current
# tansaction off the savepoint stack.
def transaction_finished?(conn)
if supports_savepoints?
stack = _trans(conn)[:savepoints]
stack.pop
stack.empty?
else
true
end
end
end
end
|