Module: CounterCulture

Defined in:
lib/counter_culture.rb,
lib/counter_culture/counter.rb,
lib/counter_culture/version.rb,
lib/counter_culture/extensions.rb,
lib/counter_culture/reconciler.rb,
lib/counter_culture/skip_updates.rb,
lib/counter_culture/configuration.rb,
lib/counter_culture/with_connection.rb

Defined Under Namespace

Modules: Extensions, SkipUpdates Classes: Configuration, Counter, Reconciler, WithConnection

Constant Summary collapse

VERSION =
'3.11.3'.freeze

Class Method Summary collapse

Class Method Details

.aggregate_counter_updatesObject



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
# File 'lib/counter_culture.rb', line 20

def self.aggregate_counter_updates
  return unless block_given?

  Thread.current[:aggregate_counter_updates] = true
  Thread.current[:aggregated_updates] = {}
  Thread.current[:primary_key_map] = {}

  result = yield

  # aggregate the updates for each target record and execute SQL queries
  Thread.current[:aggregated_updates].each do |klass, attrs|
    attrs.each do |rec_id, updates|
      update_snippets = updates.map do |operation, value|
        value = value.call if value.is_a?(Proc)
        %Q{#{operation} #{value.is_a?(String) ? "'#{value}'" : value}} unless value == 0
      end.compact

      if update_snippets.any?
        primary_key = Thread.current[:primary_key_map][klass]

        conditions =
          Array.wrap(primary_key)
              .zip(Array.wrap(rec_id))
              .to_h

        klass.where(conditions).update_all(update_snippets.join(', '))
      end
    end
  end

  result
ensure
  Thread.current[:aggregate_counter_updates] = false
  Thread.current[:aggregated_updates] = nil
  Thread.current[:primary_key_map] = nil
end

.config {|_self| ... } ⇒ Object

Yields:

  • (_self)

Yield Parameters:



15
16
17
18
# File 'lib/counter_culture.rb', line 15

def self.config
  yield(self) if block_given?
  self
end

.configurationObject



2
3
4
# File 'lib/counter_culture/configuration.rb', line 2

def self.configuration
  @configuration ||= Configuration.new
end

.configure {|configuration| ... } ⇒ Object

Yields:



6
7
8
# File 'lib/counter_culture/configuration.rb', line 6

def self.configure
  yield(configuration)
end

.reset_configurationObject



10
11
12
# File 'lib/counter_culture/configuration.rb', line 10

def self.reset_configuration
  @configuration = Configuration.new
end

.supports_composite_keys?Boolean

Returns:

  • (Boolean)


14
15
16
# File 'lib/counter_culture/configuration.rb', line 14

def self.supports_composite_keys?
  Gem::Requirement.new('>= 7.2.0').satisfied_by?(ActiveRecord.version)
end