activerecord 3.2.22.5 → 5.2.8
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of activerecord might be problematic. Click here for more details.
- checksums.yaml +5 -5
- data/CHANGELOG.md +657 -621
- data/MIT-LICENSE +2 -2
- data/README.rdoc +41 -46
- data/examples/performance.rb +55 -42
- data/examples/simple.rb +6 -5
- data/lib/active_record/aggregations.rb +264 -236
- data/lib/active_record/association_relation.rb +40 -0
- data/lib/active_record/associations/alias_tracker.rb +47 -42
- data/lib/active_record/associations/association.rb +127 -75
- data/lib/active_record/associations/association_scope.rb +126 -92
- data/lib/active_record/associations/belongs_to_association.rb +78 -27
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +9 -4
- data/lib/active_record/associations/builder/association.rb +117 -32
- data/lib/active_record/associations/builder/belongs_to.rb +135 -60
- data/lib/active_record/associations/builder/collection_association.rb +61 -54
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +120 -42
- data/lib/active_record/associations/builder/has_many.rb +10 -64
- data/lib/active_record/associations/builder/has_one.rb +19 -51
- data/lib/active_record/associations/builder/singular_association.rb +28 -18
- data/lib/active_record/associations/collection_association.rb +226 -293
- data/lib/active_record/associations/collection_proxy.rb +1067 -69
- data/lib/active_record/associations/foreign_association.rb +13 -0
- data/lib/active_record/associations/has_many_association.rb +83 -47
- data/lib/active_record/associations/has_many_through_association.rb +98 -65
- data/lib/active_record/associations/has_one_association.rb +57 -20
- data/lib/active_record/associations/has_one_through_association.rb +18 -9
- data/lib/active_record/associations/join_dependency/join_association.rb +48 -126
- data/lib/active_record/associations/join_dependency/join_base.rb +11 -12
- data/lib/active_record/associations/join_dependency/join_part.rb +35 -42
- data/lib/active_record/associations/join_dependency.rb +212 -164
- data/lib/active_record/associations/preloader/association.rb +95 -89
- data/lib/active_record/associations/preloader/through_association.rb +84 -44
- data/lib/active_record/associations/preloader.rb +123 -111
- data/lib/active_record/associations/singular_association.rb +33 -24
- data/lib/active_record/associations/through_association.rb +60 -26
- data/lib/active_record/associations.rb +1759 -1506
- data/lib/active_record/attribute_assignment.rb +60 -193
- data/lib/active_record/attribute_decorators.rb +90 -0
- data/lib/active_record/attribute_methods/before_type_cast.rb +55 -8
- data/lib/active_record/attribute_methods/dirty.rb +113 -74
- data/lib/active_record/attribute_methods/primary_key.rb +106 -77
- data/lib/active_record/attribute_methods/query.rb +8 -5
- data/lib/active_record/attribute_methods/read.rb +63 -114
- data/lib/active_record/attribute_methods/serialization.rb +60 -90
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +69 -43
- data/lib/active_record/attribute_methods/write.rb +43 -45
- data/lib/active_record/attribute_methods.rb +366 -149
- data/lib/active_record/attributes.rb +266 -0
- data/lib/active_record/autosave_association.rb +312 -225
- data/lib/active_record/base.rb +114 -505
- data/lib/active_record/callbacks.rb +145 -67
- data/lib/active_record/coders/json.rb +15 -0
- data/lib/active_record/coders/yaml_column.rb +32 -23
- data/lib/active_record/collection_cache_key.rb +53 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +883 -284
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +16 -2
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +350 -200
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +82 -27
- data/lib/active_record/connection_adapters/abstract/quoting.rb +150 -65
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +23 -0
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +146 -0
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +477 -284
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +95 -0
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +1100 -310
- data/lib/active_record/connection_adapters/abstract/transaction.rb +283 -0
- data/lib/active_record/connection_adapters/abstract_adapter.rb +450 -118
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +657 -446
- data/lib/active_record/connection_adapters/column.rb +50 -255
- data/lib/active_record/connection_adapters/connection_specification.rb +287 -0
- data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +33 -0
- data/lib/active_record/connection_adapters/mysql/column.rb +27 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +140 -0
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +72 -0
- data/lib/active_record/connection_adapters/mysql/quoting.rb +44 -0
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +73 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +87 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +80 -0
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +148 -0
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +35 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +59 -210
- data/lib/active_record/connection_adapters/postgresql/column.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +163 -0
- data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +92 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +56 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +17 -0
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +50 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +23 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +23 -0
- data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +21 -0
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +71 -0
- data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +45 -0
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +41 -0
- data/lib/active_record/connection_adapters/postgresql/oid/oid.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +65 -0
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +97 -0
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +18 -0
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +111 -0
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +23 -0
- data/lib/active_record/connection_adapters/postgresql/oid/vector.rb +28 -0
- data/lib/active_record/connection_adapters/postgresql/oid/xml.rb +30 -0
- data/lib/active_record/connection_adapters/postgresql/oid.rb +34 -0
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +168 -0
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +43 -0
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +65 -0
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +206 -0
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +50 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +774 -0
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +39 -0
- data/lib/active_record/connection_adapters/postgresql/utils.rb +81 -0
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +620 -1080
- data/lib/active_record/connection_adapters/schema_cache.rb +85 -36
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +34 -0
- data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +67 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +17 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +19 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +18 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +106 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +545 -27
- data/lib/active_record/connection_adapters/statement_pool.rb +34 -13
- data/lib/active_record/connection_handling.rb +145 -0
- data/lib/active_record/core.rb +559 -0
- data/lib/active_record/counter_cache.rb +200 -105
- data/lib/active_record/define_callbacks.rb +22 -0
- data/lib/active_record/dynamic_matchers.rb +107 -69
- data/lib/active_record/enum.rb +244 -0
- data/lib/active_record/errors.rb +245 -60
- data/lib/active_record/explain.rb +35 -71
- data/lib/active_record/explain_registry.rb +32 -0
- data/lib/active_record/explain_subscriber.rb +18 -9
- data/lib/active_record/fixture_set/file.rb +82 -0
- data/lib/active_record/fixtures.rb +418 -275
- data/lib/active_record/gem_version.rb +17 -0
- data/lib/active_record/inheritance.rb +209 -100
- data/lib/active_record/integration.rb +116 -21
- data/lib/active_record/internal_metadata.rb +45 -0
- data/lib/active_record/legacy_yaml_adapter.rb +48 -0
- data/lib/active_record/locale/en.yml +9 -1
- data/lib/active_record/locking/optimistic.rb +107 -94
- data/lib/active_record/locking/pessimistic.rb +20 -8
- data/lib/active_record/log_subscriber.rb +99 -34
- data/lib/active_record/migration/command_recorder.rb +199 -64
- data/lib/active_record/migration/compatibility.rb +217 -0
- data/lib/active_record/migration/join_table.rb +17 -0
- data/lib/active_record/migration.rb +893 -296
- data/lib/active_record/model_schema.rb +328 -175
- data/lib/active_record/nested_attributes.rb +338 -242
- data/lib/active_record/no_touching.rb +58 -0
- data/lib/active_record/null_relation.rb +68 -0
- data/lib/active_record/persistence.rb +557 -170
- data/lib/active_record/query_cache.rb +14 -43
- data/lib/active_record/querying.rb +36 -24
- data/lib/active_record/railtie.rb +147 -52
- data/lib/active_record/railties/console_sandbox.rb +5 -4
- data/lib/active_record/railties/controller_runtime.rb +13 -6
- data/lib/active_record/railties/databases.rake +206 -488
- data/lib/active_record/readonly_attributes.rb +4 -6
- data/lib/active_record/reflection.rb +734 -228
- data/lib/active_record/relation/batches/batch_enumerator.rb +69 -0
- data/lib/active_record/relation/batches.rb +249 -52
- data/lib/active_record/relation/calculations.rb +330 -284
- data/lib/active_record/relation/delegation.rb +135 -37
- data/lib/active_record/relation/finder_methods.rb +450 -287
- data/lib/active_record/relation/from_clause.rb +26 -0
- data/lib/active_record/relation/merger.rb +193 -0
- data/lib/active_record/relation/predicate_builder/array_handler.rb +48 -0
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +46 -0
- data/lib/active_record/relation/predicate_builder/base_handler.rb +19 -0
- data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +20 -0
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +56 -0
- data/lib/active_record/relation/predicate_builder/range_handler.rb +42 -0
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +19 -0
- data/lib/active_record/relation/predicate_builder.rb +132 -43
- data/lib/active_record/relation/query_attribute.rb +45 -0
- data/lib/active_record/relation/query_methods.rb +1037 -221
- data/lib/active_record/relation/record_fetch_warning.rb +51 -0
- data/lib/active_record/relation/spawn_methods.rb +48 -151
- data/lib/active_record/relation/where_clause.rb +186 -0
- data/lib/active_record/relation/where_clause_factory.rb +34 -0
- data/lib/active_record/relation.rb +451 -359
- data/lib/active_record/result.rb +129 -20
- data/lib/active_record/runtime_registry.rb +24 -0
- data/lib/active_record/sanitization.rb +164 -136
- data/lib/active_record/schema.rb +31 -19
- data/lib/active_record/schema_dumper.rb +154 -107
- data/lib/active_record/schema_migration.rb +56 -0
- data/lib/active_record/scoping/default.rb +108 -98
- data/lib/active_record/scoping/named.rb +125 -112
- data/lib/active_record/scoping.rb +77 -123
- data/lib/active_record/secure_token.rb +40 -0
- data/lib/active_record/serialization.rb +10 -6
- data/lib/active_record/statement_cache.rb +121 -0
- data/lib/active_record/store.rb +175 -16
- data/lib/active_record/suppressor.rb +61 -0
- data/lib/active_record/table_metadata.rb +82 -0
- data/lib/active_record/tasks/database_tasks.rb +337 -0
- data/lib/active_record/tasks/mysql_database_tasks.rb +115 -0
- data/lib/active_record/tasks/postgresql_database_tasks.rb +143 -0
- data/lib/active_record/tasks/sqlite_database_tasks.rb +83 -0
- data/lib/active_record/timestamp.rb +80 -41
- data/lib/active_record/touch_later.rb +64 -0
- data/lib/active_record/transactions.rb +240 -119
- data/lib/active_record/translation.rb +2 -0
- data/lib/active_record/type/adapter_specific_registry.rb +136 -0
- data/lib/active_record/type/date.rb +9 -0
- data/lib/active_record/type/date_time.rb +9 -0
- data/lib/active_record/type/decimal_without_scale.rb +15 -0
- data/lib/active_record/type/hash_lookup_type_map.rb +25 -0
- data/lib/active_record/type/internal/timezone.rb +17 -0
- data/lib/active_record/type/json.rb +30 -0
- data/lib/active_record/type/serialized.rb +71 -0
- data/lib/active_record/type/text.rb +11 -0
- data/lib/active_record/type/time.rb +21 -0
- data/lib/active_record/type/type_map.rb +62 -0
- data/lib/active_record/type/unsigned_integer.rb +17 -0
- data/lib/active_record/type.rb +79 -0
- data/lib/active_record/type_caster/connection.rb +33 -0
- data/lib/active_record/type_caster/map.rb +23 -0
- data/lib/active_record/type_caster.rb +9 -0
- data/lib/active_record/validations/absence.rb +25 -0
- data/lib/active_record/validations/associated.rb +35 -18
- data/lib/active_record/validations/length.rb +26 -0
- data/lib/active_record/validations/presence.rb +68 -0
- data/lib/active_record/validations/uniqueness.rb +133 -75
- data/lib/active_record/validations.rb +53 -43
- data/lib/active_record/version.rb +7 -7
- data/lib/active_record.rb +89 -57
- data/lib/rails/generators/active_record/application_record/application_record_generator.rb +27 -0
- data/lib/rails/generators/active_record/application_record/templates/application_record.rb.tt +5 -0
- data/lib/rails/generators/active_record/migration/migration_generator.rb +61 -8
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +24 -0
- data/lib/rails/generators/active_record/migration/templates/migration.rb.tt +46 -0
- data/lib/rails/generators/active_record/migration.rb +28 -8
- data/lib/rails/generators/active_record/model/model_generator.rb +23 -22
- data/lib/rails/generators/active_record/model/templates/model.rb.tt +13 -0
- data/lib/rails/generators/active_record/model/templates/{module.rb → module.rb.tt} +1 -1
- data/lib/rails/generators/active_record.rb +10 -16
- metadata +141 -62
- data/examples/associations.png +0 -0
- data/lib/active_record/associations/has_and_belongs_to_many_association.rb +0 -63
- data/lib/active_record/associations/join_helper.rb +0 -55
- data/lib/active_record/associations/preloader/belongs_to.rb +0 -17
- data/lib/active_record/associations/preloader/collection_association.rb +0 -24
- data/lib/active_record/associations/preloader/has_and_belongs_to_many.rb +0 -60
- data/lib/active_record/associations/preloader/has_many.rb +0 -17
- data/lib/active_record/associations/preloader/has_many_through.rb +0 -15
- data/lib/active_record/associations/preloader/has_one.rb +0 -23
- data/lib/active_record/associations/preloader/has_one_through.rb +0 -9
- data/lib/active_record/associations/preloader/singular_association.rb +0 -21
- data/lib/active_record/attribute_methods/deprecated_underscore_read.rb +0 -32
- data/lib/active_record/connection_adapters/abstract/connection_specification.rb +0 -191
- data/lib/active_record/connection_adapters/mysql_adapter.rb +0 -441
- data/lib/active_record/connection_adapters/sqlite_adapter.rb +0 -583
- data/lib/active_record/dynamic_finder_match.rb +0 -68
- data/lib/active_record/dynamic_scope_match.rb +0 -23
- data/lib/active_record/fixtures/file.rb +0 -65
- data/lib/active_record/identity_map.rb +0 -162
- data/lib/active_record/observer.rb +0 -121
- data/lib/active_record/railties/jdbcmysql_error.rb +0 -16
- data/lib/active_record/serializers/xml_serializer.rb +0 -203
- data/lib/active_record/session_store.rb +0 -360
- data/lib/active_record/test_case.rb +0 -73
- data/lib/rails/generators/active_record/migration/templates/migration.rb +0 -34
- data/lib/rails/generators/active_record/model/templates/migration.rb +0 -15
- data/lib/rails/generators/active_record/model/templates/model.rb +0 -12
- data/lib/rails/generators/active_record/observer/observer_generator.rb +0 -15
- data/lib/rails/generators/active_record/observer/templates/observer.rb +0 -4
- data/lib/rails/generators/active_record/session_migration/session_migration_generator.rb +0 -25
- data/lib/rails/generators/active_record/session_migration/templates/migration.rb +0 -12
@@ -1,214 +1,262 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActiveRecord
|
2
4
|
module Associations
|
3
5
|
class JoinDependency # :nodoc:
|
4
|
-
autoload :
|
5
|
-
autoload :
|
6
|
-
autoload :JoinAssociation, 'active_record/associations/join_dependency/join_association'
|
7
|
-
|
8
|
-
attr_reader :join_parts, :reflections, :alias_tracker, :active_record
|
9
|
-
|
10
|
-
def initialize(base, associations, joins)
|
11
|
-
@active_record = base
|
12
|
-
@table_joins = joins
|
13
|
-
@join_parts = [JoinBase.new(base)]
|
14
|
-
@associations = {}
|
15
|
-
@reflections = []
|
16
|
-
@alias_tracker = AliasTracker.new(base.connection, joins)
|
17
|
-
@alias_tracker.aliased_name_for(base.table_name) # Updates the count for base.table_name to 1
|
18
|
-
build(associations)
|
19
|
-
end
|
6
|
+
autoload :JoinBase, "active_record/associations/join_dependency/join_base"
|
7
|
+
autoload :JoinAssociation, "active_record/associations/join_dependency/join_association"
|
20
8
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
9
|
+
class Aliases # :nodoc:
|
10
|
+
def initialize(tables)
|
11
|
+
@tables = tables
|
12
|
+
@alias_cache = tables.each_with_object({}) { |table, h|
|
13
|
+
h[table.node] = table.columns.each_with_object({}) { |column, i|
|
14
|
+
i[column.name] = column.alias
|
15
|
+
}
|
16
|
+
}
|
17
|
+
@name_and_alias_cache = tables.each_with_object({}) { |table, h|
|
18
|
+
h[table.node] = table.columns.map { |column|
|
19
|
+
[column.name, column.alias]
|
20
|
+
}
|
21
|
+
}
|
25
22
|
end
|
26
|
-
self
|
27
|
-
end
|
28
|
-
|
29
|
-
def join_associations
|
30
|
-
join_parts.last(join_parts.length - 1)
|
31
|
-
end
|
32
23
|
|
33
|
-
|
34
|
-
|
35
|
-
|
24
|
+
def columns
|
25
|
+
@tables.flat_map(&:column_aliases)
|
26
|
+
end
|
36
27
|
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
table[column_name].as Arel.sql(aliased_name)
|
42
|
-
}
|
43
|
-
}.flatten
|
44
|
-
end
|
28
|
+
# An array of [column_name, alias] pairs for the table
|
29
|
+
def column_aliases(node)
|
30
|
+
@name_and_alias_cache[node]
|
31
|
+
end
|
45
32
|
|
46
|
-
|
47
|
-
|
48
|
-
|
33
|
+
def column_alias(node, column)
|
34
|
+
@alias_cache[node][column]
|
35
|
+
end
|
49
36
|
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
37
|
+
Table = Struct.new(:node, :columns) do # :nodoc:
|
38
|
+
def column_aliases
|
39
|
+
t = node.table
|
40
|
+
columns.map { |column| t[column.name].as Arel.sql column.alias }
|
41
|
+
end
|
42
|
+
end
|
43
|
+
Column = Struct.new(:name, :alias)
|
44
|
+
end
|
56
45
|
|
57
|
-
|
58
|
-
|
46
|
+
def self.make_tree(associations)
|
47
|
+
hash = {}
|
48
|
+
walk_tree associations, hash
|
49
|
+
hash
|
59
50
|
end
|
60
51
|
|
61
|
-
def
|
52
|
+
def self.walk_tree(associations, hash)
|
62
53
|
case associations
|
63
54
|
when Symbol, String
|
64
|
-
|
65
|
-
remove_uniq_by_reflection(reflection, records)
|
55
|
+
hash[associations.to_sym] ||= {}
|
66
56
|
when Array
|
67
|
-
associations.each do |
|
68
|
-
|
57
|
+
associations.each do |assoc|
|
58
|
+
walk_tree assoc, hash
|
69
59
|
end
|
70
60
|
when Hash
|
71
|
-
associations.
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
parent_records.concat descendant.target.uniq
|
80
|
-
else
|
81
|
-
parent_records << descendant
|
82
|
-
end
|
83
|
-
end
|
84
|
-
end
|
61
|
+
associations.each do |k, v|
|
62
|
+
cache = hash[k] ||= {}
|
63
|
+
walk_tree v, cache
|
64
|
+
end
|
65
|
+
else
|
66
|
+
raise ConfigurationError, associations.inspect
|
67
|
+
end
|
68
|
+
end
|
85
69
|
|
86
|
-
|
70
|
+
def initialize(base, table, associations)
|
71
|
+
tree = self.class.make_tree associations
|
72
|
+
@join_root = JoinBase.new(base, table, build(tree, base))
|
73
|
+
end
|
74
|
+
|
75
|
+
def reflections
|
76
|
+
join_root.drop(1).map!(&:reflection)
|
77
|
+
end
|
78
|
+
|
79
|
+
def join_constraints(joins_to_add, join_type, alias_tracker)
|
80
|
+
@alias_tracker = alias_tracker
|
81
|
+
|
82
|
+
construct_tables!(join_root)
|
83
|
+
joins = make_join_constraints(join_root, join_type)
|
84
|
+
|
85
|
+
joins.concat joins_to_add.flat_map { |oj|
|
86
|
+
construct_tables!(oj.join_root)
|
87
|
+
if join_root.match? oj.join_root
|
88
|
+
walk join_root, oj.join_root
|
89
|
+
else
|
90
|
+
make_join_constraints(oj.join_root, join_type)
|
87
91
|
end
|
92
|
+
}
|
93
|
+
end
|
94
|
+
|
95
|
+
def instantiate(result_set, &block)
|
96
|
+
primary_key = aliases.column_alias(join_root, join_root.primary_key)
|
97
|
+
|
98
|
+
seen = Hash.new { |i, object_id|
|
99
|
+
i[object_id] = Hash.new { |j, child_class|
|
100
|
+
j[child_class] = {}
|
101
|
+
}
|
102
|
+
}
|
103
|
+
|
104
|
+
model_cache = Hash.new { |h, klass| h[klass] = {} }
|
105
|
+
parents = model_cache[join_root]
|
106
|
+
column_aliases = aliases.column_aliases join_root
|
107
|
+
|
108
|
+
message_bus = ActiveSupport::Notifications.instrumenter
|
109
|
+
|
110
|
+
payload = {
|
111
|
+
record_count: result_set.length,
|
112
|
+
class_name: join_root.base_klass.name
|
113
|
+
}
|
114
|
+
|
115
|
+
message_bus.instrument("instantiation.active_record", payload) do
|
116
|
+
result_set.each { |row_hash|
|
117
|
+
parent_key = primary_key ? row_hash[primary_key] : row_hash
|
118
|
+
parent = parents[parent_key] ||= join_root.instantiate(row_hash, column_aliases, &block)
|
119
|
+
construct(parent, join_root, row_hash, result_set, seen, model_cache, aliases)
|
120
|
+
}
|
88
121
|
end
|
122
|
+
|
123
|
+
parents.values
|
124
|
+
end
|
125
|
+
|
126
|
+
def apply_column_aliases(relation)
|
127
|
+
relation._select!(-> { aliases.columns })
|
89
128
|
end
|
90
129
|
|
91
130
|
protected
|
131
|
+
attr_reader :alias_tracker, :join_root
|
92
132
|
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
associations.each do |key|
|
102
|
-
ref = ref[key]
|
133
|
+
private
|
134
|
+
def aliases
|
135
|
+
@aliases ||= Aliases.new join_root.each_with_index.map { |join_part, i|
|
136
|
+
columns = join_part.column_names.each_with_index.map { |column_name, j|
|
137
|
+
Aliases::Column.new column_name, "t#{i}_r#{j}"
|
138
|
+
}
|
139
|
+
Aliases::Table.new(join_part, columns)
|
140
|
+
}
|
103
141
|
end
|
104
|
-
ref[association.reflection.name] ||= {}
|
105
|
-
end
|
106
142
|
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
when Symbol, String
|
111
|
-
reflection = parent.reflections[associations.to_s.intern] or
|
112
|
-
raise ConfigurationError, "Association named '#{ associations }' was not found on #{parent.active_record.name}; perhaps you misspelled it?"
|
113
|
-
unless join_association = find_join_association(reflection, parent)
|
114
|
-
@reflections << reflection
|
115
|
-
join_association = build_join_association(reflection, parent)
|
116
|
-
join_association.join_type = join_type
|
117
|
-
@join_parts << join_association
|
118
|
-
cache_joined_association(join_association)
|
143
|
+
def construct_tables!(join_root)
|
144
|
+
join_root.each_children do |parent, child|
|
145
|
+
child.tables = table_aliases_for(parent, child)
|
119
146
|
end
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
when Hash
|
126
|
-
associations.keys.sort_by { |a| a.to_s }.each do |name|
|
127
|
-
join_association = build(name, parent, join_type)
|
128
|
-
build(associations[name], join_association, join_type)
|
147
|
+
end
|
148
|
+
|
149
|
+
def make_join_constraints(join_root, join_type)
|
150
|
+
join_root.children.flat_map do |child|
|
151
|
+
make_constraints(join_root, child, join_type)
|
129
152
|
end
|
130
|
-
else
|
131
|
-
raise ConfigurationError, associations.inspect
|
132
153
|
end
|
133
|
-
end
|
134
154
|
|
135
|
-
|
136
|
-
|
137
|
-
|
155
|
+
def make_constraints(parent, child, join_type = Arel::Nodes::OuterJoin)
|
156
|
+
foreign_table = parent.table
|
157
|
+
foreign_klass = parent.base_klass
|
158
|
+
joins = child.join_constraints(foreign_table, foreign_klass, join_type, alias_tracker)
|
159
|
+
joins.concat child.children.flat_map { |c| make_constraints(child, c, join_type) }
|
138
160
|
end
|
139
161
|
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
162
|
+
def table_aliases_for(parent, node)
|
163
|
+
node.reflection.chain.map { |reflection|
|
164
|
+
alias_tracker.aliased_table_for(
|
165
|
+
reflection.table_name,
|
166
|
+
table_alias_for(reflection, parent, reflection != node.reflection),
|
167
|
+
reflection.klass.type_caster
|
168
|
+
)
|
169
|
+
}
|
170
|
+
end
|
144
171
|
|
145
|
-
|
146
|
-
|
147
|
-
|
172
|
+
def table_alias_for(reflection, parent, join)
|
173
|
+
name = "#{reflection.plural_name}_#{parent.table_name}"
|
174
|
+
join ? "#{name}_join" : name
|
148
175
|
end
|
149
|
-
end
|
150
176
|
|
151
|
-
|
152
|
-
|
153
|
-
|
177
|
+
def walk(left, right)
|
178
|
+
intersection, missing = right.children.map { |node1|
|
179
|
+
[left.children.find { |node2| node1.match? node2 }, node1]
|
180
|
+
}.partition(&:first)
|
154
181
|
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
182
|
+
joins = intersection.flat_map { |l, r| r.table = l.table; walk(l, r) }
|
183
|
+
joins.concat missing.flat_map { |_, n| make_constraints(left, n) }
|
184
|
+
end
|
185
|
+
|
186
|
+
def find_reflection(klass, name)
|
187
|
+
klass._reflect_on_association(name) ||
|
188
|
+
raise(ConfigurationError, "Can't join '#{klass.name}' to association named '#{name}'; perhaps you misspelled it?")
|
189
|
+
end
|
159
190
|
|
160
|
-
|
161
|
-
|
162
|
-
|
191
|
+
def build(associations, base_klass)
|
192
|
+
associations.map do |name, right|
|
193
|
+
reflection = find_reflection base_klass, name
|
194
|
+
reflection.check_validity!
|
195
|
+
reflection.check_eager_loadable!
|
163
196
|
|
164
|
-
|
197
|
+
if reflection.polymorphic?
|
198
|
+
raise EagerLoadPolymorphicError.new(reflection)
|
199
|
+
end
|
165
200
|
|
166
|
-
|
167
|
-
construct_association(parent, join_part, row)
|
168
|
-
when Array
|
169
|
-
associations.each do |association|
|
170
|
-
construct(parent, association, join_parts, row)
|
201
|
+
JoinAssociation.new(reflection, build(right, reflection.klass))
|
171
202
|
end
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
203
|
+
end
|
204
|
+
|
205
|
+
def construct(ar_parent, parent, row, rs, seen, model_cache, aliases)
|
206
|
+
return if ar_parent.nil?
|
207
|
+
|
208
|
+
parent.children.each do |node|
|
209
|
+
if node.reflection.collection?
|
210
|
+
other = ar_parent.association(node.reflection.name)
|
211
|
+
other.loaded!
|
212
|
+
elsif ar_parent.association_cached?(node.reflection.name)
|
213
|
+
model = ar_parent.association(node.reflection.name).target
|
214
|
+
construct(model, node, row, rs, seen, model_cache, aliases)
|
215
|
+
next
|
216
|
+
end
|
217
|
+
|
218
|
+
key = aliases.column_alias(node, node.primary_key)
|
219
|
+
id = row[key]
|
220
|
+
if id.nil?
|
221
|
+
nil_association = ar_parent.association(node.reflection.name)
|
222
|
+
nil_association.loaded!
|
223
|
+
next
|
224
|
+
end
|
225
|
+
|
226
|
+
model = seen[ar_parent.object_id][node][id]
|
227
|
+
|
228
|
+
if model
|
229
|
+
construct(model, node, row, rs, seen, model_cache, aliases)
|
230
|
+
else
|
231
|
+
model = construct_model(ar_parent, node, row, model_cache, id, aliases)
|
232
|
+
|
233
|
+
if node.reflection.scope &&
|
234
|
+
node.reflection.scope_for(node.base_klass.unscoped).readonly_value
|
235
|
+
model.readonly!
|
236
|
+
end
|
237
|
+
|
238
|
+
seen[ar_parent.object_id][node][id] = model
|
239
|
+
construct(model, node, row, rs, seen, model_cache, aliases)
|
240
|
+
end
|
176
241
|
end
|
177
|
-
else
|
178
|
-
raise ConfigurationError, associations.inspect
|
179
242
|
end
|
180
|
-
end
|
181
243
|
|
182
|
-
|
183
|
-
|
244
|
+
def construct_model(record, node, row, model_cache, id, aliases)
|
245
|
+
other = record.association(node.reflection.name)
|
184
246
|
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
|
192
|
-
case macro
|
193
|
-
when :has_many, :has_and_belongs_to_many
|
194
|
-
other = record.association(join_part.reflection.name)
|
195
|
-
other.loaded!
|
196
|
-
other.target.push(association) if association
|
197
|
-
other.set_inverse_instance(association)
|
198
|
-
when :belongs_to
|
199
|
-
set_target_and_inverse(join_part, association, record)
|
247
|
+
model = model_cache[node][id] ||=
|
248
|
+
node.instantiate(row, aliases.column_aliases(node)) do |m|
|
249
|
+
other.set_inverse_instance(m)
|
250
|
+
end
|
251
|
+
|
252
|
+
if node.reflection.collection?
|
253
|
+
other.target.push(model)
|
200
254
|
else
|
201
|
-
|
255
|
+
other.target = model
|
202
256
|
end
|
203
|
-
end
|
204
|
-
association
|
205
|
-
end
|
206
257
|
|
207
|
-
|
208
|
-
|
209
|
-
other.target = association
|
210
|
-
other.set_inverse_instance(association)
|
211
|
-
end
|
258
|
+
model
|
259
|
+
end
|
212
260
|
end
|
213
261
|
end
|
214
262
|
end
|
@@ -1,124 +1,130 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
module ActiveRecord
|
2
4
|
module Associations
|
3
5
|
class Preloader
|
4
6
|
class Association #:nodoc:
|
5
|
-
attr_reader :
|
6
|
-
|
7
|
-
def initialize(klass, owners, reflection,
|
8
|
-
@klass
|
9
|
-
@owners
|
10
|
-
@reflection
|
11
|
-
@
|
12
|
-
@model
|
13
|
-
@
|
14
|
-
@owners_by_key = nil
|
7
|
+
attr_reader :preloaded_records
|
8
|
+
|
9
|
+
def initialize(klass, owners, reflection, preload_scope)
|
10
|
+
@klass = klass
|
11
|
+
@owners = owners
|
12
|
+
@reflection = reflection
|
13
|
+
@preload_scope = preload_scope
|
14
|
+
@model = owners.first && owners.first.class
|
15
|
+
@preloaded_records = []
|
15
16
|
end
|
16
17
|
|
17
|
-
def run
|
18
|
-
|
19
|
-
|
18
|
+
def run(preloader)
|
19
|
+
records = load_records do |record|
|
20
|
+
owner = owners_by_key[convert_key(record[association_key_name])]
|
21
|
+
association = owner.association(reflection.name)
|
22
|
+
association.set_inverse_instance(record)
|
20
23
|
end
|
21
|
-
end
|
22
24
|
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
def scoped
|
28
|
-
@scoped ||= build_scope
|
25
|
+
owners.each do |owner|
|
26
|
+
associate_records_to_owner(owner, records[convert_key(owner[owner_key_name])] || [])
|
27
|
+
end
|
29
28
|
end
|
30
29
|
|
31
|
-
|
32
|
-
|
33
|
-
end
|
30
|
+
protected
|
31
|
+
attr_reader :owners, :reflection, :preload_scope, :model, :klass
|
34
32
|
|
35
|
-
|
36
|
-
|
37
|
-
|
33
|
+
private
|
34
|
+
# The name of the key on the associated records
|
35
|
+
def association_key_name
|
36
|
+
reflection.join_primary_key(klass)
|
37
|
+
end
|
38
38
|
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
39
|
+
# The name of the key on the model which declares the association
|
40
|
+
def owner_key_name
|
41
|
+
reflection.join_foreign_key
|
42
|
+
end
|
43
43
|
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
44
|
+
def associate_records_to_owner(owner, records)
|
45
|
+
association = owner.association(reflection.name)
|
46
|
+
association.loaded!
|
47
|
+
if reflection.collection?
|
48
|
+
association.target.concat(records)
|
49
|
+
else
|
50
|
+
association.target = records.first unless records.empty?
|
51
|
+
end
|
52
|
+
end
|
49
53
|
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
end
|
54
|
+
def owner_keys
|
55
|
+
@owner_keys ||= owners_by_key.keys
|
56
|
+
end
|
54
57
|
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
58
|
+
def owners_by_key
|
59
|
+
unless defined?(@owners_by_key)
|
60
|
+
@owners_by_key = owners.each_with_object({}) do |owner, h|
|
61
|
+
key = convert_key(owner[owner_key_name])
|
62
|
+
h[key] = owner if key
|
63
|
+
end
|
64
|
+
end
|
65
|
+
@owners_by_key
|
61
66
|
end
|
62
|
-
end
|
63
67
|
|
64
|
-
|
65
|
-
|
66
|
-
|
68
|
+
def key_conversion_required?
|
69
|
+
unless defined?(@key_conversion_required)
|
70
|
+
@key_conversion_required = (association_key_type != owner_key_type)
|
71
|
+
end
|
67
72
|
|
68
|
-
|
73
|
+
@key_conversion_required
|
74
|
+
end
|
69
75
|
|
70
|
-
|
71
|
-
|
72
|
-
|
76
|
+
def convert_key(key)
|
77
|
+
if key_conversion_required?
|
78
|
+
key.to_s
|
79
|
+
else
|
80
|
+
key
|
81
|
+
end
|
82
|
+
end
|
73
83
|
|
74
|
-
|
75
|
-
|
76
|
-
else
|
77
|
-
# Some databases impose a limit on the number of ids in a list (in Oracle it's 1000)
|
78
|
-
# Make several smaller queries if necessary or make one query if the adapter supports it
|
79
|
-
sliced = owner_keys.each_slice(model.connection.in_clause_length || owner_keys.size)
|
80
|
-
records = sliced.map { |slice| records_for(slice) }.flatten
|
84
|
+
def association_key_type
|
85
|
+
@klass.type_for_attribute(association_key_name).type
|
81
86
|
end
|
82
87
|
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
owner_key = record[association_key_name].to_s
|
88
|
+
def owner_key_type
|
89
|
+
@model.type_for_attribute(owner_key_name).type
|
90
|
+
end
|
87
91
|
|
88
|
-
|
89
|
-
|
92
|
+
def load_records(&block)
|
93
|
+
return {} if owner_keys.empty?
|
94
|
+
# Some databases impose a limit on the number of ids in a list (in Oracle it's 1000)
|
95
|
+
# Make several smaller queries if necessary or make one query if the adapter supports it
|
96
|
+
slices = owner_keys.each_slice(klass.connection.in_clause_length || owner_keys.size)
|
97
|
+
@preloaded_records = slices.flat_map do |slice|
|
98
|
+
records_for(slice, &block)
|
99
|
+
end
|
100
|
+
@preloaded_records.group_by do |record|
|
101
|
+
convert_key(record[association_key_name])
|
90
102
|
end
|
91
103
|
end
|
92
|
-
records_by_owner
|
93
|
-
end
|
94
|
-
|
95
|
-
def build_scope
|
96
|
-
scope = klass.scoped
|
97
104
|
|
98
|
-
|
99
|
-
|
105
|
+
def records_for(ids, &block)
|
106
|
+
scope.where(association_key_name => ids).load(&block)
|
107
|
+
end
|
100
108
|
|
101
|
-
|
102
|
-
|
109
|
+
def scope
|
110
|
+
@scope ||= build_scope
|
111
|
+
end
|
103
112
|
|
104
|
-
|
105
|
-
scope
|
106
|
-
klass.table_name => {
|
107
|
-
reflection.type => model.base_class.sti_name
|
108
|
-
}
|
109
|
-
)
|
113
|
+
def reflection_scope
|
114
|
+
@reflection_scope ||= reflection.scope ? reflection.scope_for(klass.unscoped) : klass.unscoped
|
110
115
|
end
|
111
116
|
|
112
|
-
|
113
|
-
|
117
|
+
def build_scope
|
118
|
+
scope = klass.scope_for_association
|
114
119
|
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
end
|
120
|
+
if reflection.type
|
121
|
+
scope.where!(reflection.type => model.polymorphic_name)
|
122
|
+
end
|
119
123
|
|
120
|
-
|
121
|
-
|
124
|
+
scope.merge!(reflection_scope) if reflection.scope
|
125
|
+
scope.merge!(preload_scope) if preload_scope
|
126
|
+
scope
|
127
|
+
end
|
122
128
|
end
|
123
129
|
end
|
124
130
|
end
|