composite_primary_keys 13.0.0 → 14.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. checksums.yaml +4 -4
  2. data/History.rdoc +900 -883
  3. data/README.rdoc +182 -181
  4. data/Rakefile +37 -37
  5. data/lib/composite_primary_keys/arel/sqlserver.rb +37 -37
  6. data/lib/composite_primary_keys/arel/to_sql.rb +18 -18
  7. data/lib/composite_primary_keys/associations/association.rb +23 -23
  8. data/lib/composite_primary_keys/associations/collection_association.rb +31 -31
  9. data/lib/composite_primary_keys/associations/foreign_association.rb +15 -15
  10. data/lib/composite_primary_keys/associations/has_many_association.rb +35 -35
  11. data/lib/composite_primary_keys/associations/{join_dependency.rb → join_association.rb} +137 -118
  12. data/lib/composite_primary_keys/associations/preloader/association.rb +15 -0
  13. data/lib/composite_primary_keys/associations/through_association.rb +25 -25
  14. data/lib/composite_primary_keys/autosave_association.rb +60 -60
  15. data/lib/composite_primary_keys/composite_arrays.rb +86 -86
  16. data/lib/composite_primary_keys/composite_predicates.rb +3 -1
  17. data/lib/composite_primary_keys/composite_relation.rb +29 -29
  18. data/lib/composite_primary_keys/connection_adapters/abstract_adapter.rb +10 -10
  19. data/lib/composite_primary_keys/connection_adapters/postgresql/database_statements.rb +26 -26
  20. data/lib/composite_primary_keys/counter_cache.rb +15 -15
  21. data/lib/composite_primary_keys/fixtures.rb +21 -21
  22. data/lib/composite_primary_keys/persistence.rb +96 -82
  23. data/lib/composite_primary_keys/relation/calculations.rb +110 -104
  24. data/lib/composite_primary_keys/relation.rb +2 -2
  25. data/lib/composite_primary_keys/sanitization.rb +42 -42
  26. data/lib/composite_primary_keys/transactions.rb +34 -34
  27. data/lib/composite_primary_keys/validations/uniqueness.rb +31 -31
  28. data/lib/composite_primary_keys/version.rb +8 -8
  29. data/lib/composite_primary_keys.rb +118 -118
  30. data/scripts/console.rb +48 -48
  31. data/scripts/txt2html +76 -76
  32. data/scripts/txt2js +65 -65
  33. data/tasks/databases/mysql.rake +40 -40
  34. data/tasks/databases/oracle.rake +41 -41
  35. data/tasks/databases/postgresql.rake +38 -38
  36. data/tasks/databases/sqlite.rake +25 -25
  37. data/tasks/databases/sqlserver.rake +43 -43
  38. data/tasks/website.rake +18 -18
  39. data/test/README_tests.rdoc +56 -56
  40. data/test/abstract_unit.rb +118 -114
  41. data/test/connections/connection_spec.rb +27 -27
  42. data/test/connections/databases.example.yml +40 -40
  43. data/test/connections/databases.yml +40 -39
  44. data/test/fixtures/article.rb +10 -10
  45. data/test/fixtures/articles.yml +7 -7
  46. data/test/fixtures/capitol.rb +3 -3
  47. data/test/fixtures/capitols.yml +16 -16
  48. data/test/fixtures/comment.rb +5 -5
  49. data/test/fixtures/comments.yml +17 -17
  50. data/test/fixtures/department.rb +16 -16
  51. data/test/fixtures/dorm.rb +2 -2
  52. data/test/fixtures/dorms.yml +4 -4
  53. data/test/fixtures/employee.rb +5 -5
  54. data/test/fixtures/group.rb +2 -2
  55. data/test/fixtures/groups.yml +6 -6
  56. data/test/fixtures/membership.rb +2 -0
  57. data/test/fixtures/membership_status.rb +2 -2
  58. data/test/fixtures/membership_statuses.yml +16 -16
  59. data/test/fixtures/memberships.yml +10 -10
  60. data/test/fixtures/product.rb +9 -9
  61. data/test/fixtures/product_tariff.rb +5 -5
  62. data/test/fixtures/product_tariffs.yml +14 -14
  63. data/test/fixtures/products.yml +11 -11
  64. data/test/fixtures/reading.rb +4 -4
  65. data/test/fixtures/readings.yml +10 -10
  66. data/test/fixtures/reference_code.rb +7 -7
  67. data/test/fixtures/reference_codes.yml +28 -28
  68. data/test/fixtures/reference_type.rb +12 -12
  69. data/test/fixtures/reference_types.yml +9 -9
  70. data/test/fixtures/restaurant.rb +9 -9
  71. data/test/fixtures/restaurants.yml +14 -14
  72. data/test/fixtures/restaurants_suburb.rb +2 -2
  73. data/test/fixtures/room.rb +11 -11
  74. data/test/fixtures/room_assignment.rb +13 -13
  75. data/test/fixtures/room_assignments.yml +24 -24
  76. data/test/fixtures/room_attribute.rb +2 -2
  77. data/test/fixtures/room_attribute_assignment.rb +4 -4
  78. data/test/fixtures/room_attribute_assignments.yml +4 -4
  79. data/test/fixtures/room_attributes.yml +2 -2
  80. data/test/fixtures/rooms.yml +12 -12
  81. data/test/fixtures/street.rb +2 -2
  82. data/test/fixtures/student.rb +3 -3
  83. data/test/fixtures/students.yml +15 -15
  84. data/test/fixtures/suburb.rb +5 -5
  85. data/test/fixtures/tariff.rb +5 -5
  86. data/test/fixtures/tariffs.yml +14 -14
  87. data/test/fixtures/topic_sources.yml +3 -3
  88. data/test/fixtures/topics.yml +8 -8
  89. data/test/fixtures/users.yml +10 -10
  90. data/test/plugins/pagination.rb +405 -405
  91. data/test/plugins/pagination_helper.rb +135 -135
  92. data/test/test_associations.rb +372 -364
  93. data/test/test_attribute_methods.rb +63 -63
  94. data/test/test_callbacks.rb +99 -99
  95. data/test/test_composite_arrays.rb +38 -38
  96. data/test/test_counter_cache.rb +30 -30
  97. data/test/test_delete.rb +6 -0
  98. data/test/test_dumpable.rb +15 -15
  99. data/test/test_dup.rb +37 -37
  100. data/test/test_equal.rb +26 -26
  101. data/test/test_habtm.rb +141 -141
  102. data/test/test_miscellaneous.rb +32 -32
  103. data/test/test_optimistic.rb +18 -18
  104. data/test/test_pagination.rb +35 -35
  105. data/test/test_polymorphic.rb +43 -43
  106. data/test/test_predicates.rb +59 -59
  107. data/test/test_preload.rb +102 -102
  108. data/test/test_santiago.rb +23 -23
  109. data/test/test_touch.rb +23 -23
  110. data/test/test_tutorial_example.rb +25 -25
  111. data/test/test_update.rb +6 -0
  112. data/test/test_validations.rb +13 -13
  113. metadata +13 -13
@@ -1,15 +1,15 @@
1
- # frozen_string_literal: true
2
-
3
- module ActiveRecord::Associations
4
- module ForeignAssociation # :nodoc:
5
- def foreign_key_present?
6
- if reflection.klass.primary_key
7
- # CPK
8
- # owner.attribute_present?(reflection.active_record_primary_key)
9
- Array(reflection.active_record_primary_key).all? {|key| owner.attribute_present?(key)}
10
- else
11
- false
12
- end
13
- end
14
- end
15
- end
1
+ # frozen_string_literal: true
2
+
3
+ module ActiveRecord::Associations
4
+ module ForeignAssociation # :nodoc:
5
+ def foreign_key_present?
6
+ if reflection.klass.primary_key
7
+ # CPK
8
+ # owner.attribute_present?(reflection.active_record_primary_key)
9
+ Array(reflection.active_record_primary_key).all? {|key| owner.attribute_present?(key)}
10
+ else
11
+ false
12
+ end
13
+ end
14
+ end
15
+ end
@@ -1,35 +1,35 @@
1
- module ActiveRecord
2
- module Associations
3
- class HasManyAssociation
4
- def delete_records(records, method)
5
- if method == :destroy
6
- records.each(&:destroy!)
7
- update_counter(-records.length) unless reflection.inverse_updates_counter_cache?
8
- # CPK
9
- elsif self.reflection.klass.composite?
10
- predicate = cpk_in_predicate(self.scope.table, self.reflection.klass.primary_keys, records.map(&:id))
11
- scope = self.scope.where(predicate)
12
- update_counter(-delete_count(method, scope))
13
- else
14
- scope = self.scope.where(reflection.klass.primary_key => records)
15
- update_counter(-delete_count(method, scope))
16
- end
17
- end
18
-
19
- def delete_count(method, scope)
20
- if method == :delete_all
21
- scope.delete_all
22
- else
23
- # CPK
24
- # scope.update_all(nullified_owner_attributes)
25
- conds = Array(reflection.foreign_key).inject(Hash.new) do |mem, key|
26
- mem[key] = nil
27
- mem
28
- end
29
- conds[reflection.type] = nil if reflection.type.present?
30
- scope.update_all(conds)
31
- end
32
- end
33
- end
34
- end
35
- end
1
+ module ActiveRecord
2
+ module Associations
3
+ class HasManyAssociation
4
+ def delete_records(records, method)
5
+ if method == :destroy
6
+ records.each(&:destroy!)
7
+ update_counter(-records.length) unless reflection.inverse_updates_counter_cache?
8
+ # CPK
9
+ elsif self.reflection.klass.composite?
10
+ predicate = cpk_in_predicate(self.scope.table, self.reflection.klass.primary_keys, records.map(&:id))
11
+ scope = self.scope.where(predicate)
12
+ update_counter(-delete_count(method, scope))
13
+ else
14
+ scope = self.scope.where(reflection.klass.primary_key => records)
15
+ update_counter(-delete_count(method, scope))
16
+ end
17
+ end
18
+
19
+ def delete_count(method, scope)
20
+ if method == :delete_all
21
+ scope.delete_all
22
+ else
23
+ # CPK
24
+ # scope.update_all(nullified_owner_attributes)
25
+ conds = Array(reflection.foreign_key).inject(Hash.new) do |mem, key|
26
+ mem[key] = nil
27
+ mem
28
+ end
29
+ conds[reflection.type] = nil if reflection.type.present?
30
+ scope.update_all(conds)
31
+ end
32
+ end
33
+ end
34
+ end
35
+ end
@@ -1,118 +1,137 @@
1
- module ActiveRecord
2
- module Associations
3
- class JoinDependency
4
- class Aliases # :nodoc:
5
- def column_alias(node, column)
6
- # CPK
7
- #@alias_cache[node][column]
8
- if column.kind_of?(Array)
9
- column.map do |a_column|
10
- @alias_cache[node][a_column]
11
- end
12
- else
13
- @alias_cache[node][column]
14
- end
15
- end
16
- end
17
-
18
- def instantiate(result_set, strict_loading_value, &block)
19
- primary_key = aliases.column_alias(join_root, join_root.primary_key)
20
-
21
- seen = Hash.new { |i, parent|
22
- i[parent] = Hash.new { |j, child_class|
23
- j[child_class] = {}
24
- }
25
- }.compare_by_identity
26
-
27
- model_cache = Hash.new { |h, klass| h[klass] = {} }
28
- parents = model_cache[join_root]
29
-
30
- column_aliases = aliases.column_aliases(join_root)
31
- column_names = []
32
-
33
- result_set.columns.each do |name|
34
- column_names << name unless /\At\d+_r\d+\z/.match?(name)
35
- end
36
-
37
- if column_names.empty?
38
- column_types = {}
39
- else
40
- column_types = result_set.column_types
41
- unless column_types.empty?
42
- attribute_types = join_root.attribute_types
43
- column_types = column_types.slice(*column_names).delete_if { |k, _| attribute_types.key?(k) }
44
- end
45
- column_aliases += column_names.map! { |name| Aliases::Column.new(name, name) }
46
- end
47
-
48
- message_bus = ActiveSupport::Notifications.instrumenter
49
-
50
- payload = {
51
- record_count: result_set.length,
52
- class_name: join_root.base_klass.name
53
- }
54
-
55
- message_bus.instrument("instantiation.active_record", payload) do
56
- result_set.each { |row_hash|
57
- # CPK
58
- # parent_key = primary_key ? row_hash[primary_key] : row_hash
59
- parent_key = if primary_key.kind_of?(Array)
60
- primary_key.map {|key| row_hash[key]}
61
- else
62
- primary_key ? row_hash[primary_key] : row_hash
63
- end
64
-
65
- parent = parents[parent_key] ||= join_root.instantiate(row_hash, column_aliases, column_types, &block)
66
- construct(parent, join_root, row_hash, seen, model_cache, strict_loading_value)
67
- }
68
- end
69
-
70
- parents.values
71
- end
72
-
73
- def construct(ar_parent, parent, row, seen, model_cache, strict_loading_value)
74
- return if ar_parent.nil?
75
-
76
- parent.children.each do |node|
77
- if node.reflection.collection?
78
- other = ar_parent.association(node.reflection.name)
79
- other.loaded!
80
- elsif ar_parent.association_cached?(node.reflection.name)
81
- model = ar_parent.association(node.reflection.name).target
82
- construct(model, node, row, seen, model_cache, strict_loading_value)
83
- next
84
- end
85
-
86
- key = aliases.column_alias(node, node.primary_key)
87
- # CPK
88
- if key.is_a?(Array)
89
- id = Array(key).map do |column_alias|
90
- row[column_alias]
91
- end
92
- # At least the first value in the key has to be set. Should we require all values to be set?
93
- id = nil if id.first.nil?
94
- else # original
95
- id = row[key]
96
- end
97
-
98
- if id.nil?
99
- nil_association = ar_parent.association(node.reflection.name)
100
- nil_association.loaded!
101
- next
102
- end
103
-
104
- model = seen[ar_parent][node][id]
105
-
106
- if model
107
- construct(model, node, row, seen, model_cache, strict_loading_value)
108
- else
109
- model = construct_model(ar_parent, node, row, model_cache, id, strict_loading_value)
110
-
111
- seen[ar_parent][node][id] = model
112
- construct(model, node, row, seen, model_cache, strict_loading_value)
113
- end
114
- end
115
- end
116
- end
117
- end
118
- end
1
+ module ActiveRecord
2
+ module Associations
3
+ class JoinDependency
4
+
5
+ class JoinAssociation < JoinPart # :nodoc:
6
+ private
7
+ def append_constraints(join, constraints)
8
+ if join.is_a?(Arel::Nodes::StringJoin)
9
+ join_string = Arel::Nodes::And.new(constraints.unshift join.left)
10
+ join.left = Arel.sql(base_klass.connection.visitor.compile(join_string))
11
+ else
12
+ right = join.right
13
+ # CPK
14
+ if right.expr.is_a?(Arel::Nodes::And) && right.expr.children.empty?
15
+ right.expr = Arel::Nodes::And.new(constraints)
16
+ else
17
+ right.expr = Arel::Nodes::And.new(constraints.unshift right.expr)
18
+ end
19
+ end
20
+ end
21
+ end
22
+
23
+ class Aliases # :nodoc:
24
+ def column_alias(node, column)
25
+ # CPK
26
+ #@alias_cache[node][column]
27
+ if column.kind_of?(Array)
28
+ column.map do |a_column|
29
+ @alias_cache[node][a_column]
30
+ end
31
+ else
32
+ @alias_cache[node][column]
33
+ end
34
+ end
35
+ end
36
+
37
+ def instantiate(result_set, strict_loading_value, &block)
38
+ primary_key = aliases.column_alias(join_root, join_root.primary_key)
39
+
40
+ seen = Hash.new { |i, parent|
41
+ i[parent] = Hash.new { |j, child_class|
42
+ j[child_class] = {}
43
+ }
44
+ }.compare_by_identity
45
+
46
+ model_cache = Hash.new { |h, klass| h[klass] = {} }
47
+ parents = model_cache[join_root]
48
+
49
+ column_aliases = aliases.column_aliases(join_root)
50
+ column_names = []
51
+
52
+ result_set.columns.each do |name|
53
+ column_names << name unless /\At\d+_r\d+\z/.match?(name)
54
+ end
55
+
56
+ if column_names.empty?
57
+ column_types = {}
58
+ else
59
+ column_types = result_set.column_types
60
+ unless column_types.empty?
61
+ attribute_types = join_root.attribute_types
62
+ column_types = column_types.slice(*column_names).delete_if { |k, _| attribute_types.key?(k) }
63
+ end
64
+ column_aliases += column_names.map! { |name| Aliases::Column.new(name, name) }
65
+ end
66
+
67
+ message_bus = ActiveSupport::Notifications.instrumenter
68
+
69
+ payload = {
70
+ record_count: result_set.length,
71
+ class_name: join_root.base_klass.name
72
+ }
73
+
74
+ message_bus.instrument("instantiation.active_record", payload) do
75
+ result_set.each { |row_hash|
76
+ # CPK
77
+ # parent_key = primary_key ? row_hash[primary_key] : row_hash
78
+ parent_key = if primary_key.kind_of?(Array)
79
+ primary_key.map {|key| row_hash[key]}
80
+ else
81
+ primary_key ? row_hash[primary_key] : row_hash
82
+ end
83
+
84
+ parent = parents[parent_key] ||= join_root.instantiate(row_hash, column_aliases, column_types, &block)
85
+ construct(parent, join_root, row_hash, seen, model_cache, strict_loading_value)
86
+ }
87
+ end
88
+
89
+ parents.values
90
+ end
91
+
92
+ def construct(ar_parent, parent, row, seen, model_cache, strict_loading_value)
93
+ return if ar_parent.nil?
94
+
95
+ parent.children.each do |node|
96
+ if node.reflection.collection?
97
+ other = ar_parent.association(node.reflection.name)
98
+ other.loaded!
99
+ elsif ar_parent.association_cached?(node.reflection.name)
100
+ model = ar_parent.association(node.reflection.name).target
101
+ construct(model, node, row, seen, model_cache, strict_loading_value)
102
+ next
103
+ end
104
+
105
+ key = aliases.column_alias(node, node.primary_key)
106
+ # CPK
107
+ if key.is_a?(Array)
108
+ id = Array(key).map do |column_alias|
109
+ row[column_alias]
110
+ end
111
+ # At least the first value in the key has to be set. Should we require all values to be set?
112
+ id = nil if id.first.nil?
113
+ else # original
114
+ id = row[key]
115
+ end
116
+
117
+ if id.nil?
118
+ nil_association = ar_parent.association(node.reflection.name)
119
+ nil_association.loaded!
120
+ next
121
+ end
122
+
123
+ model = seen[ar_parent][node][id]
124
+
125
+ if model
126
+ construct(model, node, row, seen, model_cache, strict_loading_value)
127
+ else
128
+ model = construct_model(ar_parent, node, row, model_cache, id, strict_loading_value)
129
+
130
+ seen[ar_parent][node][id] = model
131
+ construct(model, node, row, seen, model_cache, strict_loading_value)
132
+ end
133
+ end
134
+ end
135
+ end
136
+ end
137
+ end
@@ -2,6 +2,20 @@ module ActiveRecord
2
2
  module Associations
3
3
  class Preloader
4
4
  class Association
5
+
6
+ class LoaderQuery
7
+ def load_records_for_keys(keys, &block)
8
+ # CPK
9
+ if association_key_name.is_a?(Array)
10
+ predicate = cpk_in_predicate(scope.klass.arel_table, association_key_name, keys)
11
+ scope.where(predicate).load(&block)
12
+ else
13
+ scope.where(association_key_name => keys).load(&block)
14
+ end
15
+ end
16
+ end
17
+
18
+ # TODO: is records_for needed anymore? Rails' implementation has changed significantly
5
19
  def records_for(ids)
6
20
  records = if association_key_name.is_a?(Array)
7
21
  predicate = cpk_in_predicate(klass.arel_table, association_key_name, ids)
@@ -33,6 +47,7 @@ module ActiveRecord
33
47
  end
34
48
  end
35
49
 
50
+ # TODO: is records_by_owner needed anymore? Rails' implementation has changed significantly
36
51
  def records_by_owner
37
52
  @records_by_owner ||= preloaded_records.each_with_object({}) do |record, result|
38
53
  key = if association_key_name.is_a?(Array)
@@ -1,25 +1,25 @@
1
- module ActiveRecord
2
- module Associations
3
- module ThroughAssociation
4
- alias :original_construct_join_attributes :construct_join_attributes
5
-
6
- def construct_join_attributes(*records)
7
- # CPK
8
- is_composite = self.source_reflection.polymorphic? ? source_reflection.active_record.composite? : source_reflection.klass.composite?
9
- if is_composite
10
- ensure_mutable
11
-
12
- ids = records.map do |record|
13
- source_reflection.association_primary_key(reflection.klass).map do |key|
14
- record.send(key)
15
- end
16
- end
17
-
18
- cpk_in_predicate(through_association.scope.klass.arel_table, source_reflection.foreign_key, ids)
19
- else
20
- original_construct_join_attributes(*records)
21
- end
22
- end
23
- end
24
- end
25
- end
1
+ module ActiveRecord
2
+ module Associations
3
+ module ThroughAssociation
4
+ alias :original_construct_join_attributes :construct_join_attributes
5
+
6
+ def construct_join_attributes(*records)
7
+ # CPK
8
+ is_composite = self.source_reflection.polymorphic? ? source_reflection.active_record.composite? : source_reflection.klass.composite?
9
+ if is_composite
10
+ ensure_mutable
11
+
12
+ ids = records.map do |record|
13
+ source_reflection.association_primary_key(reflection.klass).map do |key|
14
+ record.send(key)
15
+ end
16
+ end
17
+
18
+ cpk_in_predicate(through_association.scope.klass.arel_table, source_reflection.foreign_key, ids)
19
+ else
20
+ original_construct_join_attributes(*records)
21
+ end
22
+ end
23
+ end
24
+ end
25
+ end
@@ -1,60 +1,60 @@
1
- module ActiveRecord
2
- module AutosaveAssociation
3
- def save_has_one_association(reflection)
4
- association = association_instance_get(reflection.name)
5
- record = association && association.load_target
6
-
7
- if record && !record.destroyed?
8
- autosave = reflection.options[:autosave]
9
-
10
- if autosave && record.marked_for_destruction?
11
- record.destroy
12
- elsif autosave != false
13
- # CPK
14
- #key = reflection.options[:primary_key] ? send(reflection.options[:primary_key]) : id
15
- key = reflection.options[:primary_key] ? self[reflection.options[:primary_key]] : id
16
-
17
- if (autosave && record.changed_for_autosave?) || new_record? || record_changed?(reflection, record, key)
18
- unless reflection.through_reflection
19
- record[reflection.foreign_key] = key
20
- if inverse_reflection = reflection.inverse_of
21
- record.association(inverse_reflection.name).loaded!
22
- end
23
- end
24
-
25
- saved = record.save(validate: !autosave)
26
- raise ActiveRecord::Rollback if !saved && autosave
27
- saved
28
- end
29
- end
30
- end
31
- end
32
-
33
- def save_belongs_to_association(reflection)
34
- association = association_instance_get(reflection.name)
35
- return unless association && association.loaded? && !association.stale_target?
36
-
37
- record = association.load_target
38
- if record && !record.destroyed?
39
- autosave = reflection.options[:autosave]
40
-
41
- if autosave && record.marked_for_destruction?
42
- self[reflection.foreign_key] = nil
43
- record.destroy
44
- elsif autosave != false
45
- saved = record.save(validate: !autosave) if record.new_record? || (autosave && record.changed_for_autosave?)
46
-
47
- if association.updated?
48
- # CPK
49
- # association_id = record.send(reflection.options[:primary_key] || :id)
50
- association_id = reflection.options[:primary_key] ? record[reflection.options[:primary_key]] : record.id
51
- self[reflection.foreign_key] = association_id
52
- association.loaded!
53
- end
54
-
55
- saved if autosave
56
- end
57
- end
58
- end
59
- end
60
- end
1
+ module ActiveRecord
2
+ module AutosaveAssociation
3
+ def save_has_one_association(reflection)
4
+ association = association_instance_get(reflection.name)
5
+ record = association && association.load_target
6
+
7
+ if record && !record.destroyed?
8
+ autosave = reflection.options[:autosave]
9
+
10
+ if autosave && record.marked_for_destruction?
11
+ record.destroy
12
+ elsif autosave != false
13
+ # CPK
14
+ #key = reflection.options[:primary_key] ? send(reflection.options[:primary_key]) : id
15
+ key = reflection.options[:primary_key] ? self[reflection.options[:primary_key]] : id
16
+
17
+ if (autosave && record.changed_for_autosave?) || new_record? || record_changed?(reflection, record, key)
18
+ unless reflection.through_reflection
19
+ record[reflection.foreign_key] = key
20
+ if inverse_reflection = reflection.inverse_of
21
+ record.association(inverse_reflection.name).loaded!
22
+ end
23
+ end
24
+
25
+ saved = record.save(validate: !autosave)
26
+ raise ActiveRecord::Rollback if !saved && autosave
27
+ saved
28
+ end
29
+ end
30
+ end
31
+ end
32
+
33
+ def save_belongs_to_association(reflection)
34
+ association = association_instance_get(reflection.name)
35
+ return unless association && association.loaded? && !association.stale_target?
36
+
37
+ record = association.load_target
38
+ if record && !record.destroyed?
39
+ autosave = reflection.options[:autosave]
40
+
41
+ if autosave && record.marked_for_destruction?
42
+ self[reflection.foreign_key] = nil
43
+ record.destroy
44
+ elsif autosave != false
45
+ saved = record.save(validate: !autosave) if record.new_record? || (autosave && record.changed_for_autosave?)
46
+
47
+ if association.updated?
48
+ # CPK
49
+ # association_id = record.send(reflection.options[:primary_key] || :id)
50
+ association_id = reflection.options[:primary_key] ? record[reflection.options[:primary_key]] : record.id
51
+ self[reflection.foreign_key] = association_id
52
+ association.loaded!
53
+ end
54
+
55
+ saved if autosave
56
+ end
57
+ end
58
+ end
59
+ end
60
+ end