active_record_compose 1.2.1 → 1.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 810feb87760ff992aa21ca019081e6072ec43c99387ea0ee013f767d4d2c875c
4
- data.tar.gz: 7077c4d5b79d12c6c5f5a0297d0d2837c3d3c79a3b8e74a13c12e05a3511c078
3
+ metadata.gz: 148413ab669022c937e7f4775cff13dc018c9ba190014b130c10b9ca7e767a3f
4
+ data.tar.gz: 51ec332dcf2decf04dfb7f3bf8f0d38bf791d36d960d0d19c388608ef3f33a32
5
5
  SHA512:
6
- metadata.gz: 283b3beaab24fb19d30e134dbe543a25c730bf0d331bdd5114ae89747d0a247b8b572d7e6f2578c06d80f2f7cb4b8c6023f2640518c5b0dc21d335401e45ab5c
7
- data.tar.gz: 6f55ebeb0bd4379d206f55b8dc8dc618beca9d281f0d425c0cc8d96078d60ed74fd26c67b92b2bb8c26f9cb6dd4634557ef1064990c4a7ca91bb15e99d6c381e
6
+ metadata.gz: 7db6b03f1a56d9d9d1ef0427362b65966bcfca997a465c4ce843d5dad9c4237e43b443ce0620629c665ab09163bf46fd362976009c2e426ae40849c1a41d18bd
7
+ data.tar.gz: 43ecb29b976c4136650e2152f1533af7e06de40afeba68f7265e97ba6eff208165271c338b4348d44127d850ebe75de2908eea60a18e986ef47e181d95d6e784
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.3.0] - 2026-08-09
4
+
5
+ * Support secondary and multiple database
6
+ (https://github.com/hamajyotan/active_record_compose/pull/74)
7
+ - When models connecting to different databases are used together, the system behaves in a manner simulating a two-phase commit.
8
+ - Due to the nature of the ActiveRecord API supported by Rails, a true two-phase commit is not implemented; instead, transactions are nested when multiple database connections are involved.
9
+ - Note that operations remain unchanged when all models belong to a single primary database.
10
+
3
11
  ## [1.2.1] - 2026-03-21
4
12
 
5
13
  * Improved clarity of error when accessing uninitialized attributes.
data/README.md CHANGED
@@ -59,6 +59,10 @@ $ bundle
59
59
 
60
60
  ## Quick Start
61
61
 
62
+ For a complete runnable application, see the Sample Application section below.
63
+
64
+ The examples in this section focus on ActiveRecordCompose itself and intentionally omit surrounding application code such as migrations, routes, views, and jobs.
65
+
62
66
  ### Basic Example
63
67
 
64
68
  Suppose you have two models:
@@ -1,5 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require "set"
3
4
  require_relative "wrapped_model"
4
5
 
5
6
  module ActiveRecordCompose
@@ -117,7 +118,7 @@ module ActiveRecordCompose
117
118
  def symbol_proc_map
118
119
  @symbol_proc_map ||=
119
120
  Hash.new do |h, k|
120
- h[k] = -> { owner.__send__(k) }
121
+ h[k] = -> { owner.__send__(k) } # steep:ignore
121
122
  end
122
123
  end
123
124
 
@@ -0,0 +1,42 @@
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveRecordCompose
4
+ module TransactionSupport
5
+ # @private
6
+ # steep:ignore:start
7
+
8
+ # In older versions, the ActiveRecord::Transaction object is not passed to the block argument of #transaction.
9
+ # So instead, we define a transaction object that can be evaluated equivalently.
10
+ # This follow-up will no longer be necessary when support for Rails 7.1 is dropped.
11
+ #
12
+ class ActiveTransaction
13
+ def initialize(transaction)
14
+ @real_transaction = transaction
15
+ end
16
+
17
+ attr_reader :real_transaction
18
+
19
+ def open? = !closed?
20
+
21
+ def closed? = real_transaction&.state&.completed?
22
+
23
+ def ==(other)
24
+ return true if equal?(other)
25
+ return false unless self.class == other.class
26
+
27
+ real_transaction == other.real_transaction
28
+ end
29
+
30
+ def eql?(other)
31
+ return true if equal?(other)
32
+ return false unless self.class == other.class
33
+
34
+ real_transaction.eql?(other.real_transaction)
35
+ end
36
+
37
+ def hash = real_transaction.hash
38
+ end
39
+
40
+ # steep:ignore:end
41
+ end
42
+ end
@@ -0,0 +1,47 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "set"
4
+
5
+ module ActiveRecordCompose
6
+ module TransactionSupport
7
+ # @private
8
+ class TransactionCoordinator
9
+ def add_transaction(active_transaction)
10
+ transactions << active_transaction
11
+ end
12
+
13
+ # The before_commit callback is controlled so that
14
+ # it runs just before the outermost transaction commits,
15
+ # but not just before any inner transactions commit.
16
+ #
17
+ def on_before_comitted
18
+ return if @_before_committed_called
19
+
20
+ yield
21
+ @_before_committed_called = true
22
+ end
23
+
24
+ # It processes after_commit/after_rollback only immediately
25
+ # after all transactions are closed.
26
+ #
27
+ def on_after_transaction
28
+ return unless all_finished?
29
+
30
+ with_transaction_cleanup { yield }
31
+ end
32
+
33
+ private
34
+
35
+ def with_transaction_cleanup
36
+ yield
37
+ ensure
38
+ @_before_committed_called = false
39
+ transactions.reject! { _1.closed? }
40
+ end
41
+
42
+ def all_finished? = transactions.all? { _1.closed? }
43
+
44
+ def transactions = @transactions ||= Set.new
45
+ end
46
+ end
47
+ end
@@ -1,6 +1,8 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "active_support/core_ext/module"
4
+ require_relative "transaction_support/active_transaction"
5
+ require_relative "transaction_support/transaction_coordinator"
4
6
 
5
7
  module ActiveRecordCompose
6
8
  module TransactionSupport
@@ -86,17 +88,17 @@ module ActiveRecordCompose
86
88
 
87
89
  # @private
88
90
  def before_committed!
89
- _run_before_commit_callbacks
91
+ transaction_coordinator.on_before_comitted { _run_before_commit_callbacks }
90
92
  end
91
93
 
92
94
  # @private
93
95
  def committed!(should_run_callbacks: true)
94
- _run_commit_callbacks if should_run_callbacks
96
+ transaction_coordinator.on_after_transaction { _run_commit_callbacks if should_run_callbacks }
95
97
  end
96
98
 
97
99
  # @private
98
100
  def rolledback!(force_restore_state: false, should_run_callbacks: true)
99
- _run_rollback_callbacks if should_run_callbacks
101
+ transaction_coordinator.on_after_transaction { _run_rollback_callbacks if should_run_callbacks }
100
102
  end
101
103
  end
102
104
 
@@ -104,23 +106,49 @@ module ActiveRecordCompose
104
106
 
105
107
  def save!(**options) = with_transaction_returning_status { super }
106
108
 
107
- private
108
-
109
109
  # @private
110
- def with_transaction_returning_status
111
- connection_pool.with_connection do |connection|
112
- with_pool_transaction_isolation_level(connection) do
113
- ensure_finalize = !connection.transaction_open?
110
+ def connection_pools
111
+ pools =
112
+ models.compact.flat_map do |model|
113
+ if model.is_a?(ActiveRecordCompose::TransactionSupport)
114
+ model.connection_pools
115
+ elsif model.is_a?(ActiveRecord::Base)
116
+ connection_pool(ar_class: model.class)
117
+ else
118
+ [] # : Array[ActiveRecord::ConnectionAdapters::ConnectionPool]
119
+ end
120
+ end
121
+ pools << connection_pool if pools.blank?
122
+ pools.uniq
123
+ end
114
124
 
115
- connection.transaction do
116
- connection.add_transaction_record(self, ensure_finalize || has_transactional_callbacks?)
125
+ private
117
126
 
118
- yield.tap { raise ActiveRecord::Rollback unless _1 }
119
- end || false
127
+ # @private
128
+ def with_transaction_returning_status(&block)
129
+ procs = connection_pools.inject(block) do |inner_proc, pool|
130
+ -> do
131
+ pool.with_connection do |connection|
132
+ with_pool_transaction_isolation_level(connection) do
133
+ ensure_finalize = !connection.transaction_open?
134
+
135
+ connection.transaction do |tran|
136
+ tran ||= ActiveTransaction.new(connection.current_transaction) # steep:ignore
137
+ transaction_coordinator.add_transaction(tran)
138
+ connection.add_transaction_record(self, ensure_finalize || has_transactional_callbacks?)
139
+
140
+ inner_proc.call.tap { raise ActiveRecord::Rollback unless _1 }
141
+ end
142
+ end
143
+ end
120
144
  end
121
145
  end
146
+ procs.call || false
122
147
  end
123
148
 
149
+ # @private
150
+ def transaction_coordinator = @transaction_coordinator ||= TransactionCoordinator.new
151
+
124
152
  # @private
125
153
  def default_ar_class = ActiveRecord::Base
126
154
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ActiveRecordCompose
4
- VERSION = "1.2.1"
4
+ VERSION = "1.3.0"
5
5
  end
@@ -118,6 +118,8 @@ module ActiveRecordCompose
118
118
  include ActiveSupport::Callbacks
119
119
  extend ActiveSupport::Callbacks::ClassMethods
120
120
 
121
+ @transaction_coordinator: ActiveRecordCompose::TransactionSupport::TransactionCoordinator
122
+
121
123
  def self.before_commit: (*untyped) -> untyped
122
124
  def self.after_commit: (*untyped) -> untyped
123
125
  def self.after_rollback: (*untyped) -> untyped
@@ -127,11 +129,28 @@ module ActiveRecordCompose
127
129
  def _run_before_commit_callbacks: () -> untyped
128
130
  def _run_commit_callbacks: () -> untyped
129
131
  def _run_rollback_callbacks: () -> untyped
132
+ def connection_pools: () -> Array[ActiveRecord::ConnectionAdapters::ConnectionPool]
130
133
 
131
134
  private
135
+ def models: -> ComposedCollection
132
136
  def default_ar_class: -> singleton(ActiveRecord::Base)
133
137
  def connection_pool: (?ar_class: singleton(ActiveRecord::Base)) -> ActiveRecord::ConnectionAdapters::ConnectionPool
134
138
  def with_pool_transaction_isolation_level: [T] (ActiveRecord::ConnectionAdapters::AbstractAdapter) { () -> T } -> T
139
+ def transaction_coordinator: () -> ActiveRecordCompose::TransactionSupport::TransactionCoordinator
140
+
141
+ class TransactionCoordinator
142
+ @_before_committed_called: bool
143
+ @transactions: Set[ActiveRecord::ConnectionAdapters::Transaction]
144
+
145
+ def add_transaction: (ActiveRecord::ConnectionAdapters::Transaction) -> void
146
+ def on_after_transaction: () { () -> void } -> void
147
+ def on_before_comitted: () { () -> void } -> void
148
+
149
+ private
150
+ def all_finished?: -> bool
151
+ def transactions: () -> Set[ActiveRecord::ConnectionAdapters::Transaction]
152
+ def with_transaction_cleanup: () { () -> void } -> void
153
+ end
135
154
  end
136
155
 
137
156
  module Persistence
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: active_record_compose
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.1
4
+ version: 1.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - hamajyotan
@@ -56,6 +56,8 @@ files:
56
56
  - lib/active_record_compose/persistence.rb
57
57
  - lib/active_record_compose/railtie.rb
58
58
  - lib/active_record_compose/transaction_support.rb
59
+ - lib/active_record_compose/transaction_support/active_transaction.rb
60
+ - lib/active_record_compose/transaction_support/transaction_coordinator.rb
59
61
  - lib/active_record_compose/validations.rb
60
62
  - lib/active_record_compose/version.rb
61
63
  - lib/active_record_compose/wrapped_model.rb
@@ -84,7 +86,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
84
86
  - !ruby/object:Gem::Version
85
87
  version: '0'
86
88
  requirements: []
87
- rubygems_version: 4.0.3
89
+ rubygems_version: 4.0.16
88
90
  specification_version: 4
89
91
  summary: activemodel form object pattern
90
92
  test_files: []