activerecord 4.2.8 → 6.0.0
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 +612 -1583
- data/MIT-LICENSE +4 -2
- data/README.rdoc +13 -12
- data/examples/performance.rb +33 -32
- data/examples/simple.rb +5 -4
- data/lib/active_record.rb +41 -22
- data/lib/active_record/aggregations.rb +267 -251
- data/lib/active_record/association_relation.rb +11 -6
- data/lib/active_record/associations.rb +1737 -1597
- data/lib/active_record/associations/alias_tracker.rb +29 -35
- data/lib/active_record/associations/association.rb +125 -58
- data/lib/active_record/associations/association_scope.rb +103 -132
- data/lib/active_record/associations/belongs_to_association.rb +65 -60
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +8 -12
- data/lib/active_record/associations/builder/association.rb +27 -40
- data/lib/active_record/associations/builder/belongs_to.rb +69 -55
- data/lib/active_record/associations/builder/collection_association.rb +10 -33
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +52 -66
- data/lib/active_record/associations/builder/has_many.rb +8 -4
- data/lib/active_record/associations/builder/has_one.rb +46 -5
- data/lib/active_record/associations/builder/singular_association.rb +16 -10
- data/lib/active_record/associations/collection_association.rb +134 -286
- data/lib/active_record/associations/collection_proxy.rb +241 -146
- data/lib/active_record/associations/foreign_association.rb +10 -1
- data/lib/active_record/associations/has_many_association.rb +34 -97
- data/lib/active_record/associations/has_many_through_association.rb +60 -87
- data/lib/active_record/associations/has_one_association.rb +61 -49
- data/lib/active_record/associations/has_one_through_association.rb +20 -11
- data/lib/active_record/associations/join_dependency.rb +137 -167
- data/lib/active_record/associations/join_dependency/join_association.rb +38 -88
- data/lib/active_record/associations/join_dependency/join_base.rb +10 -9
- data/lib/active_record/associations/join_dependency/join_part.rb +14 -14
- data/lib/active_record/associations/preloader.rb +90 -92
- data/lib/active_record/associations/preloader/association.rb +90 -123
- data/lib/active_record/associations/preloader/through_association.rb +85 -65
- data/lib/active_record/associations/singular_association.rb +18 -39
- data/lib/active_record/associations/through_association.rb +38 -18
- data/lib/active_record/attribute_assignment.rb +56 -183
- data/lib/active_record/attribute_decorators.rb +39 -15
- data/lib/active_record/attribute_methods.rb +120 -135
- data/lib/active_record/attribute_methods/before_type_cast.rb +13 -8
- data/lib/active_record/attribute_methods/dirty.rb +174 -144
- data/lib/active_record/attribute_methods/primary_key.rb +91 -83
- data/lib/active_record/attribute_methods/query.rb +6 -5
- data/lib/active_record/attribute_methods/read.rb +20 -76
- data/lib/active_record/attribute_methods/serialization.rb +40 -20
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +58 -36
- data/lib/active_record/attribute_methods/write.rb +32 -54
- data/lib/active_record/attributes.rb +214 -82
- data/lib/active_record/autosave_association.rb +91 -37
- data/lib/active_record/base.rb +57 -45
- data/lib/active_record/callbacks.rb +100 -74
- data/lib/active_record/coders/json.rb +3 -1
- data/lib/active_record/coders/yaml_column.rb +24 -12
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +796 -296
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +26 -8
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +234 -115
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +82 -23
- data/lib/active_record/connection_adapters/abstract/quoting.rb +170 -53
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +5 -3
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +74 -46
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +356 -227
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +79 -36
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +664 -244
- data/lib/active_record/connection_adapters/abstract/transaction.rb +191 -83
- data/lib/active_record/connection_adapters/abstract_adapter.rb +460 -204
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +510 -627
- data/lib/active_record/connection_adapters/column.rb +56 -43
- data/lib/active_record/connection_adapters/connection_specification.rb +174 -152
- data/lib/active_record/connection_adapters/determine_if_preparable_visitor.rb +29 -0
- data/lib/active_record/connection_adapters/mysql/column.rb +27 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +200 -0
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +72 -0
- data/lib/active_record/connection_adapters/mysql/quoting.rb +81 -0
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +72 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +95 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +88 -0
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +264 -0
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +31 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +58 -188
- data/lib/active_record/connection_adapters/postgresql/column.rb +21 -11
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +64 -114
- data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid.rb +23 -25
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +50 -58
- data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +9 -8
- data/lib/active_record/connection_adapters/postgresql/oid/bit_varying.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bytea.rb +4 -2
- data/lib/active_record/connection_adapters/postgresql/oid/cidr.rb +5 -1
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +13 -1
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +9 -22
- data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +5 -3
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +31 -19
- data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +2 -0
- data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +3 -11
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +45 -0
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +7 -9
- data/lib/active_record/connection_adapters/postgresql/oid/{integer.rb → oid.rb} +6 -2
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +33 -11
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +52 -34
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +4 -5
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +58 -54
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +10 -5
- data/lib/active_record/connection_adapters/postgresql/oid/vector.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/oid/xml.rb +3 -1
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +144 -47
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +27 -14
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +76 -0
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +178 -108
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +50 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +470 -290
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +36 -0
- data/lib/active_record/connection_adapters/postgresql/utils.rb +12 -8
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +551 -356
- data/lib/active_record/connection_adapters/schema_cache.rb +72 -25
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +37 -0
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +118 -0
- data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +103 -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 +137 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +290 -345
- data/lib/active_record/connection_adapters/statement_pool.rb +34 -13
- data/lib/active_record/connection_handling.rb +176 -41
- data/lib/active_record/core.rb +251 -231
- data/lib/active_record/counter_cache.rb +67 -49
- data/lib/active_record/database_configurations.rb +233 -0
- data/lib/active_record/database_configurations/database_config.rb +37 -0
- data/lib/active_record/database_configurations/hash_config.rb +50 -0
- data/lib/active_record/database_configurations/url_config.rb +79 -0
- data/lib/active_record/define_callbacks.rb +22 -0
- data/lib/active_record/dynamic_matchers.rb +87 -105
- data/lib/active_record/enum.rb +163 -86
- data/lib/active_record/errors.rb +188 -53
- data/lib/active_record/explain.rb +23 -11
- data/lib/active_record/explain_registry.rb +4 -2
- data/lib/active_record/explain_subscriber.rb +10 -5
- data/lib/active_record/fixture_set/file.rb +35 -9
- data/lib/active_record/fixture_set/model_metadata.rb +33 -0
- data/lib/active_record/fixture_set/render_context.rb +17 -0
- data/lib/active_record/fixture_set/table_row.rb +153 -0
- data/lib/active_record/fixture_set/table_rows.rb +47 -0
- data/lib/active_record/fixtures.rb +228 -499
- data/lib/active_record/gem_version.rb +5 -3
- data/lib/active_record/inheritance.rb +158 -112
- data/lib/active_record/insert_all.rb +179 -0
- data/lib/active_record/integration.rb +123 -29
- data/lib/active_record/internal_metadata.rb +53 -0
- data/lib/active_record/legacy_yaml_adapter.rb +21 -3
- data/lib/active_record/locale/en.yml +3 -2
- data/lib/active_record/locking/optimistic.rb +87 -96
- data/lib/active_record/locking/pessimistic.rb +18 -6
- data/lib/active_record/log_subscriber.rb +76 -33
- data/lib/active_record/middleware/database_selector.rb +75 -0
- data/lib/active_record/middleware/database_selector/resolver.rb +92 -0
- data/lib/active_record/middleware/database_selector/resolver/session.rb +45 -0
- data/lib/active_record/migration.rb +626 -283
- data/lib/active_record/migration/command_recorder.rb +177 -90
- data/lib/active_record/migration/compatibility.rb +244 -0
- data/lib/active_record/migration/join_table.rb +8 -6
- data/lib/active_record/model_schema.rb +314 -112
- data/lib/active_record/nested_attributes.rb +264 -222
- data/lib/active_record/no_touching.rb +14 -1
- data/lib/active_record/null_relation.rb +24 -37
- data/lib/active_record/persistence.rb +557 -125
- data/lib/active_record/query_cache.rb +19 -23
- data/lib/active_record/querying.rb +43 -29
- data/lib/active_record/railtie.rb +147 -46
- data/lib/active_record/railties/collection_cache_association_loading.rb +34 -0
- data/lib/active_record/railties/console_sandbox.rb +2 -0
- data/lib/active_record/railties/controller_runtime.rb +34 -33
- data/lib/active_record/railties/databases.rake +330 -197
- data/lib/active_record/readonly_attributes.rb +5 -4
- data/lib/active_record/reflection.rb +428 -279
- data/lib/active_record/relation.rb +518 -341
- data/lib/active_record/relation/batches.rb +207 -55
- data/lib/active_record/relation/batches/batch_enumerator.rb +69 -0
- data/lib/active_record/relation/calculations.rb +267 -253
- data/lib/active_record/relation/delegation.rb +70 -80
- data/lib/active_record/relation/finder_methods.rb +277 -241
- data/lib/active_record/relation/from_clause.rb +26 -0
- data/lib/active_record/relation/merger.rb +78 -87
- data/lib/active_record/relation/predicate_builder.rb +114 -119
- data/lib/active_record/relation/predicate_builder/array_handler.rb +27 -26
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +43 -0
- data/lib/active_record/relation/predicate_builder/base_handler.rb +18 -0
- data/lib/active_record/relation/predicate_builder/basic_object_handler.rb +19 -0
- data/lib/active_record/relation/predicate_builder/polymorphic_array_value.rb +53 -0
- data/lib/active_record/relation/predicate_builder/range_handler.rb +22 -0
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +7 -1
- data/lib/active_record/relation/query_attribute.rb +50 -0
- data/lib/active_record/relation/query_methods.rb +575 -394
- data/lib/active_record/relation/record_fetch_warning.rb +51 -0
- data/lib/active_record/relation/spawn_methods.rb +11 -13
- data/lib/active_record/relation/where_clause.rb +190 -0
- data/lib/active_record/relation/where_clause_factory.rb +33 -0
- data/lib/active_record/result.rb +79 -42
- data/lib/active_record/runtime_registry.rb +6 -4
- data/lib/active_record/sanitization.rb +144 -121
- data/lib/active_record/schema.rb +21 -24
- data/lib/active_record/schema_dumper.rb +112 -93
- data/lib/active_record/schema_migration.rb +24 -17
- data/lib/active_record/scoping.rb +45 -26
- data/lib/active_record/scoping/default.rb +101 -85
- data/lib/active_record/scoping/named.rb +86 -33
- data/lib/active_record/secure_token.rb +40 -0
- data/lib/active_record/serialization.rb +5 -5
- data/lib/active_record/statement_cache.rb +73 -36
- data/lib/active_record/store.rb +127 -42
- data/lib/active_record/suppressor.rb +61 -0
- data/lib/active_record/table_metadata.rb +75 -0
- data/lib/active_record/tasks/database_tasks.rb +308 -99
- data/lib/active_record/tasks/mysql_database_tasks.rb +55 -99
- data/lib/active_record/tasks/postgresql_database_tasks.rb +81 -41
- data/lib/active_record/tasks/sqlite_database_tasks.rb +38 -16
- data/lib/active_record/test_databases.rb +23 -0
- data/lib/active_record/test_fixtures.rb +224 -0
- data/lib/active_record/timestamp.rb +86 -40
- data/lib/active_record/touch_later.rb +66 -0
- data/lib/active_record/transactions.rb +216 -150
- data/lib/active_record/translation.rb +3 -1
- data/lib/active_record/type.rb +78 -23
- data/lib/active_record/type/adapter_specific_registry.rb +129 -0
- data/lib/active_record/type/date.rb +4 -45
- data/lib/active_record/type/date_time.rb +4 -49
- data/lib/active_record/type/decimal_without_scale.rb +6 -2
- data/lib/active_record/type/hash_lookup_type_map.rb +5 -3
- 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 +24 -15
- data/lib/active_record/type/text.rb +2 -2
- data/lib/active_record/type/time.rb +11 -16
- data/lib/active_record/type/type_map.rb +15 -17
- data/lib/active_record/type/unsigned_integer.rb +9 -7
- data/lib/active_record/type_caster.rb +9 -0
- data/lib/active_record/type_caster/connection.rb +34 -0
- data/lib/active_record/type_caster/map.rb +20 -0
- data/lib/active_record/validations.rb +39 -35
- data/lib/active_record/validations/absence.rb +25 -0
- data/lib/active_record/validations/associated.rb +13 -4
- data/lib/active_record/validations/length.rb +26 -0
- data/lib/active_record/validations/presence.rb +14 -13
- data/lib/active_record/validations/uniqueness.rb +42 -55
- data/lib/active_record/version.rb +3 -1
- data/lib/arel.rb +51 -0
- data/lib/arel/alias_predication.rb +9 -0
- data/lib/arel/attributes.rb +22 -0
- data/lib/arel/attributes/attribute.rb +37 -0
- data/lib/arel/collectors/bind.rb +24 -0
- data/lib/arel/collectors/composite.rb +31 -0
- data/lib/arel/collectors/plain_string.rb +20 -0
- data/lib/arel/collectors/sql_string.rb +20 -0
- data/lib/arel/collectors/substitute_binds.rb +28 -0
- data/lib/arel/crud.rb +42 -0
- data/lib/arel/delete_manager.rb +18 -0
- data/lib/arel/errors.rb +9 -0
- data/lib/arel/expressions.rb +29 -0
- data/lib/arel/factory_methods.rb +49 -0
- data/lib/arel/insert_manager.rb +49 -0
- data/lib/arel/math.rb +45 -0
- data/lib/arel/nodes.rb +68 -0
- data/lib/arel/nodes/and.rb +32 -0
- data/lib/arel/nodes/ascending.rb +23 -0
- data/lib/arel/nodes/binary.rb +52 -0
- data/lib/arel/nodes/bind_param.rb +36 -0
- data/lib/arel/nodes/case.rb +55 -0
- data/lib/arel/nodes/casted.rb +50 -0
- data/lib/arel/nodes/comment.rb +29 -0
- data/lib/arel/nodes/count.rb +12 -0
- data/lib/arel/nodes/delete_statement.rb +45 -0
- data/lib/arel/nodes/descending.rb +23 -0
- data/lib/arel/nodes/equality.rb +18 -0
- data/lib/arel/nodes/extract.rb +24 -0
- data/lib/arel/nodes/false.rb +16 -0
- data/lib/arel/nodes/full_outer_join.rb +8 -0
- data/lib/arel/nodes/function.rb +44 -0
- data/lib/arel/nodes/grouping.rb +8 -0
- data/lib/arel/nodes/in.rb +8 -0
- data/lib/arel/nodes/infix_operation.rb +80 -0
- data/lib/arel/nodes/inner_join.rb +8 -0
- data/lib/arel/nodes/insert_statement.rb +37 -0
- data/lib/arel/nodes/join_source.rb +20 -0
- data/lib/arel/nodes/matches.rb +18 -0
- data/lib/arel/nodes/named_function.rb +23 -0
- data/lib/arel/nodes/node.rb +50 -0
- data/lib/arel/nodes/node_expression.rb +13 -0
- data/lib/arel/nodes/outer_join.rb +8 -0
- data/lib/arel/nodes/over.rb +15 -0
- data/lib/arel/nodes/regexp.rb +16 -0
- data/lib/arel/nodes/right_outer_join.rb +8 -0
- data/lib/arel/nodes/select_core.rb +67 -0
- data/lib/arel/nodes/select_statement.rb +41 -0
- data/lib/arel/nodes/sql_literal.rb +16 -0
- data/lib/arel/nodes/string_join.rb +11 -0
- data/lib/arel/nodes/table_alias.rb +27 -0
- data/lib/arel/nodes/terminal.rb +16 -0
- data/lib/arel/nodes/true.rb +16 -0
- data/lib/arel/nodes/unary.rb +45 -0
- data/lib/arel/nodes/unary_operation.rb +20 -0
- data/lib/arel/nodes/unqualified_column.rb +22 -0
- data/lib/arel/nodes/update_statement.rb +41 -0
- data/lib/arel/nodes/values_list.rb +9 -0
- data/lib/arel/nodes/window.rb +126 -0
- data/lib/arel/nodes/with.rb +11 -0
- data/lib/arel/order_predications.rb +13 -0
- data/lib/arel/predications.rb +257 -0
- data/lib/arel/select_manager.rb +271 -0
- data/lib/arel/table.rb +110 -0
- data/lib/arel/tree_manager.rb +72 -0
- data/lib/arel/update_manager.rb +34 -0
- data/lib/arel/visitors.rb +20 -0
- data/lib/arel/visitors/depth_first.rb +204 -0
- data/lib/arel/visitors/dot.rb +297 -0
- data/lib/arel/visitors/ibm_db.rb +34 -0
- data/lib/arel/visitors/informix.rb +62 -0
- data/lib/arel/visitors/mssql.rb +157 -0
- data/lib/arel/visitors/mysql.rb +83 -0
- data/lib/arel/visitors/oracle.rb +159 -0
- data/lib/arel/visitors/oracle12.rb +66 -0
- data/lib/arel/visitors/postgresql.rb +110 -0
- data/lib/arel/visitors/sqlite.rb +39 -0
- data/lib/arel/visitors/to_sql.rb +889 -0
- data/lib/arel/visitors/visitor.rb +46 -0
- data/lib/arel/visitors/where_sql.rb +23 -0
- data/lib/arel/window_predications.rb +9 -0
- data/lib/rails/generators/active_record.rb +7 -5
- 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.rb +31 -1
- data/lib/rails/generators/active_record/migration/migration_generator.rb +42 -37
- 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 → migration.rb.tt} +11 -2
- data/lib/rails/generators/active_record/model/model_generator.rb +19 -22
- data/lib/rails/generators/active_record/model/templates/model.rb.tt +22 -0
- data/lib/rails/generators/active_record/model/templates/{module.rb → module.rb.tt} +0 -0
- metadata +164 -60
- 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_many.rb +0 -17
- data/lib/active_record/associations/preloader/has_many_through.rb +0 -19
- 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.rb +0 -163
- data/lib/active_record/attribute_set.rb +0 -81
- data/lib/active_record/attribute_set/builder.rb +0 -106
- data/lib/active_record/connection_adapters/mysql_adapter.rb +0 -491
- data/lib/active_record/connection_adapters/postgresql/array_parser.rb +0 -93
- data/lib/active_record/connection_adapters/postgresql/oid/float.rb +0 -21
- data/lib/active_record/connection_adapters/postgresql/oid/infinity.rb +0 -13
- data/lib/active_record/connection_adapters/postgresql/oid/json.rb +0 -35
- data/lib/active_record/connection_adapters/postgresql/oid/time.rb +0 -11
- data/lib/active_record/railties/jdbcmysql_error.rb +0 -16
- data/lib/active_record/serializers/xml_serializer.rb +0 -193
- data/lib/active_record/type/big_integer.rb +0 -13
- data/lib/active_record/type/binary.rb +0 -50
- data/lib/active_record/type/boolean.rb +0 -31
- data/lib/active_record/type/decimal.rb +0 -58
- data/lib/active_record/type/decorator.rb +0 -14
- data/lib/active_record/type/float.rb +0 -19
- data/lib/active_record/type/integer.rb +0 -59
- data/lib/active_record/type/mutable.rb +0 -16
- data/lib/active_record/type/numeric.rb +0 -36
- data/lib/active_record/type/string.rb +0 -40
- data/lib/active_record/type/time_value.rb +0 -38
- data/lib/active_record/type/value.rb +0 -110
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb +0 -19
- data/lib/rails/generators/active_record/model/templates/model.rb +0 -10
data/MIT-LICENSE
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
Copyright (c) 2004-
|
1
|
+
Copyright (c) 2004-2019 David Heinemeier Hansson
|
2
|
+
|
3
|
+
Arel originally copyright (c) 2007-2016 Nick Kallen, Bryan Helmkamp, Emilio Tagua, Aaron Patterson
|
2
4
|
|
3
5
|
Permission is hereby granted, free of charge, to any person obtaining
|
4
6
|
a copy of this software and associated documentation files (the
|
@@ -17,4 +19,4 @@ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
19
|
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
20
|
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
21
|
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
-
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
CHANGED
@@ -13,6 +13,8 @@ columns. Although these mappings can be defined explicitly, it's recommended
|
|
13
13
|
to follow naming conventions, especially when getting started with the
|
14
14
|
library.
|
15
15
|
|
16
|
+
You can read more about Active Record in the {Active Record Basics}[https://edgeguides.rubyonrails.org/active_record_basics.html] guide.
|
17
|
+
|
16
18
|
A short rundown of some of the major features:
|
17
19
|
|
18
20
|
* Automated mapping between classes and tables, attributes and columns.
|
@@ -26,13 +28,13 @@ The Product class is automatically mapped to the table named "products",
|
|
26
28
|
which might look like this:
|
27
29
|
|
28
30
|
CREATE TABLE products (
|
29
|
-
id
|
31
|
+
id bigint NOT NULL auto_increment,
|
30
32
|
name varchar(255),
|
31
33
|
PRIMARY KEY (id)
|
32
34
|
);
|
33
35
|
|
34
|
-
This would also define the following accessors:
|
35
|
-
|
36
|
+
This would also define the following accessors: <tt>Product#name</tt> and
|
37
|
+
<tt>Product#name=(new_name)</tt>.
|
36
38
|
|
37
39
|
|
38
40
|
* Associations between objects defined by simple class methods.
|
@@ -125,7 +127,7 @@ This would also define the following accessors: `Product#name` and
|
|
125
127
|
)
|
126
128
|
|
127
129
|
{Learn more}[link:classes/ActiveRecord/Base.html] and read about the built-in support for
|
128
|
-
MySQL[link:classes/ActiveRecord/ConnectionAdapters/
|
130
|
+
MySQL[link:classes/ActiveRecord/ConnectionAdapters/Mysql2Adapter.html],
|
129
131
|
PostgreSQL[link:classes/ActiveRecord/ConnectionAdapters/PostgreSQLAdapter.html], and
|
130
132
|
SQLite3[link:classes/ActiveRecord/ConnectionAdapters/SQLite3Adapter.html].
|
131
133
|
|
@@ -138,7 +140,7 @@ This would also define the following accessors: `Product#name` and
|
|
138
140
|
|
139
141
|
* Database agnostic schema management with Migrations.
|
140
142
|
|
141
|
-
class AddSystemSettings < ActiveRecord::Migration
|
143
|
+
class AddSystemSettings < ActiveRecord::Migration[5.0]
|
142
144
|
def up
|
143
145
|
create_table :system_settings do |t|
|
144
146
|
t.string :name
|
@@ -162,7 +164,7 @@ This would also define the following accessors: `Product#name` and
|
|
162
164
|
== Philosophy
|
163
165
|
|
164
166
|
Active Record is an implementation of the object-relational mapping (ORM)
|
165
|
-
pattern[
|
167
|
+
pattern[https://www.martinfowler.com/eaaCatalog/activeRecord.html] by the same
|
166
168
|
name described by Martin Fowler:
|
167
169
|
|
168
170
|
"An object that wraps a row in a database table or view,
|
@@ -188,31 +190,30 @@ Admit the Database:
|
|
188
190
|
|
189
191
|
The latest version of Active Record can be installed with RubyGems:
|
190
192
|
|
191
|
-
|
193
|
+
$ gem install activerecord
|
192
194
|
|
193
195
|
Source code can be downloaded as part of the Rails project on GitHub:
|
194
196
|
|
195
|
-
* https://github.com/rails/rails/tree/
|
197
|
+
* https://github.com/rails/rails/tree/master/activerecord
|
196
198
|
|
197
199
|
|
198
200
|
== License
|
199
201
|
|
200
202
|
Active Record is released under the MIT license:
|
201
203
|
|
202
|
-
*
|
204
|
+
* https://opensource.org/licenses/MIT
|
203
205
|
|
204
206
|
|
205
207
|
== Support
|
206
208
|
|
207
209
|
API documentation is at:
|
208
210
|
|
209
|
-
*
|
211
|
+
* https://api.rubyonrails.org
|
210
212
|
|
211
|
-
Bug reports
|
213
|
+
Bug reports for the Ruby on Rails project can be filed here:
|
212
214
|
|
213
215
|
* https://github.com/rails/rails/issues
|
214
216
|
|
215
217
|
Feature requests should be discussed on the rails-core mailing list here:
|
216
218
|
|
217
219
|
* https://groups.google.com/forum/?fromgroups#!forum/rubyonrails-core
|
218
|
-
|
data/examples/performance.rb
CHANGED
@@ -1,11 +1,12 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
2
3
|
require "active_record"
|
3
|
-
require
|
4
|
+
require "benchmark/ips"
|
4
5
|
|
5
|
-
TIME = (ENV[
|
6
|
-
RECORDS = (ENV[
|
6
|
+
TIME = (ENV["BENCHMARK_TIME"] || 20).to_i
|
7
|
+
RECORDS = (ENV["BENCHMARK_RECORDS"] || TIME * 1000).to_i
|
7
8
|
|
8
|
-
conn = { adapter:
|
9
|
+
conn = { adapter: "sqlite3", database: ":memory:" }
|
9
10
|
|
10
11
|
ActiveRecord::Base.establish_connection(conn)
|
11
12
|
|
@@ -39,30 +40,30 @@ class Exhibit < ActiveRecord::Base
|
|
39
40
|
where("notes IS NOT NULL")
|
40
41
|
end
|
41
42
|
|
42
|
-
def self.look(exhibits) exhibits.each
|
43
|
-
def self.feel(exhibits) exhibits.each
|
43
|
+
def self.look(exhibits) exhibits.each(&:look) end
|
44
|
+
def self.feel(exhibits) exhibits.each(&:feel) end
|
44
45
|
end
|
45
46
|
|
46
|
-
def progress_bar(int); print "." if (int%100).zero? ; end
|
47
|
+
def progress_bar(int); print "." if (int % 100).zero? ; end
|
47
48
|
|
48
|
-
puts
|
49
|
+
puts "Generating data..."
|
49
50
|
|
50
51
|
module ActiveRecord
|
51
52
|
class Faker
|
52
|
-
LOREM =
|
53
|
+
LOREM = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Suspendisse non aliquet diam. Curabitur vel urna metus, quis malesuada elit.
|
53
54
|
Integer consequat tincidunt felis. Etiam non erat dolor. Vivamus imperdiet nibh sit amet diam eleifend id posuere diam malesuada. Mauris at accumsan sem.
|
54
55
|
Donec id lorem neque. Fusce erat lorem, ornare eu congue vitae, malesuada quis neque. Maecenas vel urna a velit pretium fermentum. Donec tortor enim,
|
55
56
|
tempor venenatis egestas a, tempor sed ipsum. Ut arcu justo, faucibus non imperdiet ac, interdum at diam. Pellentesque ipsum enim, venenatis ut iaculis vitae,
|
56
57
|
varius vitae sem. Sed rutrum quam ac elit euismod bibendum. Donec ultricies ultricies magna, at lacinia libero mollis aliquam. Sed ac arcu in tortor elementum
|
57
58
|
tincidunt vel interdum sem. Curabitur eget erat arcu. Praesent eget eros leo. Nam magna enim, sollicitudin vehicula scelerisque in, vulputate ut libero.
|
58
|
-
Praesent varius tincidunt commodo
|
59
|
+
Praesent varius tincidunt commodo".split
|
59
60
|
|
60
61
|
def self.name
|
61
|
-
LOREM.grep(/^\w*$/).sort_by { rand }.first(2).join
|
62
|
+
LOREM.grep(/^\w*$/).sort_by { rand }.first(2).join " "
|
62
63
|
end
|
63
64
|
|
64
65
|
def self.email
|
65
|
-
LOREM.grep(/^\w*$/).sort_by { rand }.first(2).join(
|
66
|
+
LOREM.grep(/^\w*$/).sort_by { rand }.first(2).join("@") + ".com"
|
66
67
|
end
|
67
68
|
end
|
68
69
|
end
|
@@ -73,7 +74,7 @@ end
|
|
73
74
|
|
74
75
|
# Using the same paragraph for all exhibits because it is very slow
|
75
76
|
# to generate unique paragraphs for all exhibits.
|
76
|
-
notes = ActiveRecord::Faker::LOREM.join
|
77
|
+
notes = ActiveRecord::Faker::LOREM.join " "
|
77
78
|
today = Date.today
|
78
79
|
|
79
80
|
puts "Inserting #{RECORDS} users and exhibits..."
|
@@ -96,9 +97,9 @@ puts "Done!\n"
|
|
96
97
|
|
97
98
|
Benchmark.ips(TIME) do |x|
|
98
99
|
ar_obj = Exhibit.find(1)
|
99
|
-
attrs = { name:
|
100
|
-
attrs_first = { name:
|
101
|
-
attrs_second = { name:
|
100
|
+
attrs = { name: "sam" }
|
101
|
+
attrs_first = { name: "sam" }
|
102
|
+
attrs_second = { name: "tom" }
|
102
103
|
exhibit = {
|
103
104
|
name: ActiveRecord::Faker.name,
|
104
105
|
notes: notes,
|
@@ -109,22 +110,22 @@ Benchmark.ips(TIME) do |x|
|
|
109
110
|
ar_obj.id
|
110
111
|
end
|
111
112
|
|
112
|
-
x.report
|
113
|
+
x.report "Model.new (instantiation)" do
|
113
114
|
Exhibit.new
|
114
115
|
end
|
115
116
|
|
116
|
-
x.report
|
117
|
+
x.report "Model.new (setting attributes)" do
|
117
118
|
Exhibit.new(attrs)
|
118
119
|
end
|
119
120
|
|
120
|
-
x.report
|
121
|
+
x.report "Model.first" do
|
121
122
|
Exhibit.first.look
|
122
123
|
end
|
123
124
|
|
124
|
-
x.report
|
125
|
+
x.report "Model.take" do
|
125
126
|
Exhibit.take
|
126
127
|
end
|
127
|
-
|
128
|
+
|
128
129
|
x.report("Model.all limit(100)") do
|
129
130
|
Exhibit.look Exhibit.limit(100)
|
130
131
|
end
|
@@ -141,41 +142,41 @@ Benchmark.ips(TIME) do |x|
|
|
141
142
|
Exhibit.look Exhibit.limit(10000)
|
142
143
|
end
|
143
144
|
|
144
|
-
x.report
|
145
|
+
x.report "Model.named_scope" do
|
145
146
|
Exhibit.limit(10).with_name.with_notes
|
146
147
|
end
|
147
148
|
|
148
|
-
x.report
|
149
|
+
x.report "Model.create" do
|
149
150
|
Exhibit.create(exhibit)
|
150
151
|
end
|
151
152
|
|
152
|
-
x.report
|
153
|
+
x.report "Resource#attributes=" do
|
153
154
|
e = Exhibit.new(attrs_first)
|
154
155
|
e.attributes = attrs_second
|
155
156
|
end
|
156
157
|
|
157
|
-
x.report
|
158
|
-
Exhibit.first.update(name:
|
158
|
+
x.report "Resource#update" do
|
159
|
+
Exhibit.first.update(name: "bob")
|
159
160
|
end
|
160
161
|
|
161
|
-
x.report
|
162
|
+
x.report "Resource#destroy" do
|
162
163
|
Exhibit.first.destroy
|
163
164
|
end
|
164
165
|
|
165
|
-
x.report
|
166
|
+
x.report "Model.transaction" do
|
166
167
|
Exhibit.transaction { Exhibit.new }
|
167
168
|
end
|
168
169
|
|
169
|
-
x.report
|
170
|
+
x.report "Model.find(id)" do
|
170
171
|
User.find(1)
|
171
172
|
end
|
172
173
|
|
173
|
-
x.report
|
174
|
+
x.report "Model.find_by_sql" do
|
174
175
|
Exhibit.find_by_sql("SELECT * FROM exhibits WHERE id = #{(rand * 1000 + 1).to_i}").first
|
175
176
|
end
|
176
177
|
|
177
178
|
x.report "Model.log" do
|
178
|
-
Exhibit.connection.send(:log, "hello", "world") {}
|
179
|
+
Exhibit.connection.send(:log, "hello", "world") { }
|
179
180
|
end
|
180
181
|
|
181
182
|
x.report "AR.execute(query)" do
|
data/examples/simple.rb
CHANGED
@@ -1,14 +1,15 @@
|
|
1
|
-
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "active_record"
|
3
4
|
|
4
5
|
class Person < ActiveRecord::Base
|
5
|
-
establish_connection adapter:
|
6
|
+
establish_connection adapter: "sqlite3", database: "foobar.db"
|
6
7
|
connection.create_table table_name, force: true do |t|
|
7
8
|
t.string :name
|
8
9
|
end
|
9
10
|
end
|
10
11
|
|
11
|
-
bob = Person.create!(name:
|
12
|
+
bob = Person.create!(name: "bob")
|
12
13
|
puts Person.all.inspect
|
13
14
|
bob.destroy
|
14
15
|
puts Person.all.inspect
|
data/lib/active_record.rb
CHANGED
@@ -1,5 +1,7 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
#--
|
2
|
-
# Copyright (c) 2004-
|
4
|
+
# Copyright (c) 2004-2019 David Heinemeier Hansson
|
3
5
|
#
|
4
6
|
# Permission is hereby granted, free of charge, to any person obtaining
|
5
7
|
# a copy of this software and associated documentation files (the
|
@@ -21,18 +23,18 @@
|
|
21
23
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
24
|
#++
|
23
25
|
|
24
|
-
require
|
25
|
-
require
|
26
|
-
require
|
27
|
-
require
|
26
|
+
require "active_support"
|
27
|
+
require "active_support/rails"
|
28
|
+
require "active_model"
|
29
|
+
require "arel"
|
30
|
+
require "yaml"
|
28
31
|
|
29
|
-
require
|
30
|
-
require
|
32
|
+
require "active_record/version"
|
33
|
+
require "active_model/attribute_set"
|
31
34
|
|
32
35
|
module ActiveRecord
|
33
36
|
extend ActiveSupport::Autoload
|
34
37
|
|
35
|
-
autoload :Attribute
|
36
38
|
autoload :Base
|
37
39
|
autoload :Callbacks
|
38
40
|
autoload :Core
|
@@ -40,19 +42,21 @@ module ActiveRecord
|
|
40
42
|
autoload :CounterCache
|
41
43
|
autoload :DynamicMatchers
|
42
44
|
autoload :Enum
|
45
|
+
autoload :InternalMetadata
|
43
46
|
autoload :Explain
|
44
47
|
autoload :Inheritance
|
45
48
|
autoload :Integration
|
46
49
|
autoload :Migration
|
47
|
-
autoload :Migrator,
|
50
|
+
autoload :Migrator, "active_record/migration"
|
48
51
|
autoload :ModelSchema
|
49
52
|
autoload :NestedAttributes
|
50
53
|
autoload :NoTouching
|
54
|
+
autoload :TouchLater
|
51
55
|
autoload :Persistence
|
52
56
|
autoload :QueryCache
|
53
57
|
autoload :Querying
|
54
58
|
autoload :ReadonlyAttributes
|
55
|
-
autoload :RecordInvalid,
|
59
|
+
autoload :RecordInvalid, "active_record/validations"
|
56
60
|
autoload :Reflection
|
57
61
|
autoload :RuntimeRegistry
|
58
62
|
autoload :Sanitization
|
@@ -63,15 +67,18 @@ module ActiveRecord
|
|
63
67
|
autoload :Serialization
|
64
68
|
autoload :StatementCache
|
65
69
|
autoload :Store
|
70
|
+
autoload :Suppressor
|
66
71
|
autoload :Timestamp
|
67
72
|
autoload :Transactions
|
68
73
|
autoload :Translation
|
69
74
|
autoload :Validations
|
75
|
+
autoload :SecureToken
|
76
|
+
autoload :DatabaseSelector, "active_record/middleware/database_selector"
|
70
77
|
|
71
78
|
eager_autoload do
|
72
|
-
autoload :ActiveRecordError,
|
73
|
-
autoload :ConnectionNotEstablished,
|
74
|
-
autoload :ConnectionAdapters,
|
79
|
+
autoload :ActiveRecordError, "active_record/errors"
|
80
|
+
autoload :ConnectionNotEstablished, "active_record/errors"
|
81
|
+
autoload :ConnectionAdapters, "active_record/connection_adapters/abstract_adapter"
|
75
82
|
|
76
83
|
autoload :Aggregations
|
77
84
|
autoload :Associations
|
@@ -85,7 +92,7 @@ module ActiveRecord
|
|
85
92
|
autoload :AssociationRelation
|
86
93
|
autoload :NullRelation
|
87
94
|
|
88
|
-
autoload_under
|
95
|
+
autoload_under "relation" do
|
89
96
|
autoload :QueryMethods
|
90
97
|
autoload :FinderMethods
|
91
98
|
autoload :Calculations
|
@@ -96,11 +103,13 @@ module ActiveRecord
|
|
96
103
|
end
|
97
104
|
|
98
105
|
autoload :Result
|
106
|
+
autoload :TableMetadata
|
107
|
+
autoload :Type
|
99
108
|
end
|
100
109
|
|
101
110
|
module Coders
|
102
|
-
autoload :YAMLColumn,
|
103
|
-
autoload :JSON,
|
111
|
+
autoload :YAMLColumn, "active_record/coders/yaml_column"
|
112
|
+
autoload :JSON, "active_record/coders/json"
|
104
113
|
end
|
105
114
|
|
106
115
|
module AttributeMethods
|
@@ -132,7 +141,6 @@ module ActiveRecord
|
|
132
141
|
|
133
142
|
eager_autoload do
|
134
143
|
autoload :AbstractAdapter
|
135
|
-
autoload :ConnectionManagement, "active_record/connection_adapters/abstract/connection_pool"
|
136
144
|
end
|
137
145
|
end
|
138
146
|
|
@@ -145,17 +153,24 @@ module ActiveRecord
|
|
145
153
|
end
|
146
154
|
end
|
147
155
|
|
156
|
+
module Middleware
|
157
|
+
extend ActiveSupport::Autoload
|
158
|
+
|
159
|
+
autoload :DatabaseSelector, "active_record/middleware/database_selector"
|
160
|
+
end
|
161
|
+
|
148
162
|
module Tasks
|
149
163
|
extend ActiveSupport::Autoload
|
150
164
|
|
151
165
|
autoload :DatabaseTasks
|
152
|
-
autoload :SQLiteDatabaseTasks,
|
153
|
-
autoload :MySQLDatabaseTasks,
|
166
|
+
autoload :SQLiteDatabaseTasks, "active_record/tasks/sqlite_database_tasks"
|
167
|
+
autoload :MySQLDatabaseTasks, "active_record/tasks/mysql_database_tasks"
|
154
168
|
autoload :PostgreSQLDatabaseTasks,
|
155
|
-
|
169
|
+
"active_record/tasks/postgresql_database_tasks"
|
156
170
|
end
|
157
171
|
|
158
|
-
autoload :
|
172
|
+
autoload :TestDatabases, "active_record/test_databases"
|
173
|
+
autoload :TestFixtures, "active_record/fixtures"
|
159
174
|
|
160
175
|
def self.eager_load!
|
161
176
|
super
|
@@ -172,5 +187,9 @@ ActiveSupport.on_load(:active_record) do
|
|
172
187
|
end
|
173
188
|
|
174
189
|
ActiveSupport.on_load(:i18n) do
|
175
|
-
I18n.load_path << File.
|
190
|
+
I18n.load_path << File.expand_path("active_record/locale/en.yml", __dir__)
|
176
191
|
end
|
192
|
+
|
193
|
+
YAML.load_tags["!ruby/object:ActiveRecord::AttributeSet"] = "ActiveModel::AttributeSet"
|
194
|
+
YAML.load_tags["!ruby/object:ActiveRecord::Attribute::FromDatabase"] = "ActiveModel::Attribute::FromDatabase"
|
195
|
+
YAML.load_tags["!ruby/object:ActiveRecord::LazyAttributeHash"] = "ActiveModel::LazyAttributeHash"
|
@@ -1,269 +1,285 @@
|
|
1
|
-
|
2
|
-
# = Active Record Aggregations
|
3
|
-
module Aggregations # :nodoc:
|
4
|
-
extend ActiveSupport::Concern
|
1
|
+
# frozen_string_literal: true
|
5
2
|
|
6
|
-
|
7
|
-
|
3
|
+
module ActiveRecord
|
4
|
+
# See ActiveRecord::Aggregations::ClassMethods for documentation
|
5
|
+
module Aggregations
|
6
|
+
def initialize_dup(*) # :nodoc:
|
7
|
+
@aggregation_cache = {}
|
8
|
+
super
|
8
9
|
end
|
9
10
|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
# the entity object (when the entity is initialized either as a new object or from finding an
|
15
|
-
# existing object) and how it can be turned back into attributes (when the entity is saved to
|
16
|
-
# the database).
|
17
|
-
#
|
18
|
-
# class Customer < ActiveRecord::Base
|
19
|
-
# composed_of :balance, class_name: "Money", mapping: %w(balance amount)
|
20
|
-
# composed_of :address, mapping: [ %w(address_street street), %w(address_city city) ]
|
21
|
-
# end
|
22
|
-
#
|
23
|
-
# The customer class now has the following methods to manipulate the value objects:
|
24
|
-
# * <tt>Customer#balance, Customer#balance=(money)</tt>
|
25
|
-
# * <tt>Customer#address, Customer#address=(address)</tt>
|
26
|
-
#
|
27
|
-
# These methods will operate with value objects like the ones described below:
|
28
|
-
#
|
29
|
-
# class Money
|
30
|
-
# include Comparable
|
31
|
-
# attr_reader :amount, :currency
|
32
|
-
# EXCHANGE_RATES = { "USD_TO_DKK" => 6 }
|
33
|
-
#
|
34
|
-
# def initialize(amount, currency = "USD")
|
35
|
-
# @amount, @currency = amount, currency
|
36
|
-
# end
|
37
|
-
#
|
38
|
-
# def exchange_to(other_currency)
|
39
|
-
# exchanged_amount = (amount * EXCHANGE_RATES["#{currency}_TO_#{other_currency}"]).floor
|
40
|
-
# Money.new(exchanged_amount, other_currency)
|
41
|
-
# end
|
42
|
-
#
|
43
|
-
# def ==(other_money)
|
44
|
-
# amount == other_money.amount && currency == other_money.currency
|
45
|
-
# end
|
46
|
-
#
|
47
|
-
# def <=>(other_money)
|
48
|
-
# if currency == other_money.currency
|
49
|
-
# amount <=> other_money.amount
|
50
|
-
# else
|
51
|
-
# amount <=> other_money.exchange_to(currency).amount
|
52
|
-
# end
|
53
|
-
# end
|
54
|
-
# end
|
55
|
-
#
|
56
|
-
# class Address
|
57
|
-
# attr_reader :street, :city
|
58
|
-
# def initialize(street, city)
|
59
|
-
# @street, @city = street, city
|
60
|
-
# end
|
61
|
-
#
|
62
|
-
# def close_to?(other_address)
|
63
|
-
# city == other_address.city
|
64
|
-
# end
|
65
|
-
#
|
66
|
-
# def ==(other_address)
|
67
|
-
# city == other_address.city && street == other_address.street
|
68
|
-
# end
|
69
|
-
# end
|
70
|
-
#
|
71
|
-
# Now it's possible to access attributes from the database through the value objects instead. If
|
72
|
-
# you choose to name the composition the same as the attribute's name, it will be the only way to
|
73
|
-
# access that attribute. That's the case with our +balance+ attribute. You interact with the value
|
74
|
-
# objects just like you would with any other attribute:
|
75
|
-
#
|
76
|
-
# customer.balance = Money.new(20) # sets the Money value object and the attribute
|
77
|
-
# customer.balance # => Money value object
|
78
|
-
# customer.balance.exchange_to("DKK") # => Money.new(120, "DKK")
|
79
|
-
# customer.balance > Money.new(10) # => true
|
80
|
-
# customer.balance == Money.new(20) # => true
|
81
|
-
# customer.balance < Money.new(5) # => false
|
82
|
-
#
|
83
|
-
# Value objects can also be composed of multiple attributes, such as the case of Address. The order
|
84
|
-
# of the mappings will determine the order of the parameters.
|
85
|
-
#
|
86
|
-
# customer.address_street = "Hyancintvej"
|
87
|
-
# customer.address_city = "Copenhagen"
|
88
|
-
# customer.address # => Address.new("Hyancintvej", "Copenhagen")
|
89
|
-
#
|
90
|
-
# customer.address_street = "Vesterbrogade"
|
91
|
-
# customer.address # => Address.new("Hyancintvej", "Copenhagen")
|
92
|
-
# customer.clear_aggregation_cache
|
93
|
-
# customer.address # => Address.new("Vesterbrogade", "Copenhagen")
|
94
|
-
#
|
95
|
-
# customer.address = Address.new("May Street", "Chicago")
|
96
|
-
# customer.address_street # => "May Street"
|
97
|
-
# customer.address_city # => "Chicago"
|
98
|
-
#
|
99
|
-
# == Writing value objects
|
100
|
-
#
|
101
|
-
# Value objects are immutable and interchangeable objects that represent a given value, such as
|
102
|
-
# a Money object representing $5. Two Money objects both representing $5 should be equal (through
|
103
|
-
# methods such as <tt>==</tt> and <tt><=></tt> from Comparable if ranking makes sense). This is
|
104
|
-
# unlike entity objects where equality is determined by identity. An entity class such as Customer can
|
105
|
-
# easily have two different objects that both have an address on Hyancintvej. Entity identity is
|
106
|
-
# determined by object or relational unique identifiers (such as primary keys). Normal
|
107
|
-
# ActiveRecord::Base classes are entity objects.
|
108
|
-
#
|
109
|
-
# It's also important to treat the value objects as immutable. Don't allow the Money object to have
|
110
|
-
# its amount changed after creation. Create a new Money object with the new value instead. The
|
111
|
-
# Money#exchange_to method is an example of this. It returns a new value object instead of changing
|
112
|
-
# its own values. Active Record won't persist value objects that have been changed through means
|
113
|
-
# other than the writer method.
|
114
|
-
#
|
115
|
-
# The immutable requirement is enforced by Active Record by freezing any object assigned as a value
|
116
|
-
# object. Attempting to change it afterwards will result in a RuntimeError.
|
117
|
-
#
|
118
|
-
# Read more about value objects on http://c2.com/cgi/wiki?ValueObject and on the dangers of not
|
119
|
-
# keeping value objects immutable on http://c2.com/cgi/wiki?ValueObjectsShouldBeImmutable
|
120
|
-
#
|
121
|
-
# == Custom constructors and converters
|
122
|
-
#
|
123
|
-
# By default value objects are initialized by calling the <tt>new</tt> constructor of the value
|
124
|
-
# class passing each of the mapped attributes, in the order specified by the <tt>:mapping</tt>
|
125
|
-
# option, as arguments. If the value class doesn't support this convention then +composed_of+ allows
|
126
|
-
# a custom constructor to be specified.
|
127
|
-
#
|
128
|
-
# When a new value is assigned to the value object, the default assumption is that the new value
|
129
|
-
# is an instance of the value class. Specifying a custom converter allows the new value to be automatically
|
130
|
-
# converted to an instance of value class if necessary.
|
131
|
-
#
|
132
|
-
# For example, the NetworkResource model has +network_address+ and +cidr_range+ attributes that should be
|
133
|
-
# aggregated using the NetAddr::CIDR value class (http://www.ruby-doc.org/gems/docs/n/netaddr-1.5.0/NetAddr/CIDR.html).
|
134
|
-
# The constructor for the value class is called +create+ and it expects a CIDR address string as a parameter.
|
135
|
-
# New values can be assigned to the value object using either another NetAddr::CIDR object, a string
|
136
|
-
# or an array. The <tt>:constructor</tt> and <tt>:converter</tt> options can be used to meet
|
137
|
-
# these requirements:
|
138
|
-
#
|
139
|
-
# class NetworkResource < ActiveRecord::Base
|
140
|
-
# composed_of :cidr,
|
141
|
-
# class_name: 'NetAddr::CIDR',
|
142
|
-
# mapping: [ %w(network_address network), %w(cidr_range bits) ],
|
143
|
-
# allow_nil: true,
|
144
|
-
# constructor: Proc.new { |network_address, cidr_range| NetAddr::CIDR.create("#{network_address}/#{cidr_range}") },
|
145
|
-
# converter: Proc.new { |value| NetAddr::CIDR.create(value.is_a?(Array) ? value.join('/') : value) }
|
146
|
-
# end
|
147
|
-
#
|
148
|
-
# # This calls the :constructor
|
149
|
-
# network_resource = NetworkResource.new(network_address: '192.168.0.1', cidr_range: 24)
|
150
|
-
#
|
151
|
-
# # These assignments will both use the :converter
|
152
|
-
# network_resource.cidr = [ '192.168.2.1', 8 ]
|
153
|
-
# network_resource.cidr = '192.168.0.1/24'
|
154
|
-
#
|
155
|
-
# # This assignment won't use the :converter as the value is already an instance of the value class
|
156
|
-
# network_resource.cidr = NetAddr::CIDR.create('192.168.2.1/8')
|
157
|
-
#
|
158
|
-
# # Saving and then reloading will use the :constructor on reload
|
159
|
-
# network_resource.save
|
160
|
-
# network_resource.reload
|
161
|
-
#
|
162
|
-
# == Finding records by a value object
|
163
|
-
#
|
164
|
-
# Once a +composed_of+ relationship is specified for a model, records can be loaded from the database
|
165
|
-
# by specifying an instance of the value object in the conditions hash. The following example
|
166
|
-
# finds all customers with +balance_amount+ equal to 20 and +balance_currency+ equal to "USD":
|
167
|
-
#
|
168
|
-
# Customer.where(balance: Money.new(20, "USD"))
|
169
|
-
#
|
170
|
-
module ClassMethods
|
171
|
-
# Adds reader and writer methods for manipulating a value object:
|
172
|
-
# <tt>composed_of :address</tt> adds <tt>address</tt> and <tt>address=(new_address)</tt> methods.
|
173
|
-
#
|
174
|
-
# Options are:
|
175
|
-
# * <tt>:class_name</tt> - Specifies the class name of the association. Use it only if that name
|
176
|
-
# can't be inferred from the part id. So <tt>composed_of :address</tt> will by default be linked
|
177
|
-
# to the Address class, but if the real class name is CompanyAddress, you'll have to specify it
|
178
|
-
# with this option.
|
179
|
-
# * <tt>:mapping</tt> - Specifies the mapping of entity attributes to attributes of the value
|
180
|
-
# object. Each mapping is represented as an array where the first item is the name of the
|
181
|
-
# entity attribute and the second item is the name of the attribute in the value object. The
|
182
|
-
# order in which mappings are defined determines the order in which attributes are sent to the
|
183
|
-
# value class constructor.
|
184
|
-
# * <tt>:allow_nil</tt> - Specifies that the value object will not be instantiated when all mapped
|
185
|
-
# attributes are +nil+. Setting the value object to +nil+ has the effect of writing +nil+ to all
|
186
|
-
# mapped attributes.
|
187
|
-
# This defaults to +false+.
|
188
|
-
# * <tt>:constructor</tt> - A symbol specifying the name of the constructor method or a Proc that
|
189
|
-
# is called to initialize the value object. The constructor is passed all of the mapped attributes,
|
190
|
-
# in the order that they are defined in the <tt>:mapping option</tt>, as arguments and uses them
|
191
|
-
# to instantiate a <tt>:class_name</tt> object.
|
192
|
-
# The default is <tt>:new</tt>.
|
193
|
-
# * <tt>:converter</tt> - A symbol specifying the name of a class method of <tt>:class_name</tt>
|
194
|
-
# or a Proc that is called when a new value is assigned to the value object. The converter is
|
195
|
-
# passed the single value that is used in the assignment and is only called if the new value is
|
196
|
-
# not an instance of <tt>:class_name</tt>. If <tt>:allow_nil</tt> is set to true, the converter
|
197
|
-
# can return nil to skip the assignment.
|
198
|
-
#
|
199
|
-
# Option examples:
|
200
|
-
# composed_of :temperature, mapping: %w(reading celsius)
|
201
|
-
# composed_of :balance, class_name: "Money", mapping: %w(balance amount),
|
202
|
-
# converter: Proc.new { |balance| balance.to_money }
|
203
|
-
# composed_of :address, mapping: [ %w(address_street street), %w(address_city city) ]
|
204
|
-
# composed_of :gps_location
|
205
|
-
# composed_of :gps_location, allow_nil: true
|
206
|
-
# composed_of :ip_address,
|
207
|
-
# class_name: 'IPAddr',
|
208
|
-
# mapping: %w(ip to_i),
|
209
|
-
# constructor: Proc.new { |ip| IPAddr.new(ip, Socket::AF_INET) },
|
210
|
-
# converter: Proc.new { |ip| ip.is_a?(Integer) ? IPAddr.new(ip, Socket::AF_INET) : IPAddr.new(ip.to_s) }
|
211
|
-
#
|
212
|
-
def composed_of(part_id, options = {})
|
213
|
-
options.assert_valid_keys(:class_name, :mapping, :allow_nil, :constructor, :converter)
|
11
|
+
def reload(*) # :nodoc:
|
12
|
+
clear_aggregation_cache
|
13
|
+
super
|
14
|
+
end
|
214
15
|
|
215
|
-
|
216
|
-
class_name = options[:class_name] || name.camelize
|
217
|
-
mapping = options[:mapping] || [ name, name ]
|
218
|
-
mapping = [ mapping ] unless mapping.first.is_a?(Array)
|
219
|
-
allow_nil = options[:allow_nil] || false
|
220
|
-
constructor = options[:constructor] || :new
|
221
|
-
converter = options[:converter]
|
16
|
+
private
|
222
17
|
|
223
|
-
|
224
|
-
|
18
|
+
def clear_aggregation_cache
|
19
|
+
@aggregation_cache.clear if persisted?
|
20
|
+
end
|
225
21
|
|
226
|
-
|
227
|
-
|
22
|
+
def init_internals
|
23
|
+
@aggregation_cache = {}
|
24
|
+
super
|
228
25
|
end
|
229
26
|
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
27
|
+
# Active Record implements aggregation through a macro-like class method called #composed_of
|
28
|
+
# for representing attributes as value objects. It expresses relationships like "Account [is]
|
29
|
+
# composed of Money [among other things]" or "Person [is] composed of [an] address". Each call
|
30
|
+
# to the macro adds a description of how the value objects are created from the attributes of
|
31
|
+
# the entity object (when the entity is initialized either as a new object or from finding an
|
32
|
+
# existing object) and how it can be turned back into attributes (when the entity is saved to
|
33
|
+
# the database).
|
34
|
+
#
|
35
|
+
# class Customer < ActiveRecord::Base
|
36
|
+
# composed_of :balance, class_name: "Money", mapping: %w(balance amount)
|
37
|
+
# composed_of :address, mapping: [ %w(address_street street), %w(address_city city) ]
|
38
|
+
# end
|
39
|
+
#
|
40
|
+
# The customer class now has the following methods to manipulate the value objects:
|
41
|
+
# * <tt>Customer#balance, Customer#balance=(money)</tt>
|
42
|
+
# * <tt>Customer#address, Customer#address=(address)</tt>
|
43
|
+
#
|
44
|
+
# These methods will operate with value objects like the ones described below:
|
45
|
+
#
|
46
|
+
# class Money
|
47
|
+
# include Comparable
|
48
|
+
# attr_reader :amount, :currency
|
49
|
+
# EXCHANGE_RATES = { "USD_TO_DKK" => 6 }
|
50
|
+
#
|
51
|
+
# def initialize(amount, currency = "USD")
|
52
|
+
# @amount, @currency = amount, currency
|
53
|
+
# end
|
54
|
+
#
|
55
|
+
# def exchange_to(other_currency)
|
56
|
+
# exchanged_amount = (amount * EXCHANGE_RATES["#{currency}_TO_#{other_currency}"]).floor
|
57
|
+
# Money.new(exchanged_amount, other_currency)
|
58
|
+
# end
|
59
|
+
#
|
60
|
+
# def ==(other_money)
|
61
|
+
# amount == other_money.amount && currency == other_money.currency
|
62
|
+
# end
|
63
|
+
#
|
64
|
+
# def <=>(other_money)
|
65
|
+
# if currency == other_money.currency
|
66
|
+
# amount <=> other_money.amount
|
67
|
+
# else
|
68
|
+
# amount <=> other_money.exchange_to(currency).amount
|
69
|
+
# end
|
70
|
+
# end
|
71
|
+
# end
|
72
|
+
#
|
73
|
+
# class Address
|
74
|
+
# attr_reader :street, :city
|
75
|
+
# def initialize(street, city)
|
76
|
+
# @street, @city = street, city
|
77
|
+
# end
|
78
|
+
#
|
79
|
+
# def close_to?(other_address)
|
80
|
+
# city == other_address.city
|
81
|
+
# end
|
82
|
+
#
|
83
|
+
# def ==(other_address)
|
84
|
+
# city == other_address.city && street == other_address.street
|
85
|
+
# end
|
86
|
+
# end
|
87
|
+
#
|
88
|
+
# Now it's possible to access attributes from the database through the value objects instead. If
|
89
|
+
# you choose to name the composition the same as the attribute's name, it will be the only way to
|
90
|
+
# access that attribute. That's the case with our +balance+ attribute. You interact with the value
|
91
|
+
# objects just like you would with any other attribute:
|
92
|
+
#
|
93
|
+
# customer.balance = Money.new(20) # sets the Money value object and the attribute
|
94
|
+
# customer.balance # => Money value object
|
95
|
+
# customer.balance.exchange_to("DKK") # => Money.new(120, "DKK")
|
96
|
+
# customer.balance > Money.new(10) # => true
|
97
|
+
# customer.balance == Money.new(20) # => true
|
98
|
+
# customer.balance < Money.new(5) # => false
|
99
|
+
#
|
100
|
+
# Value objects can also be composed of multiple attributes, such as the case of Address. The order
|
101
|
+
# of the mappings will determine the order of the parameters.
|
102
|
+
#
|
103
|
+
# customer.address_street = "Hyancintvej"
|
104
|
+
# customer.address_city = "Copenhagen"
|
105
|
+
# customer.address # => Address.new("Hyancintvej", "Copenhagen")
|
106
|
+
#
|
107
|
+
# customer.address = Address.new("May Street", "Chicago")
|
108
|
+
# customer.address_street # => "May Street"
|
109
|
+
# customer.address_city # => "Chicago"
|
110
|
+
#
|
111
|
+
# == Writing value objects
|
112
|
+
#
|
113
|
+
# Value objects are immutable and interchangeable objects that represent a given value, such as
|
114
|
+
# a Money object representing $5. Two Money objects both representing $5 should be equal (through
|
115
|
+
# methods such as <tt>==</tt> and <tt><=></tt> from Comparable if ranking makes sense). This is
|
116
|
+
# unlike entity objects where equality is determined by identity. An entity class such as Customer can
|
117
|
+
# easily have two different objects that both have an address on Hyancintvej. Entity identity is
|
118
|
+
# determined by object or relational unique identifiers (such as primary keys). Normal
|
119
|
+
# ActiveRecord::Base classes are entity objects.
|
120
|
+
#
|
121
|
+
# It's also important to treat the value objects as immutable. Don't allow the Money object to have
|
122
|
+
# its amount changed after creation. Create a new Money object with the new value instead. The
|
123
|
+
# <tt>Money#exchange_to</tt> method is an example of this. It returns a new value object instead of changing
|
124
|
+
# its own values. Active Record won't persist value objects that have been changed through means
|
125
|
+
# other than the writer method.
|
126
|
+
#
|
127
|
+
# The immutable requirement is enforced by Active Record by freezing any object assigned as a value
|
128
|
+
# object. Attempting to change it afterwards will result in a +RuntimeError+.
|
129
|
+
#
|
130
|
+
# Read more about value objects on http://c2.com/cgi/wiki?ValueObject and on the dangers of not
|
131
|
+
# keeping value objects immutable on http://c2.com/cgi/wiki?ValueObjectsShouldBeImmutable
|
132
|
+
#
|
133
|
+
# == Custom constructors and converters
|
134
|
+
#
|
135
|
+
# By default value objects are initialized by calling the <tt>new</tt> constructor of the value
|
136
|
+
# class passing each of the mapped attributes, in the order specified by the <tt>:mapping</tt>
|
137
|
+
# option, as arguments. If the value class doesn't support this convention then #composed_of allows
|
138
|
+
# a custom constructor to be specified.
|
139
|
+
#
|
140
|
+
# When a new value is assigned to the value object, the default assumption is that the new value
|
141
|
+
# is an instance of the value class. Specifying a custom converter allows the new value to be automatically
|
142
|
+
# converted to an instance of value class if necessary.
|
143
|
+
#
|
144
|
+
# For example, the +NetworkResource+ model has +network_address+ and +cidr_range+ attributes that should be
|
145
|
+
# aggregated using the +NetAddr::CIDR+ value class (http://www.rubydoc.info/gems/netaddr/1.5.0/NetAddr/CIDR).
|
146
|
+
# The constructor for the value class is called +create+ and it expects a CIDR address string as a parameter.
|
147
|
+
# New values can be assigned to the value object using either another +NetAddr::CIDR+ object, a string
|
148
|
+
# or an array. The <tt>:constructor</tt> and <tt>:converter</tt> options can be used to meet
|
149
|
+
# these requirements:
|
150
|
+
#
|
151
|
+
# class NetworkResource < ActiveRecord::Base
|
152
|
+
# composed_of :cidr,
|
153
|
+
# class_name: 'NetAddr::CIDR',
|
154
|
+
# mapping: [ %w(network_address network), %w(cidr_range bits) ],
|
155
|
+
# allow_nil: true,
|
156
|
+
# constructor: Proc.new { |network_address, cidr_range| NetAddr::CIDR.create("#{network_address}/#{cidr_range}") },
|
157
|
+
# converter: Proc.new { |value| NetAddr::CIDR.create(value.is_a?(Array) ? value.join('/') : value) }
|
158
|
+
# end
|
159
|
+
#
|
160
|
+
# # This calls the :constructor
|
161
|
+
# network_resource = NetworkResource.new(network_address: '192.168.0.1', cidr_range: 24)
|
162
|
+
#
|
163
|
+
# # These assignments will both use the :converter
|
164
|
+
# network_resource.cidr = [ '192.168.2.1', 8 ]
|
165
|
+
# network_resource.cidr = '192.168.0.1/24'
|
166
|
+
#
|
167
|
+
# # This assignment won't use the :converter as the value is already an instance of the value class
|
168
|
+
# network_resource.cidr = NetAddr::CIDR.create('192.168.2.1/8')
|
169
|
+
#
|
170
|
+
# # Saving and then reloading will use the :constructor on reload
|
171
|
+
# network_resource.save
|
172
|
+
# network_resource.reload
|
173
|
+
#
|
174
|
+
# == Finding records by a value object
|
175
|
+
#
|
176
|
+
# Once a #composed_of relationship is specified for a model, records can be loaded from the database
|
177
|
+
# by specifying an instance of the value object in the conditions hash. The following example
|
178
|
+
# finds all customers with +address_street+ equal to "May Street" and +address_city+ equal to "Chicago":
|
179
|
+
#
|
180
|
+
# Customer.where(address: Address.new("May Street", "Chicago"))
|
181
|
+
#
|
182
|
+
module ClassMethods
|
183
|
+
# Adds reader and writer methods for manipulating a value object:
|
184
|
+
# <tt>composed_of :address</tt> adds <tt>address</tt> and <tt>address=(new_address)</tt> methods.
|
185
|
+
#
|
186
|
+
# Options are:
|
187
|
+
# * <tt>:class_name</tt> - Specifies the class name of the association. Use it only if that name
|
188
|
+
# can't be inferred from the part id. So <tt>composed_of :address</tt> will by default be linked
|
189
|
+
# to the Address class, but if the real class name is +CompanyAddress+, you'll have to specify it
|
190
|
+
# with this option.
|
191
|
+
# * <tt>:mapping</tt> - Specifies the mapping of entity attributes to attributes of the value
|
192
|
+
# object. Each mapping is represented as an array where the first item is the name of the
|
193
|
+
# entity attribute and the second item is the name of the attribute in the value object. The
|
194
|
+
# order in which mappings are defined determines the order in which attributes are sent to the
|
195
|
+
# value class constructor.
|
196
|
+
# * <tt>:allow_nil</tt> - Specifies that the value object will not be instantiated when all mapped
|
197
|
+
# attributes are +nil+. Setting the value object to +nil+ has the effect of writing +nil+ to all
|
198
|
+
# mapped attributes.
|
199
|
+
# This defaults to +false+.
|
200
|
+
# * <tt>:constructor</tt> - A symbol specifying the name of the constructor method or a Proc that
|
201
|
+
# is called to initialize the value object. The constructor is passed all of the mapped attributes,
|
202
|
+
# in the order that they are defined in the <tt>:mapping option</tt>, as arguments and uses them
|
203
|
+
# to instantiate a <tt>:class_name</tt> object.
|
204
|
+
# The default is <tt>:new</tt>.
|
205
|
+
# * <tt>:converter</tt> - A symbol specifying the name of a class method of <tt>:class_name</tt>
|
206
|
+
# or a Proc that is called when a new value is assigned to the value object. The converter is
|
207
|
+
# passed the single value that is used in the assignment and is only called if the new value is
|
208
|
+
# not an instance of <tt>:class_name</tt>. If <tt>:allow_nil</tt> is set to true, the converter
|
209
|
+
# can return +nil+ to skip the assignment.
|
210
|
+
#
|
211
|
+
# Option examples:
|
212
|
+
# composed_of :temperature, mapping: %w(reading celsius)
|
213
|
+
# composed_of :balance, class_name: "Money", mapping: %w(balance amount)
|
214
|
+
# composed_of :address, mapping: [ %w(address_street street), %w(address_city city) ]
|
215
|
+
# composed_of :gps_location
|
216
|
+
# composed_of :gps_location, allow_nil: true
|
217
|
+
# composed_of :ip_address,
|
218
|
+
# class_name: 'IPAddr',
|
219
|
+
# mapping: %w(ip to_i),
|
220
|
+
# constructor: Proc.new { |ip| IPAddr.new(ip, Socket::AF_INET) },
|
221
|
+
# converter: Proc.new { |ip| ip.is_a?(Integer) ? IPAddr.new(ip, Socket::AF_INET) : IPAddr.new(ip.to_s) }
|
222
|
+
#
|
223
|
+
def composed_of(part_id, options = {})
|
224
|
+
options.assert_valid_keys(:class_name, :mapping, :allow_nil, :constructor, :converter)
|
225
|
+
|
226
|
+
unless self < Aggregations
|
227
|
+
include Aggregations
|
241
228
|
end
|
242
|
-
end
|
243
229
|
|
244
|
-
|
245
|
-
|
246
|
-
|
230
|
+
name = part_id.id2name
|
231
|
+
class_name = options[:class_name] || name.camelize
|
232
|
+
mapping = options[:mapping] || [ name, name ]
|
233
|
+
mapping = [ mapping ] unless mapping.first.is_a?(Array)
|
234
|
+
allow_nil = options[:allow_nil] || false
|
235
|
+
constructor = options[:constructor] || :new
|
236
|
+
converter = options[:converter]
|
247
237
|
|
248
|
-
|
249
|
-
|
250
|
-
end
|
238
|
+
reader_method(name, class_name, mapping, allow_nil, constructor)
|
239
|
+
writer_method(name, class_name, mapping, allow_nil, converter)
|
251
240
|
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
241
|
+
reflection = ActiveRecord::Reflection.create(:composed_of, part_id, nil, options, self)
|
242
|
+
Reflection.add_aggregate_reflection self, part_id, reflection
|
243
|
+
end
|
244
|
+
|
245
|
+
private
|
246
|
+
def reader_method(name, class_name, mapping, allow_nil, constructor)
|
247
|
+
define_method(name) do
|
248
|
+
if @aggregation_cache[name].nil? && (!allow_nil || mapping.any? { |key, _| !_read_attribute(key).nil? })
|
249
|
+
attrs = mapping.collect { |key, _| _read_attribute(key) }
|
250
|
+
object = constructor.respond_to?(:call) ?
|
251
|
+
constructor.call(*attrs) :
|
252
|
+
class_name.constantize.send(constructor, *attrs)
|
253
|
+
@aggregation_cache[name] = object
|
254
|
+
end
|
255
|
+
@aggregation_cache[name]
|
256
256
|
end
|
257
|
+
end
|
257
258
|
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
259
|
+
def writer_method(name, class_name, mapping, allow_nil, converter)
|
260
|
+
define_method("#{name}=") do |part|
|
261
|
+
klass = class_name.constantize
|
262
|
+
|
263
|
+
unless part.is_a?(klass) || converter.nil? || part.nil?
|
264
|
+
part = converter.respond_to?(:call) ? converter.call(part) : klass.send(converter, part)
|
265
|
+
end
|
266
|
+
|
267
|
+
hash_from_multiparameter_assignment = part.is_a?(Hash) &&
|
268
|
+
part.each_key.all? { |k| k.is_a?(Integer) }
|
269
|
+
if hash_from_multiparameter_assignment
|
270
|
+
raise ArgumentError unless part.size == part.each_key.max
|
271
|
+
part = klass.new(*part.sort.map(&:last))
|
272
|
+
end
|
273
|
+
|
274
|
+
if part.nil? && allow_nil
|
275
|
+
mapping.each { |key, _| self[key] = nil }
|
276
|
+
@aggregation_cache[name] = nil
|
277
|
+
else
|
278
|
+
mapping.each { |key, value| self[key] = part.send(value) }
|
279
|
+
@aggregation_cache[name] = part.freeze
|
280
|
+
end
|
264
281
|
end
|
265
282
|
end
|
266
|
-
|
267
|
-
end
|
283
|
+
end
|
268
284
|
end
|
269
285
|
end
|