transactions.rb 5.9 KB
Newer Older
D
Initial  
David Heinemeier Hansson 已提交
1
require 'active_record/vendor/simple.rb'
2
Transaction::Simple.send(:remove_method, :transaction)
D
Initial  
David Heinemeier Hansson 已提交
3 4 5 6
require 'thread'

module ActiveRecord
  module Transactions # :nodoc:
7 8 9
    class TransactionError < ActiveRecordError # :nodoc:
    end

10
    def self.included(base)
D
Initial  
David Heinemeier Hansson 已提交
11 12 13
      base.extend(ClassMethods)

      base.class_eval do
14
        [:destroy, :save, :save!].each do |method|
15 16
          alias_method_chain method, :transactions
        end
D
Initial  
David Heinemeier Hansson 已提交
17 18 19 20
      end
    end

    # Transactions are protective blocks where SQL statements are only permanent if they can all succeed as one atomic action. 
21
    # The classic example is a transfer between two accounts where you can only have a deposit if the withdrawal succeeded and
D
David Heinemeier Hansson 已提交
22
    # vice versa. Transactions enforce the integrity of the database and guard the data against program errors or database break-downs.
D
Initial  
David Heinemeier Hansson 已提交
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
    # So basically you should use transaction blocks whenever you have a number of statements that must be executed together or
    # not at all. Example:
    #
    #   transaction do
    #     david.withdrawal(100)
    #     mary.deposit(100)
    #   end
    #
    # This example will only take money from David and give to Mary if neither +withdrawal+ nor +deposit+ raises an exception.
    # Exceptions will force a ROLLBACK that returns the database to the state before the transaction was begun. Be aware, though,
    # that the objects by default will _not_ have their instance data returned to their pre-transactional state.
    #
    # == Transactions are not distributed across database connections
    #
    # A transaction acts on a single database connection.  If you have
    # multiple class-specific databases, the transaction will not protect
    # interaction among them.  One workaround is to begin a transaction
    # on each class whose models you alter:
    #
    #   Student.transaction do
    #     Course.transaction do
    #       course.enroll(student)
    #       student.units += course.units
    #     end
    #   end
    #
    # This is a poor solution, but full distributed transactions are beyond
    # the scope of Active Record.
    #
    # == Save and destroy are automatically wrapped in a transaction
    #
    # Both Base#save and Base#destroy come wrapped in a transaction that ensures that whatever you do in validations or callbacks
    # will happen under the protected cover of a transaction. So you can use validations to check for values that the transaction
    # depend on or you can raise exceptions in the callbacks to rollback.
    #
58
    # == Object-level transactions (deprecated)
D
Initial  
David Heinemeier Hansson 已提交
59
    #
D
David Heinemeier Hansson 已提交
60
    # You can enable object-level transactions for Active Record objects, though. You do this by naming each of the Active Records
D
Initial  
David Heinemeier Hansson 已提交
61 62 63 64 65 66 67
    # that you want to enable object-level transactions for, like this:
    #
    #   Account.transaction(david, mary) do
    #     david.withdrawal(100)
    #     mary.deposit(100)
    #   end
    #
68 69 70 71 72 73 74 75
    # If the transaction fails, David and Mary will be returned to their
    # pre-transactional state. No money will have changed hands in neither
    # object nor database.
    #
    # However, useful state such as validation errors are also rolled back,
    # limiting the usefulness of this feature. As such it is deprecated in
    # Rails 1.2 and will be removed in the next release. Install the
    # object_transactions plugin if you wish to continue using it.
D
Initial  
David Heinemeier Hansson 已提交
76 77 78 79 80 81 82
    #
    # == Exception handling
    #
    # Also have in mind that exceptions thrown within a transaction block will be propagated (after triggering the ROLLBACK), so you
    # should be ready to catch those in your application code.
    #
    # Tribute: Object-level transactions are implemented by Transaction::Simple by Austin Ziegler.
83
    module ClassMethods
D
Initial  
David Heinemeier Hansson 已提交
84
      def transaction(*objects, &block)
85
        previous_handler = trap('TERM') { raise TransactionError, "Transaction aborted" }
86 87
        increment_open_transactions

D
Initial  
David Heinemeier Hansson 已提交
88
        begin
89 90 91 92 93
          unless objects.empty?
            ActiveSupport::Deprecation.warn "Object transactions are deprecated and will be removed from Rails 2.0.  See http://www.rubyonrails.org/deprecation for details.", caller
            objects.each { |o| o.extend(Transaction::Simple) }
            objects.each { |o| o.start_transaction }
          end
D
Initial  
David Heinemeier Hansson 已提交
94

95
          result = connection.transaction(Thread.current['start_db_transaction'], &block)
D
Initial  
David Heinemeier Hansson 已提交
96 97 98 99 100 101 102

          objects.each { |o| o.commit_transaction }
          return result
        rescue Exception => object_transaction_rollback
          objects.each { |o| o.abort_transaction }
          raise
        ensure
103
          decrement_open_transactions
104
          trap('TERM', previous_handler)
D
Initial  
David Heinemeier Hansson 已提交
105 106
        end
      end
107 108 109 110 111 112 113 114 115 116 117

      private
        def increment_open_transactions #:nodoc:
          open = Thread.current['open_transactions'] ||= 0
          Thread.current['start_db_transaction'] = open.zero?
          Thread.current['open_transactions'] = open + 1
        end

        def decrement_open_transactions #:nodoc:
          Thread.current['open_transactions'] -= 1
        end
D
Initial  
David Heinemeier Hansson 已提交
118 119 120 121 122 123 124
    end

    def transaction(*objects, &block)
      self.class.transaction(*objects, &block)
    end

    def destroy_with_transactions #:nodoc:
125
      transaction { destroy_without_transactions }
D
Initial  
David Heinemeier Hansson 已提交
126
    end
127

D
Initial  
David Heinemeier Hansson 已提交
128
    def save_with_transactions(perform_validation = true) #:nodoc:
129
      rollback_active_record_state { transaction { save_without_transactions(perform_validation) } }
D
Initial  
David Heinemeier Hansson 已提交
130
    end
131 132

    def save_with_transactions! #:nodoc:
133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
      rollback_active_record_state { transaction { save_without_transactions! } }
    end
    
    # stores the current id and @new_record values so that they are reset
    # after rolling the transaction back.
    def rollback_active_record_state
      previous_new_record = @new_record
      previous_id = self.id
      response = yield
    rescue
      response = false
      raise
    ensure
      unless response
        @new_record = previous_new_record
        self.id = previous_id
      end
      response
151
    end
D
Initial  
David Heinemeier Hansson 已提交
152
  end
153
end