Module: ActiveRecord::Locking::Optimistic::ClassMethods

Defined in:
lib/active_record/locking/optimistic.rb

Constant Summary collapse

DEFAULT_LOCKING_COLUMN =
'lock_version'

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.extended(base) ⇒ Object



137
138
139
140
141
# File 'lib/active_record/locking/optimistic.rb', line 137

def self.extended(base)
  class <<base
    alias_method_chain :update_counters, :lock
  end
end

Instance Method Details

#locking_columnObject

The version column used for optimistic locking. Defaults to lock_version.



158
159
160
# File 'lib/active_record/locking/optimistic.rb', line 158

def locking_column
  reset_locking_column
end

#locking_enabled?Boolean

Is optimistic locking enabled for this table? Returns true if the lock_optimistically flag is set to true (which it is, by default) and the table includes the locking_column column (defaults to lock_version).

Returns:

  • (Boolean)


147
148
149
# File 'lib/active_record/locking/optimistic.rb', line 147

def locking_enabled?
  lock_optimistically && columns_hash[locking_column]
end

#quoted_locking_columnObject

Quote the column name used for optimistic locking.



163
164
165
# File 'lib/active_record/locking/optimistic.rb', line 163

def quoted_locking_column
  connection.quote_column_name(locking_column)
end

#reset_locking_columnObject

Reset the column used for optimistic locking back to the lock_version default.



168
169
170
# File 'lib/active_record/locking/optimistic.rb', line 168

def reset_locking_column
  set_locking_column DEFAULT_LOCKING_COLUMN
end

#set_locking_column(value = nil, &block) ⇒ Object

Set the column to use for optimistic locking. Defaults to lock_version.



152
153
154
155
# File 'lib/active_record/locking/optimistic.rb', line 152

def set_locking_column(value = nil, &block)
  define_attr_method :locking_column, value, &block
  value
end

#update_counters_with_lock(id, counters) ⇒ Object

Make sure the lock version column gets updated when counters are updated.



174
175
176
177
# File 'lib/active_record/locking/optimistic.rb', line 174

def update_counters_with_lock(id, counters)
  counters = counters.merge(locking_column => 1) if locking_enabled?
  update_counters_without_lock(id, counters)
end