composite_primary_keys 12.0.9 → 14.0.1
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 +4 -4
- data/History.rdoc +894 -877
- data/README.rdoc +182 -180
- data/Rakefile +37 -37
- data/lib/composite_primary_keys/active_model/attribute_assignment.rb +19 -19
- data/lib/composite_primary_keys/arel/sqlserver.rb +37 -37
- data/lib/composite_primary_keys/arel/to_sql.rb +18 -18
- data/lib/composite_primary_keys/associations/association.rb +23 -23
- data/lib/composite_primary_keys/associations/association_scope.rb +66 -68
- data/lib/composite_primary_keys/associations/collection_association.rb +31 -31
- data/lib/composite_primary_keys/associations/foreign_association.rb +15 -15
- data/lib/composite_primary_keys/associations/has_many_association.rb +35 -35
- data/lib/composite_primary_keys/associations/join_dependency.rb +137 -103
- data/lib/composite_primary_keys/associations/preloader/association.rb +68 -53
- data/lib/composite_primary_keys/associations/through_association.rb +25 -25
- data/lib/composite_primary_keys/attribute_methods/primary_key.rb +0 -2
- data/lib/composite_primary_keys/attribute_methods/read.rb +30 -30
- data/lib/composite_primary_keys/attribute_methods/write.rb +35 -35
- data/lib/composite_primary_keys/attribute_methods.rb +21 -9
- data/lib/composite_primary_keys/autosave_association.rb +60 -60
- data/lib/composite_primary_keys/base.rb +141 -141
- data/lib/composite_primary_keys/composite_arrays.rb +86 -86
- data/lib/composite_primary_keys/composite_predicates.rb +71 -69
- data/lib/composite_primary_keys/composite_relation.rb +29 -29
- data/lib/composite_primary_keys/connection_adapters/abstract/database_statements.rb +37 -37
- data/lib/composite_primary_keys/connection_adapters/abstract_adapter.rb +10 -10
- data/lib/composite_primary_keys/connection_adapters/postgresql/database_statements.rb +26 -26
- data/lib/composite_primary_keys/connection_adapters/sqlserver/database_statements.rb +44 -44
- data/lib/composite_primary_keys/core.rb +48 -48
- data/lib/composite_primary_keys/counter_cache.rb +15 -15
- data/lib/composite_primary_keys/fixtures.rb +21 -21
- data/lib/composite_primary_keys/nested_attributes.rb +1 -1
- data/lib/composite_primary_keys/persistence.rb +96 -81
- data/lib/composite_primary_keys/reflection.rb +91 -29
- data/lib/composite_primary_keys/relation/batches.rb +15 -7
- data/lib/composite_primary_keys/relation/calculations.rb +110 -81
- data/lib/composite_primary_keys/relation/finder_methods.rb +235 -235
- data/lib/composite_primary_keys/relation/predicate_builder/association_query_value.rb +39 -20
- data/lib/composite_primary_keys/relation/query_methods.rb +42 -42
- data/lib/composite_primary_keys/relation/where_clause.rb +18 -23
- data/lib/composite_primary_keys/relation.rb +197 -193
- data/lib/composite_primary_keys/sanitization.rb +42 -42
- data/lib/composite_primary_keys/table_metadata.rb +11 -0
- data/lib/composite_primary_keys/transactions.rb +34 -34
- data/lib/composite_primary_keys/validations/uniqueness.rb +31 -31
- data/lib/composite_primary_keys/version.rb +8 -8
- data/lib/composite_primary_keys.rb +119 -117
- data/scripts/console.rb +48 -48
- data/scripts/txt2html +76 -76
- data/scripts/txt2js +65 -65
- data/tasks/databases/mysql.rake +40 -40
- data/tasks/databases/oracle.rake +41 -41
- data/tasks/databases/postgresql.rake +38 -38
- data/tasks/databases/sqlite.rake +25 -25
- data/tasks/databases/sqlserver.rake +43 -43
- data/tasks/website.rake +18 -18
- data/test/README_tests.rdoc +56 -56
- data/test/abstract_unit.rb +118 -114
- data/test/connections/connection_spec.rb +27 -27
- data/test/connections/databases.ci.yml +22 -22
- data/test/connections/databases.example.yml +40 -40
- data/test/connections/databases.yml +40 -39
- data/test/fixtures/article.rb +10 -10
- data/test/fixtures/articles.yml +7 -7
- data/test/fixtures/capitol.rb +3 -3
- data/test/fixtures/capitols.yml +16 -16
- data/test/fixtures/comment.rb +5 -5
- data/test/fixtures/comments.yml +17 -17
- data/test/fixtures/db_definitions/db2-create-tables.sql +112 -112
- data/test/fixtures/db_definitions/db2-drop-tables.sql +16 -16
- data/test/fixtures/db_definitions/mysql.sql +180 -180
- data/test/fixtures/db_definitions/oracle.drop.sql +41 -41
- data/test/fixtures/db_definitions/oracle.sql +199 -199
- data/test/fixtures/db_definitions/postgresql.sql +182 -182
- data/test/fixtures/db_definitions/sqlite.sql +169 -169
- data/test/fixtures/db_definitions/sqlserver.sql +176 -176
- data/test/fixtures/department.rb +16 -16
- data/test/fixtures/departments.yml +19 -15
- data/test/fixtures/dorm.rb +2 -2
- data/test/fixtures/dorms.yml +4 -4
- data/test/fixtures/employee.rb +5 -5
- data/test/fixtures/employees.yml +33 -28
- data/test/fixtures/group.rb +2 -2
- data/test/fixtures/groups.yml +6 -6
- data/test/fixtures/membership.rb +8 -6
- data/test/fixtures/membership_status.rb +2 -2
- data/test/fixtures/membership_statuses.yml +16 -16
- data/test/fixtures/memberships.yml +10 -10
- data/test/fixtures/product.rb +9 -9
- data/test/fixtures/product_tariff.rb +5 -5
- data/test/fixtures/product_tariffs.yml +14 -14
- data/test/fixtures/products.yml +11 -11
- data/test/fixtures/reading.rb +4 -4
- data/test/fixtures/readings.yml +10 -10
- data/test/fixtures/reference_code.rb +7 -7
- data/test/fixtures/reference_codes.yml +28 -28
- data/test/fixtures/reference_type.rb +12 -12
- data/test/fixtures/reference_types.yml +9 -9
- data/test/fixtures/restaurant.rb +9 -9
- data/test/fixtures/restaurants.yml +14 -14
- data/test/fixtures/restaurants_suburb.rb +2 -2
- data/test/fixtures/restaurants_suburbs.yml +10 -10
- data/test/fixtures/room.rb +11 -11
- data/test/fixtures/room_assignment.rb +13 -13
- data/test/fixtures/room_assignments.yml +24 -24
- data/test/fixtures/room_attribute.rb +2 -2
- data/test/fixtures/room_attribute_assignment.rb +4 -4
- data/test/fixtures/room_attribute_assignments.yml +4 -4
- data/test/fixtures/room_attributes.yml +2 -2
- data/test/fixtures/rooms.yml +12 -12
- data/test/fixtures/street.rb +2 -2
- data/test/fixtures/streets.yml +16 -16
- data/test/fixtures/student.rb +3 -3
- data/test/fixtures/students.yml +15 -15
- data/test/fixtures/suburb.rb +5 -5
- data/test/fixtures/suburbs.yml +14 -14
- data/test/fixtures/tariff.rb +5 -5
- data/test/fixtures/tariffs.yml +14 -14
- data/test/fixtures/topic_sources.yml +3 -3
- data/test/fixtures/topics.yml +8 -8
- data/test/fixtures/user.rb +11 -11
- data/test/fixtures/users.yml +10 -10
- data/test/plugins/pagination.rb +405 -405
- data/test/plugins/pagination_helper.rb +135 -135
- data/test/test_associations.rb +372 -358
- data/test/test_attribute_methods.rb +63 -63
- data/test/test_attributes.rb +75 -60
- data/test/test_calculations.rb +49 -42
- data/test/test_callbacks.rb +99 -99
- data/test/test_composite_arrays.rb +38 -38
- data/test/test_counter_cache.rb +30 -30
- data/test/test_create.rb +218 -206
- data/test/test_delete.rb +188 -179
- data/test/test_dumpable.rb +15 -15
- data/test/test_dup.rb +37 -37
- data/test/test_equal.rb +26 -26
- data/test/test_exists.rb +39 -39
- data/test/test_find.rb +170 -164
- data/test/test_habtm.rb +141 -141
- data/test/test_ids.rb +112 -112
- data/test/test_miscellaneous.rb +32 -32
- data/test/test_nested_attributes.rb +67 -67
- data/test/test_optimistic.rb +18 -18
- data/test/test_pagination.rb +35 -35
- data/test/test_polymorphic.rb +43 -43
- data/test/test_predicates.rb +59 -59
- data/test/test_preload.rb +102 -102
- data/test/test_santiago.rb +23 -23
- data/test/test_touch.rb +23 -23
- data/test/test_tutorial_example.rb +25 -25
- data/test/test_update.rb +102 -96
- data/test/test_validations.rb +13 -13
- metadata +7 -6
|
@@ -1,69 +1,67 @@
|
|
|
1
|
-
module ActiveRecord
|
|
2
|
-
module Associations
|
|
3
|
-
class AssociationScope
|
|
4
|
-
def self.get_bind_values(owner, chain)
|
|
5
|
-
binds = []
|
|
6
|
-
last_reflection = chain.last
|
|
7
|
-
|
|
8
|
-
# CPK
|
|
9
|
-
# binds << last_reflection.join_id_for(owner)
|
|
10
|
-
values = last_reflection.join_id_for(owner)
|
|
11
|
-
binds += Array(values)
|
|
12
|
-
|
|
13
|
-
if last_reflection.type
|
|
14
|
-
binds << owner.class.polymorphic_name
|
|
15
|
-
end
|
|
16
|
-
|
|
17
|
-
chain.each_cons(2).each do |reflection, next_reflection|
|
|
18
|
-
if reflection.type
|
|
19
|
-
binds << next_reflection.klass.polymorphic_name
|
|
20
|
-
end
|
|
21
|
-
end
|
|
22
|
-
binds
|
|
23
|
-
end
|
|
24
|
-
|
|
25
|
-
def last_chain_scope(scope, reflection, owner)
|
|
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
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
end
|
|
68
|
-
end
|
|
1
|
+
module ActiveRecord
|
|
2
|
+
module Associations
|
|
3
|
+
class AssociationScope
|
|
4
|
+
def self.get_bind_values(owner, chain)
|
|
5
|
+
binds = []
|
|
6
|
+
last_reflection = chain.last
|
|
7
|
+
|
|
8
|
+
# CPK
|
|
9
|
+
# binds << last_reflection.join_id_for(owner)
|
|
10
|
+
values = last_reflection.join_id_for(owner)
|
|
11
|
+
binds += Array(values)
|
|
12
|
+
|
|
13
|
+
if last_reflection.type
|
|
14
|
+
binds << owner.class.polymorphic_name
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
chain.each_cons(2).each do |reflection, next_reflection|
|
|
18
|
+
if reflection.type
|
|
19
|
+
binds << next_reflection.klass.polymorphic_name
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
binds
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
def last_chain_scope(scope, reflection, owner)
|
|
26
|
+
key = reflection.join_primary_key
|
|
27
|
+
foreign_key = reflection.join_foreign_key
|
|
28
|
+
|
|
29
|
+
table = reflection.aliased_table
|
|
30
|
+
|
|
31
|
+
# CPK
|
|
32
|
+
# value = transform_value(owner[foreign_key])
|
|
33
|
+
# scope = apply_scope(scope, table, key, value)
|
|
34
|
+
Array(key).zip(Array(foreign_key)).each do |a_join_key, a_foreign_key|
|
|
35
|
+
value = transform_value(owner[a_foreign_key])
|
|
36
|
+
scope = apply_scope(scope, table, a_join_key, value)
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
if reflection.type
|
|
40
|
+
polymorphic_type = transform_value(owner.class.polymorphic_name)
|
|
41
|
+
scope = apply_scope(scope, table, reflection.type, polymorphic_type)
|
|
42
|
+
end
|
|
43
|
+
|
|
44
|
+
scope
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
def next_chain_scope(scope, reflection, next_reflection)
|
|
48
|
+
key = reflection.join_primary_key
|
|
49
|
+
foreign_key = reflection.join_foreign_key
|
|
50
|
+
|
|
51
|
+
table = reflection.aliased_table
|
|
52
|
+
foreign_table = next_reflection.aliased_table
|
|
53
|
+
|
|
54
|
+
# CPK
|
|
55
|
+
# constraint = table[key].eq(foreign_table[foreign_key])
|
|
56
|
+
constraint = cpk_join_predicate(table, key, foreign_table, foreign_key)
|
|
57
|
+
|
|
58
|
+
if reflection.type
|
|
59
|
+
value = transform_value(next_reflection.klass.polymorphic_name)
|
|
60
|
+
scope = apply_scope(scope, table, reflection.type, value)
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
scope.joins!(join(foreign_table, constraint))
|
|
64
|
+
end
|
|
65
|
+
end
|
|
66
|
+
end
|
|
69
67
|
end
|
|
@@ -1,32 +1,32 @@
|
|
|
1
|
-
module CompositePrimaryKeys
|
|
2
|
-
module CollectionAssociation
|
|
3
|
-
def ids_writer(ids)
|
|
4
|
-
primary_key = reflection.association_primary_key
|
|
5
|
-
pk_type = klass.type_for_attribute(primary_key)
|
|
6
|
-
ids = Array(ids).reject(&:blank?)
|
|
7
|
-
ids.map! { |i| pk_type.cast(i) }
|
|
8
|
-
|
|
9
|
-
# CPK-
|
|
10
|
-
if primary_key.is_a?(Array)
|
|
11
|
-
predicate = CompositePrimaryKeys::Predicates.cpk_in_predicate(klass.arel_table, reflection.association_primary_key, ids)
|
|
12
|
-
records = klass.where(predicate).index_by do |r|
|
|
13
|
-
reflection.association_primary_key.map{ |k| r.send(k) }
|
|
14
|
-
end.values_at(*ids)
|
|
15
|
-
else
|
|
16
|
-
records = klass.where(primary_key => ids).index_by do |r|
|
|
17
|
-
r.public_send(primary_key)
|
|
18
|
-
end.values_at(*ids).compact
|
|
19
|
-
end
|
|
20
|
-
|
|
21
|
-
if records.size != ids.size
|
|
22
|
-
found_ids = records.map { |record| record.public_send(primary_key) }
|
|
23
|
-
not_found_ids = ids - found_ids
|
|
24
|
-
klass.all.raise_record_not_found_exception!(ids, records.size, ids.size, primary_key, not_found_ids)
|
|
25
|
-
else
|
|
26
|
-
replace(records)
|
|
27
|
-
end
|
|
28
|
-
end
|
|
29
|
-
end
|
|
30
|
-
end
|
|
31
|
-
|
|
1
|
+
module CompositePrimaryKeys
|
|
2
|
+
module CollectionAssociation
|
|
3
|
+
def ids_writer(ids)
|
|
4
|
+
primary_key = reflection.association_primary_key
|
|
5
|
+
pk_type = klass.type_for_attribute(primary_key)
|
|
6
|
+
ids = Array(ids).reject(&:blank?)
|
|
7
|
+
ids.map! { |i| pk_type.cast(i) }
|
|
8
|
+
|
|
9
|
+
# CPK-
|
|
10
|
+
if primary_key.is_a?(Array)
|
|
11
|
+
predicate = CompositePrimaryKeys::Predicates.cpk_in_predicate(klass.arel_table, reflection.association_primary_key, ids)
|
|
12
|
+
records = klass.where(predicate).index_by do |r|
|
|
13
|
+
reflection.association_primary_key.map{ |k| r.send(k) }
|
|
14
|
+
end.values_at(*ids)
|
|
15
|
+
else
|
|
16
|
+
records = klass.where(primary_key => ids).index_by do |r|
|
|
17
|
+
r.public_send(primary_key)
|
|
18
|
+
end.values_at(*ids).compact
|
|
19
|
+
end
|
|
20
|
+
|
|
21
|
+
if records.size != ids.size
|
|
22
|
+
found_ids = records.map { |record| record.public_send(primary_key) }
|
|
23
|
+
not_found_ids = ids - found_ids
|
|
24
|
+
klass.all.raise_record_not_found_exception!(ids, records.size, ids.size, primary_key, not_found_ids)
|
|
25
|
+
else
|
|
26
|
+
replace(records)
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
|
|
32
32
|
ActiveRecord::Associations::CollectionAssociation.prepend CompositePrimaryKeys::CollectionAssociation
|
|
@@ -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,103 +1,137 @@
|
|
|
1
|
-
module ActiveRecord
|
|
2
|
-
module Associations
|
|
3
|
-
class JoinDependency
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
#
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
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.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
|