activerecord 6.1.7.4 → 7.0.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1449 -1014
- data/README.rdoc +3 -3
- data/lib/active_record/aggregations.rb +1 -1
- data/lib/active_record/association_relation.rb +0 -10
- data/lib/active_record/associations/association.rb +33 -17
- data/lib/active_record/associations/association_scope.rb +1 -3
- data/lib/active_record/associations/belongs_to_association.rb +15 -4
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +10 -2
- data/lib/active_record/associations/builder/association.rb +8 -2
- data/lib/active_record/associations/builder/belongs_to.rb +19 -6
- data/lib/active_record/associations/builder/collection_association.rb +10 -3
- data/lib/active_record/associations/builder/has_many.rb +3 -2
- data/lib/active_record/associations/builder/has_one.rb +2 -1
- data/lib/active_record/associations/builder/singular_association.rb +2 -2
- data/lib/active_record/associations/collection_association.rb +19 -21
- data/lib/active_record/associations/collection_proxy.rb +10 -5
- data/lib/active_record/associations/disable_joins_association_scope.rb +59 -0
- data/lib/active_record/associations/has_many_association.rb +8 -5
- data/lib/active_record/associations/has_many_through_association.rb +2 -1
- data/lib/active_record/associations/has_one_association.rb +14 -7
- data/lib/active_record/associations/has_one_through_association.rb +1 -1
- data/lib/active_record/associations/join_dependency.rb +23 -15
- data/lib/active_record/associations/preloader/association.rb +186 -52
- data/lib/active_record/associations/preloader/batch.rb +48 -0
- data/lib/active_record/associations/preloader/branch.rb +147 -0
- data/lib/active_record/associations/preloader/through_association.rb +50 -14
- data/lib/active_record/associations/preloader.rb +39 -113
- data/lib/active_record/associations/singular_association.rb +15 -7
- data/lib/active_record/associations/through_association.rb +3 -3
- data/lib/active_record/associations.rb +138 -100
- data/lib/active_record/asynchronous_queries_tracker.rb +60 -0
- data/lib/active_record/attribute_assignment.rb +1 -1
- data/lib/active_record/attribute_methods/before_type_cast.rb +7 -2
- data/lib/active_record/attribute_methods/dirty.rb +49 -16
- data/lib/active_record/attribute_methods/primary_key.rb +2 -2
- data/lib/active_record/attribute_methods/query.rb +2 -2
- data/lib/active_record/attribute_methods/read.rb +8 -6
- data/lib/active_record/attribute_methods/serialization.rb +57 -19
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +4 -3
- data/lib/active_record/attribute_methods/write.rb +7 -10
- data/lib/active_record/attribute_methods.rb +19 -22
- data/lib/active_record/attributes.rb +24 -35
- data/lib/active_record/autosave_association.rb +17 -28
- data/lib/active_record/base.rb +19 -1
- data/lib/active_record/callbacks.rb +14 -16
- data/lib/active_record/coders/yaml_column.rb +4 -8
- data/lib/active_record/connection_adapters/abstract/connection_handler.rb +292 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool/queue.rb +209 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb +76 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +47 -561
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +0 -17
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +46 -22
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +24 -12
- data/lib/active_record/connection_adapters/abstract/quoting.rb +42 -72
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +4 -17
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +52 -23
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +14 -1
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +82 -25
- data/lib/active_record/connection_adapters/abstract/transaction.rb +15 -22
- data/lib/active_record/connection_adapters/abstract_adapter.rb +153 -74
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +112 -84
- data/lib/active_record/connection_adapters/column.rb +4 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +36 -24
- data/lib/active_record/connection_adapters/mysql/quoting.rb +45 -21
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +4 -1
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +7 -1
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +20 -1
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +12 -6
- data/lib/active_record/connection_adapters/pool_config.rb +7 -7
- data/lib/active_record/connection_adapters/postgresql/column.rb +19 -1
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +20 -17
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +8 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +5 -0
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +53 -14
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +1 -1
- data/lib/active_record/connection_adapters/postgresql/oid/timestamp.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/timestamp_with_time_zone.rb +30 -0
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +18 -6
- data/lib/active_record/connection_adapters/postgresql/oid.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +71 -71
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +34 -0
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +21 -1
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +22 -1
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +25 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +40 -21
- data/lib/active_record/connection_adapters/postgresql/utils.rb +9 -10
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +207 -106
- data/lib/active_record/connection_adapters/schema_cache.rb +39 -38
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +25 -19
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +28 -16
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +17 -15
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +97 -32
- data/lib/active_record/connection_adapters.rb +6 -5
- data/lib/active_record/connection_handling.rb +49 -55
- data/lib/active_record/core.rb +123 -148
- data/lib/active_record/database_configurations/connection_url_resolver.rb +2 -1
- data/lib/active_record/database_configurations/database_config.rb +12 -9
- data/lib/active_record/database_configurations/hash_config.rb +63 -5
- data/lib/active_record/database_configurations/url_config.rb +2 -2
- data/lib/active_record/database_configurations.rb +15 -32
- data/lib/active_record/delegated_type.rb +53 -12
- data/lib/active_record/destroy_association_async_job.rb +1 -1
- data/lib/active_record/disable_joins_association_relation.rb +39 -0
- data/lib/active_record/dynamic_matchers.rb +1 -1
- data/lib/active_record/encryption/cipher/aes256_gcm.rb +98 -0
- data/lib/active_record/encryption/cipher.rb +53 -0
- data/lib/active_record/encryption/config.rb +44 -0
- data/lib/active_record/encryption/configurable.rb +67 -0
- data/lib/active_record/encryption/context.rb +35 -0
- data/lib/active_record/encryption/contexts.rb +72 -0
- data/lib/active_record/encryption/derived_secret_key_provider.rb +12 -0
- data/lib/active_record/encryption/deterministic_key_provider.rb +14 -0
- data/lib/active_record/encryption/encryptable_record.rb +206 -0
- data/lib/active_record/encryption/encrypted_attribute_type.rb +140 -0
- data/lib/active_record/encryption/encrypted_fixtures.rb +38 -0
- data/lib/active_record/encryption/encrypting_only_encryptor.rb +12 -0
- data/lib/active_record/encryption/encryptor.rb +155 -0
- data/lib/active_record/encryption/envelope_encryption_key_provider.rb +55 -0
- data/lib/active_record/encryption/errors.rb +15 -0
- data/lib/active_record/encryption/extended_deterministic_queries.rb +160 -0
- data/lib/active_record/encryption/extended_deterministic_uniqueness_validator.rb +28 -0
- data/lib/active_record/encryption/key.rb +28 -0
- data/lib/active_record/encryption/key_generator.rb +42 -0
- data/lib/active_record/encryption/key_provider.rb +46 -0
- data/lib/active_record/encryption/message.rb +33 -0
- data/lib/active_record/encryption/message_serializer.rb +90 -0
- data/lib/active_record/encryption/null_encryptor.rb +21 -0
- data/lib/active_record/encryption/properties.rb +76 -0
- data/lib/active_record/encryption/read_only_null_encryptor.rb +24 -0
- data/lib/active_record/encryption/scheme.rb +99 -0
- data/lib/active_record/encryption.rb +55 -0
- data/lib/active_record/enum.rb +50 -43
- data/lib/active_record/errors.rb +67 -4
- data/lib/active_record/explain_registry.rb +11 -6
- data/lib/active_record/explain_subscriber.rb +1 -1
- data/lib/active_record/fixture_set/file.rb +15 -1
- data/lib/active_record/fixture_set/table_row.rb +41 -6
- data/lib/active_record/fixture_set/table_rows.rb +4 -4
- data/lib/active_record/fixtures.rb +20 -23
- data/lib/active_record/future_result.rb +139 -0
- data/lib/active_record/gem_version.rb +5 -5
- data/lib/active_record/inheritance.rb +55 -17
- data/lib/active_record/insert_all.rb +80 -14
- data/lib/active_record/integration.rb +4 -3
- data/lib/active_record/internal_metadata.rb +1 -5
- data/lib/active_record/legacy_yaml_adapter.rb +2 -39
- data/lib/active_record/locking/optimistic.rb +36 -21
- data/lib/active_record/locking/pessimistic.rb +10 -4
- data/lib/active_record/log_subscriber.rb +23 -7
- data/lib/active_record/middleware/database_selector/resolver.rb +6 -10
- data/lib/active_record/middleware/database_selector.rb +18 -6
- data/lib/active_record/middleware/shard_selector.rb +60 -0
- data/lib/active_record/migration/command_recorder.rb +8 -9
- data/lib/active_record/migration/compatibility.rb +91 -2
- data/lib/active_record/migration/join_table.rb +1 -1
- data/lib/active_record/migration.rb +115 -84
- data/lib/active_record/model_schema.rb +58 -59
- data/lib/active_record/nested_attributes.rb +13 -12
- data/lib/active_record/no_touching.rb +3 -3
- data/lib/active_record/null_relation.rb +2 -6
- data/lib/active_record/persistence.rb +228 -60
- data/lib/active_record/query_cache.rb +2 -2
- data/lib/active_record/query_logs.rb +149 -0
- data/lib/active_record/querying.rb +16 -6
- data/lib/active_record/railtie.rb +136 -22
- data/lib/active_record/railties/controller_runtime.rb +1 -1
- data/lib/active_record/railties/databases.rake +78 -136
- data/lib/active_record/readonly_attributes.rb +11 -0
- data/lib/active_record/reflection.rb +80 -49
- data/lib/active_record/relation/batches/batch_enumerator.rb +19 -5
- data/lib/active_record/relation/batches.rb +6 -6
- data/lib/active_record/relation/calculations.rb +92 -60
- data/lib/active_record/relation/delegation.rb +7 -7
- data/lib/active_record/relation/finder_methods.rb +31 -35
- data/lib/active_record/relation/merger.rb +20 -13
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +20 -1
- data/lib/active_record/relation/predicate_builder.rb +2 -6
- data/lib/active_record/relation/query_attribute.rb +5 -11
- data/lib/active_record/relation/query_methods.rb +285 -68
- data/lib/active_record/relation/record_fetch_warning.rb +7 -9
- data/lib/active_record/relation/spawn_methods.rb +2 -2
- data/lib/active_record/relation/where_clause.rb +10 -19
- data/lib/active_record/relation.rb +189 -88
- data/lib/active_record/result.rb +23 -11
- data/lib/active_record/runtime_registry.rb +9 -13
- data/lib/active_record/sanitization.rb +17 -12
- data/lib/active_record/schema.rb +38 -23
- data/lib/active_record/schema_dumper.rb +29 -19
- data/lib/active_record/schema_migration.rb +4 -4
- data/lib/active_record/scoping/default.rb +60 -13
- data/lib/active_record/scoping/named.rb +3 -11
- data/lib/active_record/scoping.rb +64 -34
- data/lib/active_record/serialization.rb +6 -1
- data/lib/active_record/signed_id.rb +3 -3
- data/lib/active_record/store.rb +2 -2
- data/lib/active_record/suppressor.rb +11 -15
- data/lib/active_record/table_metadata.rb +5 -1
- data/lib/active_record/tasks/database_tasks.rb +127 -60
- data/lib/active_record/tasks/mysql_database_tasks.rb +1 -1
- data/lib/active_record/tasks/postgresql_database_tasks.rb +19 -13
- data/lib/active_record/test_databases.rb +1 -1
- data/lib/active_record/test_fixtures.rb +9 -6
- data/lib/active_record/timestamp.rb +3 -4
- data/lib/active_record/transactions.rb +9 -14
- data/lib/active_record/translation.rb +3 -3
- data/lib/active_record/type/adapter_specific_registry.rb +32 -7
- data/lib/active_record/type/hash_lookup_type_map.rb +34 -1
- data/lib/active_record/type/internal/timezone.rb +2 -2
- data/lib/active_record/type/serialized.rb +5 -5
- data/lib/active_record/type/type_map.rb +17 -20
- data/lib/active_record/type.rb +1 -2
- data/lib/active_record/validations/associated.rb +4 -4
- data/lib/active_record/validations/presence.rb +2 -2
- data/lib/active_record/validations/uniqueness.rb +4 -4
- data/lib/active_record/version.rb +1 -1
- data/lib/active_record.rb +225 -27
- data/lib/arel/attributes/attribute.rb +0 -8
- data/lib/arel/crud.rb +28 -22
- data/lib/arel/delete_manager.rb +18 -4
- data/lib/arel/filter_predications.rb +9 -0
- data/lib/arel/insert_manager.rb +2 -3
- data/lib/arel/nodes/casted.rb +1 -1
- data/lib/arel/nodes/delete_statement.rb +12 -13
- data/lib/arel/nodes/filter.rb +10 -0
- data/lib/arel/nodes/function.rb +1 -0
- data/lib/arel/nodes/insert_statement.rb +2 -2
- data/lib/arel/nodes/select_core.rb +2 -2
- data/lib/arel/nodes/select_statement.rb +2 -2
- data/lib/arel/nodes/update_statement.rb +8 -3
- data/lib/arel/nodes.rb +1 -0
- data/lib/arel/predications.rb +11 -3
- data/lib/arel/select_manager.rb +10 -4
- data/lib/arel/table.rb +0 -1
- data/lib/arel/tree_manager.rb +0 -12
- data/lib/arel/update_manager.rb +18 -4
- data/lib/arel/visitors/dot.rb +80 -90
- data/lib/arel/visitors/mysql.rb +8 -2
- data/lib/arel/visitors/postgresql.rb +0 -10
- data/lib/arel/visitors/to_sql.rb +58 -2
- data/lib/arel.rb +2 -1
- data/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +1 -1
- data/lib/rails/generators/active_record/model/templates/abstract_base_class.rb.tt +1 -1
- data/lib/rails/generators/active_record/model/templates/model.rb.tt +1 -1
- data/lib/rails/generators/active_record/model/templates/module.rb.tt +2 -2
- data/lib/rails/generators/active_record/multi_db/multi_db_generator.rb +16 -0
- data/lib/rails/generators/active_record/multi_db/templates/multi_db.rb.tt +44 -0
- metadata +58 -14
@@ -0,0 +1,147 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveRecord
|
4
|
+
module Associations
|
5
|
+
class Preloader
|
6
|
+
class Branch # :nodoc:
|
7
|
+
attr_reader :association, :children, :parent
|
8
|
+
attr_reader :scope, :associate_by_default
|
9
|
+
attr_writer :preloaded_records
|
10
|
+
|
11
|
+
def initialize(association:, children:, parent:, associate_by_default:, scope:)
|
12
|
+
@association = association
|
13
|
+
@parent = parent
|
14
|
+
@scope = scope
|
15
|
+
@associate_by_default = associate_by_default
|
16
|
+
|
17
|
+
@children = build_children(children)
|
18
|
+
@loaders = nil
|
19
|
+
end
|
20
|
+
|
21
|
+
def future_classes
|
22
|
+
(immediate_future_classes + children.flat_map(&:future_classes)).uniq
|
23
|
+
end
|
24
|
+
|
25
|
+
def immediate_future_classes
|
26
|
+
if parent.done?
|
27
|
+
loaders.flat_map(&:future_classes).uniq
|
28
|
+
else
|
29
|
+
likely_reflections.reject(&:polymorphic?).flat_map do |reflection|
|
30
|
+
reflection.
|
31
|
+
chain.
|
32
|
+
map(&:klass)
|
33
|
+
end.uniq
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
def target_classes
|
38
|
+
if done?
|
39
|
+
preloaded_records.map(&:klass).uniq
|
40
|
+
elsif parent.done?
|
41
|
+
loaders.map(&:klass).uniq
|
42
|
+
else
|
43
|
+
likely_reflections.reject(&:polymorphic?).map(&:klass).uniq
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def likely_reflections
|
48
|
+
parent_classes = parent.target_classes
|
49
|
+
parent_classes.filter_map do |parent_klass|
|
50
|
+
parent_klass._reflect_on_association(@association)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def root?
|
55
|
+
parent.nil?
|
56
|
+
end
|
57
|
+
|
58
|
+
def source_records
|
59
|
+
@parent.preloaded_records
|
60
|
+
end
|
61
|
+
|
62
|
+
def preloaded_records
|
63
|
+
@preloaded_records ||= loaders.flat_map(&:preloaded_records)
|
64
|
+
end
|
65
|
+
|
66
|
+
def done?
|
67
|
+
root? || (@loaders && @loaders.all?(&:run?))
|
68
|
+
end
|
69
|
+
|
70
|
+
def runnable_loaders
|
71
|
+
loaders.flat_map(&:runnable_loaders).reject(&:run?)
|
72
|
+
end
|
73
|
+
|
74
|
+
def grouped_records
|
75
|
+
h = {}
|
76
|
+
polymorphic_parent = !root? && parent.polymorphic?
|
77
|
+
source_records.each do |record|
|
78
|
+
reflection = record.class._reflect_on_association(association)
|
79
|
+
next if polymorphic_parent && !reflection || !record.association(association).klass
|
80
|
+
(h[reflection] ||= []) << record
|
81
|
+
end
|
82
|
+
h
|
83
|
+
end
|
84
|
+
|
85
|
+
def preloaders_for_reflection(reflection, reflection_records)
|
86
|
+
reflection_records.group_by do |record|
|
87
|
+
klass = record.association(association).klass
|
88
|
+
|
89
|
+
if reflection.scope && reflection.scope.arity != 0
|
90
|
+
# For instance dependent scopes, the scope is potentially
|
91
|
+
# different for each record. To allow this we'll group each
|
92
|
+
# object separately into its own preloader
|
93
|
+
reflection_scope = reflection.join_scopes(klass.arel_table, klass.predicate_builder, klass, record).inject(&:merge!)
|
94
|
+
end
|
95
|
+
|
96
|
+
[klass, reflection_scope]
|
97
|
+
end.map do |(rhs_klass, reflection_scope), rs|
|
98
|
+
preloader_for(reflection).new(rhs_klass, rs, reflection, scope, reflection_scope, associate_by_default)
|
99
|
+
end
|
100
|
+
end
|
101
|
+
|
102
|
+
def polymorphic?
|
103
|
+
return false if root?
|
104
|
+
return @polymorphic if defined?(@polymorphic)
|
105
|
+
|
106
|
+
@polymorphic = source_records.any? do |record|
|
107
|
+
reflection = record.class._reflect_on_association(association)
|
108
|
+
reflection && reflection.options[:polymorphic]
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
def loaders
|
113
|
+
@loaders ||=
|
114
|
+
grouped_records.flat_map do |reflection, reflection_records|
|
115
|
+
preloaders_for_reflection(reflection, reflection_records)
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
private
|
120
|
+
def build_children(children)
|
121
|
+
Array.wrap(children).flat_map { |association|
|
122
|
+
Array(association).flat_map { |parent, child|
|
123
|
+
Branch.new(
|
124
|
+
parent: self,
|
125
|
+
association: parent,
|
126
|
+
children: child,
|
127
|
+
associate_by_default: associate_by_default,
|
128
|
+
scope: scope
|
129
|
+
)
|
130
|
+
}
|
131
|
+
}
|
132
|
+
end
|
133
|
+
|
134
|
+
# Returns a class containing the logic needed to load preload the data
|
135
|
+
# and attach it to a relation. The class returned implements a `run` method
|
136
|
+
# that accepts a preloader.
|
137
|
+
def preloader_for(reflection)
|
138
|
+
if reflection.options[:through]
|
139
|
+
ThroughAssociation
|
140
|
+
else
|
141
|
+
Association
|
142
|
+
end
|
143
|
+
end
|
144
|
+
end
|
145
|
+
end
|
146
|
+
end
|
147
|
+
end
|
@@ -4,26 +4,22 @@ module ActiveRecord
|
|
4
4
|
module Associations
|
5
5
|
class Preloader
|
6
6
|
class ThroughAssociation < Association # :nodoc:
|
7
|
-
PRELOADER = ActiveRecord::Associations::Preloader.new(associate_by_default: false)
|
8
|
-
|
9
|
-
def initialize(*)
|
10
|
-
super
|
11
|
-
@already_loaded = owners.first.association(through_reflection.name).loaded?
|
12
|
-
end
|
13
|
-
|
14
7
|
def preloaded_records
|
15
8
|
@preloaded_records ||= source_preloaders.flat_map(&:preloaded_records)
|
16
9
|
end
|
17
10
|
|
18
11
|
def records_by_owner
|
19
12
|
return @records_by_owner if defined?(@records_by_owner)
|
20
|
-
source_records_by_owner = source_preloaders.map(&:records_by_owner).reduce(:merge)
|
21
|
-
through_records_by_owner = through_preloaders.map(&:records_by_owner).reduce(:merge)
|
22
13
|
|
23
14
|
@records_by_owner = owners.each_with_object({}) do |owner, result|
|
15
|
+
if loaded?(owner)
|
16
|
+
result[owner] = target_for(owner)
|
17
|
+
next
|
18
|
+
end
|
19
|
+
|
24
20
|
through_records = through_records_by_owner[owner] || []
|
25
21
|
|
26
|
-
if
|
22
|
+
if owners.first.association(through_reflection.name).loaded?
|
27
23
|
if source_type = reflection.options[:source_type]
|
28
24
|
through_records = through_records.select do |record|
|
29
25
|
record[reflection.foreign_type] == source_type
|
@@ -42,17 +38,47 @@ module ActiveRecord
|
|
42
38
|
end
|
43
39
|
end
|
44
40
|
|
41
|
+
def runnable_loaders
|
42
|
+
if data_available?
|
43
|
+
[self]
|
44
|
+
elsif through_preloaders.all?(&:run?)
|
45
|
+
source_preloaders.flat_map(&:runnable_loaders)
|
46
|
+
else
|
47
|
+
through_preloaders.flat_map(&:runnable_loaders)
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
def future_classes
|
52
|
+
if run?
|
53
|
+
[]
|
54
|
+
elsif through_preloaders.all?(&:run?)
|
55
|
+
source_preloaders.flat_map(&:future_classes).uniq
|
56
|
+
else
|
57
|
+
through_classes = through_preloaders.flat_map(&:future_classes)
|
58
|
+
source_classes = source_reflection.
|
59
|
+
chain.
|
60
|
+
reject { |reflection| reflection.respond_to?(:polymorphic?) && reflection.polymorphic? }.
|
61
|
+
map(&:klass)
|
62
|
+
(through_classes + source_classes).uniq
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
45
66
|
private
|
67
|
+
def data_available?
|
68
|
+
owners.all? { |owner| loaded?(owner) } ||
|
69
|
+
through_preloaders.all?(&:run?) && source_preloaders.all?(&:run?)
|
70
|
+
end
|
71
|
+
|
46
72
|
def source_preloaders
|
47
|
-
@source_preloaders ||=
|
73
|
+
@source_preloaders ||= ActiveRecord::Associations::Preloader.new(records: middle_records, associations: source_reflection.name, scope: scope, associate_by_default: false).loaders
|
48
74
|
end
|
49
75
|
|
50
76
|
def middle_records
|
51
|
-
|
77
|
+
through_records_by_owner.values.flatten
|
52
78
|
end
|
53
79
|
|
54
80
|
def through_preloaders
|
55
|
-
@through_preloaders ||=
|
81
|
+
@through_preloaders ||= ActiveRecord::Associations::Preloader.new(records: owners, associations: through_reflection.name, scope: through_scope, associate_by_default: false).loaders
|
56
82
|
end
|
57
83
|
|
58
84
|
def through_reflection
|
@@ -63,6 +89,14 @@ module ActiveRecord
|
|
63
89
|
reflection.source_reflection
|
64
90
|
end
|
65
91
|
|
92
|
+
def source_records_by_owner
|
93
|
+
@source_records_by_owner ||= source_preloaders.map(&:records_by_owner).reduce(:merge)
|
94
|
+
end
|
95
|
+
|
96
|
+
def through_records_by_owner
|
97
|
+
@through_records_by_owner ||= through_preloaders.map(&:records_by_owner).reduce(:merge)
|
98
|
+
end
|
99
|
+
|
66
100
|
def preload_index
|
67
101
|
@preload_index ||= preloaded_records.each_with_object({}).with_index do |(record, result), index|
|
68
102
|
result[record] = index
|
@@ -73,6 +107,8 @@ module ActiveRecord
|
|
73
107
|
scope = through_reflection.klass.unscoped
|
74
108
|
options = reflection.options
|
75
109
|
|
110
|
+
return scope if options[:disable_joins]
|
111
|
+
|
76
112
|
values = reflection_scope.values
|
77
113
|
if annotations = values[:annotate]
|
78
114
|
scope.annotate!(*annotations)
|
@@ -108,7 +144,7 @@ module ActiveRecord
|
|
108
144
|
end
|
109
145
|
end
|
110
146
|
|
111
|
-
scope
|
147
|
+
cascade_strict_loading(scope)
|
112
148
|
end
|
113
149
|
end
|
114
150
|
end
|
@@ -41,15 +41,18 @@ module ActiveRecord
|
|
41
41
|
#
|
42
42
|
# This could result in many rows that contain redundant data and it performs poorly at scale
|
43
43
|
# and is therefore only used when necessary.
|
44
|
-
#
|
45
|
-
class Preloader #:nodoc:
|
44
|
+
class Preloader # :nodoc:
|
46
45
|
extend ActiveSupport::Autoload
|
47
46
|
|
48
47
|
eager_autoload do
|
49
48
|
autoload :Association, "active_record/associations/preloader/association"
|
49
|
+
autoload :Batch, "active_record/associations/preloader/batch"
|
50
|
+
autoload :Branch, "active_record/associations/preloader/branch"
|
50
51
|
autoload :ThroughAssociation, "active_record/associations/preloader/through_association"
|
51
52
|
end
|
52
53
|
|
54
|
+
attr_reader :records, :associations, :scope, :associate_by_default
|
55
|
+
|
53
56
|
# Eager loads the named associations for the given Active Record record(s).
|
54
57
|
#
|
55
58
|
# In this description, 'association name' shall refer to the name passed
|
@@ -77,130 +80,53 @@ module ActiveRecord
|
|
77
80
|
# example, specifying <tt>{ author: :avatar }</tt> will preload a
|
78
81
|
# book's author, as well as that author's avatar.
|
79
82
|
#
|
80
|
-
# +:associations+ has the same format as the +:include+
|
81
|
-
# <tt>ActiveRecord::
|
83
|
+
# +:associations+ has the same format as the +:include+ method in
|
84
|
+
# <tt>ActiveRecord::QueryMethods</tt>. So +associations+ could look like this:
|
82
85
|
#
|
83
86
|
# :books
|
84
87
|
# [ :books, :author ]
|
85
88
|
# { author: :avatar }
|
86
89
|
# [ :books, { author: :avatar } ]
|
87
|
-
|
88
|
-
|
90
|
+
#
|
91
|
+
# +available_records+ is an array of ActiveRecord::Base. The Preloader
|
92
|
+
# will try to use the objects in this array to preload the requested
|
93
|
+
# associations before querying the database. This can save database
|
94
|
+
# queries by reusing in-memory objects. The optimization is only applied
|
95
|
+
# to single associations (i.e. :belongs_to, :has_one) with no scopes.
|
96
|
+
def initialize(records:, associations:, scope: nil, available_records: [], associate_by_default: true)
|
97
|
+
@records = records
|
98
|
+
@associations = associations
|
99
|
+
@scope = scope
|
100
|
+
@available_records = available_records || []
|
101
|
+
@associate_by_default = associate_by_default
|
89
102
|
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
103
|
+
@tree = Branch.new(
|
104
|
+
parent: nil,
|
105
|
+
association: nil,
|
106
|
+
children: @associations,
|
107
|
+
associate_by_default: @associate_by_default,
|
108
|
+
scope: @scope
|
109
|
+
)
|
110
|
+
@tree.preloaded_records = @records
|
97
111
|
end
|
98
112
|
|
99
|
-
def
|
100
|
-
|
113
|
+
def empty?
|
114
|
+
associations.nil? || records.length == 0
|
101
115
|
end
|
102
116
|
|
103
|
-
|
104
|
-
|
105
|
-
def preloaders_on(association, records, scope, polymorphic_parent = false)
|
106
|
-
case association
|
107
|
-
when Hash
|
108
|
-
preloaders_for_hash(association, records, scope, polymorphic_parent)
|
109
|
-
when Symbol, String
|
110
|
-
preloaders_for_one(association, records, scope, polymorphic_parent)
|
111
|
-
else
|
112
|
-
raise ArgumentError, "#{association.inspect} was not recognized for preload"
|
113
|
-
end
|
114
|
-
end
|
115
|
-
|
116
|
-
def preloaders_for_hash(association, records, scope, polymorphic_parent)
|
117
|
-
association.flat_map { |parent, child|
|
118
|
-
grouped_records(parent, records, polymorphic_parent).flat_map do |reflection, reflection_records|
|
119
|
-
loaders = preloaders_for_reflection(reflection, reflection_records, scope)
|
120
|
-
recs = loaders.flat_map(&:preloaded_records).uniq
|
121
|
-
child_polymorphic_parent = reflection && reflection.options[:polymorphic]
|
122
|
-
loaders.concat Array.wrap(child).flat_map { |assoc|
|
123
|
-
preloaders_on assoc, recs, scope, child_polymorphic_parent
|
124
|
-
}
|
125
|
-
loaders
|
126
|
-
end
|
127
|
-
}
|
128
|
-
end
|
129
|
-
|
130
|
-
# Loads all the given data into +records+ for a singular +association+.
|
131
|
-
#
|
132
|
-
# Functions by instantiating a preloader class such as Preloader::Association and
|
133
|
-
# call the +run+ method for each passed in class in the +records+ argument.
|
134
|
-
#
|
135
|
-
# Not all records have the same class, so group then preload group on the reflection
|
136
|
-
# itself so that if various subclass share the same association then we do not split
|
137
|
-
# them unnecessarily
|
138
|
-
#
|
139
|
-
# Additionally, polymorphic belongs_to associations can have multiple associated
|
140
|
-
# classes, depending on the polymorphic_type field. So we group by the classes as
|
141
|
-
# well.
|
142
|
-
def preloaders_for_one(association, records, scope, polymorphic_parent)
|
143
|
-
grouped_records(association, records, polymorphic_parent)
|
144
|
-
.flat_map do |reflection, reflection_records|
|
145
|
-
preloaders_for_reflection reflection, reflection_records, scope
|
146
|
-
end
|
147
|
-
end
|
148
|
-
|
149
|
-
def preloaders_for_reflection(reflection, records, scope)
|
150
|
-
records.group_by { |record| record.association(reflection.name).klass }.map do |rhs_klass, rs|
|
151
|
-
preloader_for(reflection, rs).new(rhs_klass, rs, reflection, scope, @associate_by_default).run
|
152
|
-
end
|
153
|
-
end
|
117
|
+
def call
|
118
|
+
Batch.new([self], available_records: @available_records).call
|
154
119
|
|
155
|
-
|
156
|
-
|
157
|
-
records.each do |record|
|
158
|
-
reflection = record.class._reflect_on_association(association)
|
159
|
-
next if polymorphic_parent && !reflection || !record.association(association).klass
|
160
|
-
(h[reflection] ||= []) << record
|
161
|
-
end
|
162
|
-
h
|
163
|
-
end
|
164
|
-
|
165
|
-
class AlreadyLoaded # :nodoc:
|
166
|
-
def initialize(klass, owners, reflection, preload_scope, associate_by_default = true)
|
167
|
-
@owners = owners
|
168
|
-
@reflection = reflection
|
169
|
-
end
|
170
|
-
|
171
|
-
def run
|
172
|
-
self
|
173
|
-
end
|
174
|
-
|
175
|
-
def preloaded_records
|
176
|
-
@preloaded_records ||= records_by_owner.flat_map(&:last)
|
177
|
-
end
|
178
|
-
|
179
|
-
def records_by_owner
|
180
|
-
@records_by_owner ||= owners.index_with do |owner|
|
181
|
-
Array(owner.association(reflection.name).target)
|
182
|
-
end
|
183
|
-
end
|
184
|
-
|
185
|
-
private
|
186
|
-
attr_reader :owners, :reflection
|
187
|
-
end
|
120
|
+
loaders
|
121
|
+
end
|
188
122
|
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
def preloader_for(reflection, owners)
|
193
|
-
if owners.all? { |o| o.association(reflection.name).loaded? }
|
194
|
-
return AlreadyLoaded
|
195
|
-
end
|
196
|
-
reflection.check_preloadable!
|
123
|
+
def branches
|
124
|
+
@tree.children
|
125
|
+
end
|
197
126
|
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
Association
|
202
|
-
end
|
203
|
-
end
|
127
|
+
def loaders
|
128
|
+
branches.flat_map(&:loaders)
|
129
|
+
end
|
204
130
|
end
|
205
131
|
end
|
206
132
|
end
|
@@ -2,9 +2,11 @@
|
|
2
2
|
|
3
3
|
module ActiveRecord
|
4
4
|
module Associations
|
5
|
-
class SingularAssociation < Association
|
5
|
+
class SingularAssociation < Association # :nodoc:
|
6
6
|
# Implements the reader method, e.g. foo.bar for Foo.has_one :bar
|
7
7
|
def reader
|
8
|
+
ensure_klass_exists!
|
9
|
+
|
8
10
|
if !loaded? || stale_target?
|
9
11
|
reload
|
10
12
|
end
|
@@ -36,7 +38,11 @@ module ActiveRecord
|
|
36
38
|
end
|
37
39
|
|
38
40
|
def find_target
|
39
|
-
|
41
|
+
if disable_joins
|
42
|
+
scope.first
|
43
|
+
else
|
44
|
+
super.first
|
45
|
+
end
|
40
46
|
end
|
41
47
|
|
42
48
|
def replace(record)
|
@@ -48,11 +54,13 @@ module ActiveRecord
|
|
48
54
|
end
|
49
55
|
|
50
56
|
def _create_record(attributes, raise_error = false, &block)
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
57
|
+
reflection.klass.transaction do
|
58
|
+
record = build(attributes, &block)
|
59
|
+
saved = record.save
|
60
|
+
replace_keys(record, force: true)
|
61
|
+
raise RecordInvalid.new(record) if !saved && raise_error
|
62
|
+
record
|
63
|
+
end
|
56
64
|
end
|
57
65
|
end
|
58
66
|
end
|
@@ -3,7 +3,7 @@
|
|
3
3
|
module ActiveRecord
|
4
4
|
module Associations
|
5
5
|
# = Active Record Through Association
|
6
|
-
module ThroughAssociation
|
6
|
+
module ThroughAssociation # :nodoc:
|
7
7
|
delegate :source_reflection, to: :reflection
|
8
8
|
|
9
9
|
private
|
@@ -74,8 +74,8 @@ module ActiveRecord
|
|
74
74
|
end
|
75
75
|
end
|
76
76
|
|
77
|
-
# Note: this does not capture all cases, for example it would be
|
78
|
-
# properly support stale-checking for nested associations.
|
77
|
+
# Note: this does not capture all cases, for example it would be impractical
|
78
|
+
# to try to properly support stale-checking for nested associations.
|
79
79
|
def stale_state
|
80
80
|
if through_reflection.belongs_to?
|
81
81
|
owner[through_reflection.foreign_key] && owner[through_reflection.foreign_key].to_s
|