omg-activerecord 8.0.0.alpha1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +355 -0
- data/MIT-LICENSE +22 -0
- data/README.rdoc +219 -0
- data/examples/performance.rb +185 -0
- data/examples/simple.rb +15 -0
- data/lib/active_record/aggregations.rb +287 -0
- data/lib/active_record/association_relation.rb +50 -0
- data/lib/active_record/associations/alias_tracker.rb +90 -0
- data/lib/active_record/associations/association.rb +417 -0
- data/lib/active_record/associations/association_scope.rb +175 -0
- data/lib/active_record/associations/belongs_to_association.rb +163 -0
- data/lib/active_record/associations/belongs_to_polymorphic_association.rb +50 -0
- data/lib/active_record/associations/builder/association.rb +170 -0
- data/lib/active_record/associations/builder/belongs_to.rb +160 -0
- data/lib/active_record/associations/builder/collection_association.rb +80 -0
- data/lib/active_record/associations/builder/has_and_belongs_to_many.rb +107 -0
- data/lib/active_record/associations/builder/has_many.rb +23 -0
- data/lib/active_record/associations/builder/has_one.rb +61 -0
- data/lib/active_record/associations/builder/singular_association.rb +48 -0
- data/lib/active_record/associations/collection_association.rb +535 -0
- data/lib/active_record/associations/collection_proxy.rb +1163 -0
- data/lib/active_record/associations/disable_joins_association_scope.rb +59 -0
- data/lib/active_record/associations/errors.rb +265 -0
- data/lib/active_record/associations/foreign_association.rb +40 -0
- data/lib/active_record/associations/has_many_association.rb +167 -0
- data/lib/active_record/associations/has_many_through_association.rb +232 -0
- data/lib/active_record/associations/has_one_association.rb +142 -0
- data/lib/active_record/associations/has_one_through_association.rb +45 -0
- data/lib/active_record/associations/join_dependency/join_association.rb +106 -0
- data/lib/active_record/associations/join_dependency/join_base.rb +23 -0
- data/lib/active_record/associations/join_dependency/join_part.rb +71 -0
- data/lib/active_record/associations/join_dependency.rb +301 -0
- data/lib/active_record/associations/nested_error.rb +47 -0
- data/lib/active_record/associations/preloader/association.rb +316 -0
- data/lib/active_record/associations/preloader/batch.rb +48 -0
- data/lib/active_record/associations/preloader/branch.rb +153 -0
- data/lib/active_record/associations/preloader/through_association.rb +150 -0
- data/lib/active_record/associations/preloader.rb +135 -0
- data/lib/active_record/associations/singular_association.rb +76 -0
- data/lib/active_record/associations/through_association.rb +132 -0
- data/lib/active_record/associations.rb +1897 -0
- data/lib/active_record/asynchronous_queries_tracker.rb +64 -0
- data/lib/active_record/attribute_assignment.rb +82 -0
- data/lib/active_record/attribute_methods/before_type_cast.rb +106 -0
- data/lib/active_record/attribute_methods/composite_primary_key.rb +84 -0
- data/lib/active_record/attribute_methods/dirty.rb +262 -0
- data/lib/active_record/attribute_methods/primary_key.rb +158 -0
- data/lib/active_record/attribute_methods/query.rb +50 -0
- data/lib/active_record/attribute_methods/read.rb +46 -0
- data/lib/active_record/attribute_methods/serialization.rb +232 -0
- data/lib/active_record/attribute_methods/time_zone_conversion.rb +94 -0
- data/lib/active_record/attribute_methods/write.rb +49 -0
- data/lib/active_record/attribute_methods.rb +542 -0
- data/lib/active_record/attributes.rb +307 -0
- data/lib/active_record/autosave_association.rb +586 -0
- data/lib/active_record/base.rb +338 -0
- data/lib/active_record/callbacks.rb +452 -0
- data/lib/active_record/coders/column_serializer.rb +61 -0
- data/lib/active_record/coders/json.rb +15 -0
- data/lib/active_record/coders/yaml_column.rb +95 -0
- data/lib/active_record/connection_adapters/abstract/connection_handler.rb +290 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool/queue.rb +210 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool/reaper.rb +78 -0
- data/lib/active_record/connection_adapters/abstract/connection_pool.rb +923 -0
- data/lib/active_record/connection_adapters/abstract/database_limits.rb +31 -0
- data/lib/active_record/connection_adapters/abstract/database_statements.rb +747 -0
- data/lib/active_record/connection_adapters/abstract/query_cache.rb +319 -0
- data/lib/active_record/connection_adapters/abstract/quoting.rb +239 -0
- data/lib/active_record/connection_adapters/abstract/savepoints.rb +24 -0
- data/lib/active_record/connection_adapters/abstract/schema_creation.rb +190 -0
- data/lib/active_record/connection_adapters/abstract/schema_definitions.rb +961 -0
- data/lib/active_record/connection_adapters/abstract/schema_dumper.rb +106 -0
- data/lib/active_record/connection_adapters/abstract/schema_statements.rb +1883 -0
- data/lib/active_record/connection_adapters/abstract/transaction.rb +676 -0
- data/lib/active_record/connection_adapters/abstract_adapter.rb +1218 -0
- data/lib/active_record/connection_adapters/abstract_mysql_adapter.rb +1016 -0
- data/lib/active_record/connection_adapters/column.rb +122 -0
- data/lib/active_record/connection_adapters/deduplicable.rb +29 -0
- data/lib/active_record/connection_adapters/mysql/column.rb +28 -0
- data/lib/active_record/connection_adapters/mysql/database_statements.rb +95 -0
- data/lib/active_record/connection_adapters/mysql/explain_pretty_printer.rb +71 -0
- data/lib/active_record/connection_adapters/mysql/quoting.rb +114 -0
- data/lib/active_record/connection_adapters/mysql/schema_creation.rb +106 -0
- data/lib/active_record/connection_adapters/mysql/schema_definitions.rb +106 -0
- data/lib/active_record/connection_adapters/mysql/schema_dumper.rb +97 -0
- data/lib/active_record/connection_adapters/mysql/schema_statements.rb +300 -0
- data/lib/active_record/connection_adapters/mysql/type_metadata.rb +40 -0
- data/lib/active_record/connection_adapters/mysql2/database_statements.rb +96 -0
- data/lib/active_record/connection_adapters/mysql2_adapter.rb +196 -0
- data/lib/active_record/connection_adapters/pool_config.rb +83 -0
- data/lib/active_record/connection_adapters/pool_manager.rb +57 -0
- data/lib/active_record/connection_adapters/postgresql/column.rb +82 -0
- data/lib/active_record/connection_adapters/postgresql/database_statements.rb +231 -0
- data/lib/active_record/connection_adapters/postgresql/explain_pretty_printer.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/array.rb +91 -0
- data/lib/active_record/connection_adapters/postgresql/oid/bit.rb +53 -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 +54 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date.rb +31 -0
- data/lib/active_record/connection_adapters/postgresql/oid/date_time.rb +36 -0
- data/lib/active_record/connection_adapters/postgresql/oid/decimal.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/enum.rb +20 -0
- data/lib/active_record/connection_adapters/postgresql/oid/hstore.rb +109 -0
- data/lib/active_record/connection_adapters/postgresql/oid/inet.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/interval.rb +49 -0
- data/lib/active_record/connection_adapters/postgresql/oid/jsonb.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/legacy_point.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/oid/macaddr.rb +25 -0
- data/lib/active_record/connection_adapters/postgresql/oid/money.rb +42 -0
- data/lib/active_record/connection_adapters/postgresql/oid/oid.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/point.rb +74 -0
- data/lib/active_record/connection_adapters/postgresql/oid/range.rb +124 -0
- data/lib/active_record/connection_adapters/postgresql/oid/specialized_string.rb +18 -0
- data/lib/active_record/connection_adapters/postgresql/oid/timestamp.rb +15 -0
- data/lib/active_record/connection_adapters/postgresql/oid/timestamp_with_time_zone.rb +30 -0
- data/lib/active_record/connection_adapters/postgresql/oid/type_map_initializer.rb +125 -0
- data/lib/active_record/connection_adapters/postgresql/oid/uuid.rb +45 -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 +38 -0
- data/lib/active_record/connection_adapters/postgresql/quoting.rb +238 -0
- data/lib/active_record/connection_adapters/postgresql/referential_integrity.rb +71 -0
- data/lib/active_record/connection_adapters/postgresql/schema_creation.rb +169 -0
- data/lib/active_record/connection_adapters/postgresql/schema_definitions.rb +392 -0
- data/lib/active_record/connection_adapters/postgresql/schema_dumper.rb +127 -0
- data/lib/active_record/connection_adapters/postgresql/schema_statements.rb +1162 -0
- data/lib/active_record/connection_adapters/postgresql/type_metadata.rb +44 -0
- data/lib/active_record/connection_adapters/postgresql/utils.rb +79 -0
- data/lib/active_record/connection_adapters/postgresql_adapter.rb +1182 -0
- data/lib/active_record/connection_adapters/schema_cache.rb +478 -0
- data/lib/active_record/connection_adapters/sql_type_metadata.rb +45 -0
- data/lib/active_record/connection_adapters/sqlite3/column.rb +62 -0
- data/lib/active_record/connection_adapters/sqlite3/database_statements.rb +145 -0
- data/lib/active_record/connection_adapters/sqlite3/explain_pretty_printer.rb +21 -0
- data/lib/active_record/connection_adapters/sqlite3/quoting.rb +116 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_creation.rb +37 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_definitions.rb +39 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_dumper.rb +47 -0
- data/lib/active_record/connection_adapters/sqlite3/schema_statements.rb +221 -0
- data/lib/active_record/connection_adapters/sqlite3_adapter.rb +843 -0
- data/lib/active_record/connection_adapters/statement_pool.rb +67 -0
- data/lib/active_record/connection_adapters/trilogy/database_statements.rb +69 -0
- data/lib/active_record/connection_adapters/trilogy_adapter.rb +212 -0
- data/lib/active_record/connection_adapters.rb +176 -0
- data/lib/active_record/connection_handling.rb +413 -0
- data/lib/active_record/core.rb +836 -0
- data/lib/active_record/counter_cache.rb +230 -0
- data/lib/active_record/database_configurations/connection_url_resolver.rb +105 -0
- data/lib/active_record/database_configurations/database_config.rb +104 -0
- data/lib/active_record/database_configurations/hash_config.rb +172 -0
- data/lib/active_record/database_configurations/url_config.rb +78 -0
- data/lib/active_record/database_configurations.rb +309 -0
- data/lib/active_record/delegated_type.rb +289 -0
- data/lib/active_record/deprecator.rb +7 -0
- data/lib/active_record/destroy_association_async_job.rb +38 -0
- data/lib/active_record/disable_joins_association_relation.rb +39 -0
- data/lib/active_record/dynamic_matchers.rb +121 -0
- data/lib/active_record/encryption/auto_filtered_parameters.rb +66 -0
- data/lib/active_record/encryption/cipher/aes256_gcm.rb +101 -0
- data/lib/active_record/encryption/cipher.rb +53 -0
- data/lib/active_record/encryption/config.rb +70 -0
- data/lib/active_record/encryption/configurable.rb +60 -0
- data/lib/active_record/encryption/context.rb +42 -0
- data/lib/active_record/encryption/contexts.rb +76 -0
- data/lib/active_record/encryption/derived_secret_key_provider.rb +18 -0
- data/lib/active_record/encryption/deterministic_key_provider.rb +14 -0
- data/lib/active_record/encryption/encryptable_record.rb +230 -0
- data/lib/active_record/encryption/encrypted_attribute_type.rb +184 -0
- data/lib/active_record/encryption/encrypted_fixtures.rb +38 -0
- data/lib/active_record/encryption/encrypting_only_encryptor.rb +12 -0
- data/lib/active_record/encryption/encryptor.rb +177 -0
- data/lib/active_record/encryption/envelope_encryption_key_provider.rb +55 -0
- data/lib/active_record/encryption/errors.rb +15 -0
- data/lib/active_record/encryption/extended_deterministic_queries.rb +159 -0
- data/lib/active_record/encryption/extended_deterministic_uniqueness_validator.rb +28 -0
- data/lib/active_record/encryption/key.rb +28 -0
- data/lib/active_record/encryption/key_generator.rb +53 -0
- data/lib/active_record/encryption/key_provider.rb +46 -0
- data/lib/active_record/encryption/message.rb +33 -0
- data/lib/active_record/encryption/message_pack_message_serializer.rb +76 -0
- data/lib/active_record/encryption/message_serializer.rb +96 -0
- data/lib/active_record/encryption/null_encryptor.rb +25 -0
- data/lib/active_record/encryption/properties.rb +76 -0
- data/lib/active_record/encryption/read_only_null_encryptor.rb +28 -0
- data/lib/active_record/encryption/scheme.rb +107 -0
- data/lib/active_record/encryption.rb +58 -0
- data/lib/active_record/enum.rb +424 -0
- data/lib/active_record/errors.rb +614 -0
- data/lib/active_record/explain.rb +63 -0
- data/lib/active_record/explain_registry.rb +37 -0
- data/lib/active_record/explain_subscriber.rb +34 -0
- data/lib/active_record/fixture_set/file.rb +89 -0
- data/lib/active_record/fixture_set/model_metadata.rb +42 -0
- data/lib/active_record/fixture_set/render_context.rb +19 -0
- data/lib/active_record/fixture_set/table_row.rb +208 -0
- data/lib/active_record/fixture_set/table_rows.rb +46 -0
- data/lib/active_record/fixtures.rb +850 -0
- data/lib/active_record/future_result.rb +182 -0
- data/lib/active_record/gem_version.rb +17 -0
- data/lib/active_record/inheritance.rb +366 -0
- data/lib/active_record/insert_all.rb +328 -0
- data/lib/active_record/integration.rb +209 -0
- data/lib/active_record/internal_metadata.rb +164 -0
- data/lib/active_record/legacy_yaml_adapter.rb +15 -0
- data/lib/active_record/locale/en.yml +48 -0
- data/lib/active_record/locking/optimistic.rb +228 -0
- data/lib/active_record/locking/pessimistic.rb +102 -0
- data/lib/active_record/log_subscriber.rb +149 -0
- data/lib/active_record/marshalling.rb +56 -0
- data/lib/active_record/message_pack.rb +124 -0
- data/lib/active_record/middleware/database_selector/resolver/session.rb +48 -0
- data/lib/active_record/middleware/database_selector/resolver.rb +92 -0
- data/lib/active_record/middleware/database_selector.rb +87 -0
- data/lib/active_record/middleware/shard_selector.rb +62 -0
- data/lib/active_record/migration/command_recorder.rb +406 -0
- data/lib/active_record/migration/compatibility.rb +490 -0
- data/lib/active_record/migration/default_strategy.rb +22 -0
- data/lib/active_record/migration/execution_strategy.rb +19 -0
- data/lib/active_record/migration/join_table.rb +16 -0
- data/lib/active_record/migration/pending_migration_connection.rb +21 -0
- data/lib/active_record/migration.rb +1626 -0
- data/lib/active_record/model_schema.rb +635 -0
- data/lib/active_record/nested_attributes.rb +633 -0
- data/lib/active_record/no_touching.rb +65 -0
- data/lib/active_record/normalization.rb +163 -0
- data/lib/active_record/persistence.rb +968 -0
- data/lib/active_record/promise.rb +84 -0
- data/lib/active_record/query_cache.rb +56 -0
- data/lib/active_record/query_logs.rb +247 -0
- data/lib/active_record/query_logs_formatter.rb +30 -0
- data/lib/active_record/querying.rb +122 -0
- data/lib/active_record/railtie.rb +440 -0
- data/lib/active_record/railties/console_sandbox.rb +5 -0
- data/lib/active_record/railties/controller_runtime.rb +65 -0
- data/lib/active_record/railties/databases.rake +641 -0
- data/lib/active_record/railties/job_runtime.rb +23 -0
- data/lib/active_record/readonly_attributes.rb +66 -0
- data/lib/active_record/reflection.rb +1287 -0
- data/lib/active_record/relation/batches/batch_enumerator.rb +115 -0
- data/lib/active_record/relation/batches.rb +491 -0
- data/lib/active_record/relation/calculations.rb +679 -0
- data/lib/active_record/relation/delegation.rb +154 -0
- data/lib/active_record/relation/finder_methods.rb +661 -0
- data/lib/active_record/relation/from_clause.rb +30 -0
- data/lib/active_record/relation/merger.rb +192 -0
- data/lib/active_record/relation/predicate_builder/array_handler.rb +48 -0
- data/lib/active_record/relation/predicate_builder/association_query_value.rb +76 -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 +60 -0
- data/lib/active_record/relation/predicate_builder/range_handler.rb +22 -0
- data/lib/active_record/relation/predicate_builder/relation_handler.rb +24 -0
- data/lib/active_record/relation/predicate_builder.rb +181 -0
- data/lib/active_record/relation/query_attribute.rb +68 -0
- data/lib/active_record/relation/query_methods.rb +2235 -0
- data/lib/active_record/relation/record_fetch_warning.rb +52 -0
- data/lib/active_record/relation/spawn_methods.rb +78 -0
- data/lib/active_record/relation/where_clause.rb +218 -0
- data/lib/active_record/relation.rb +1495 -0
- data/lib/active_record/result.rb +249 -0
- data/lib/active_record/runtime_registry.rb +82 -0
- data/lib/active_record/sanitization.rb +254 -0
- data/lib/active_record/schema.rb +77 -0
- data/lib/active_record/schema_dumper.rb +364 -0
- data/lib/active_record/schema_migration.rb +106 -0
- data/lib/active_record/scoping/default.rb +205 -0
- data/lib/active_record/scoping/named.rb +202 -0
- data/lib/active_record/scoping.rb +136 -0
- data/lib/active_record/secure_password.rb +60 -0
- data/lib/active_record/secure_token.rb +66 -0
- data/lib/active_record/serialization.rb +29 -0
- data/lib/active_record/signed_id.rb +137 -0
- data/lib/active_record/statement_cache.rb +164 -0
- data/lib/active_record/store.rb +299 -0
- data/lib/active_record/suppressor.rb +59 -0
- data/lib/active_record/table_metadata.rb +85 -0
- data/lib/active_record/tasks/database_tasks.rb +681 -0
- data/lib/active_record/tasks/mysql_database_tasks.rb +120 -0
- data/lib/active_record/tasks/postgresql_database_tasks.rb +147 -0
- data/lib/active_record/tasks/sqlite_database_tasks.rb +89 -0
- data/lib/active_record/test_databases.rb +24 -0
- data/lib/active_record/test_fixtures.rb +321 -0
- data/lib/active_record/testing/query_assertions.rb +121 -0
- data/lib/active_record/timestamp.rb +177 -0
- data/lib/active_record/token_for.rb +123 -0
- data/lib/active_record/touch_later.rb +70 -0
- data/lib/active_record/transaction.rb +132 -0
- data/lib/active_record/transactions.rb +523 -0
- data/lib/active_record/translation.rb +22 -0
- data/lib/active_record/type/adapter_specific_registry.rb +144 -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 +57 -0
- data/lib/active_record/type/internal/timezone.rb +22 -0
- data/lib/active_record/type/json.rb +30 -0
- data/lib/active_record/type/serialized.rb +76 -0
- data/lib/active_record/type/text.rb +11 -0
- data/lib/active_record/type/time.rb +35 -0
- data/lib/active_record/type/type_map.rb +58 -0
- data/lib/active_record/type/unsigned_integer.rb +16 -0
- data/lib/active_record/type.rb +83 -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 +65 -0
- data/lib/active_record/validations/length.rb +26 -0
- data/lib/active_record/validations/numericality.rb +36 -0
- data/lib/active_record/validations/presence.rb +45 -0
- data/lib/active_record/validations/uniqueness.rb +295 -0
- data/lib/active_record/validations.rb +101 -0
- data/lib/active_record/version.rb +10 -0
- data/lib/active_record.rb +616 -0
- data/lib/arel/alias_predication.rb +9 -0
- data/lib/arel/attributes/attribute.rb +33 -0
- data/lib/arel/collectors/bind.rb +31 -0
- data/lib/arel/collectors/composite.rb +46 -0
- data/lib/arel/collectors/plain_string.rb +20 -0
- data/lib/arel/collectors/sql_string.rb +27 -0
- data/lib/arel/collectors/substitute_binds.rb +35 -0
- data/lib/arel/crud.rb +48 -0
- data/lib/arel/delete_manager.rb +32 -0
- data/lib/arel/errors.rb +19 -0
- data/lib/arel/expressions.rb +29 -0
- data/lib/arel/factory_methods.rb +53 -0
- data/lib/arel/filter_predications.rb +9 -0
- data/lib/arel/insert_manager.rb +48 -0
- data/lib/arel/math.rb +45 -0
- data/lib/arel/nodes/ascending.rb +23 -0
- data/lib/arel/nodes/binary.rb +125 -0
- data/lib/arel/nodes/bind_param.rb +44 -0
- data/lib/arel/nodes/bound_sql_literal.rb +65 -0
- data/lib/arel/nodes/case.rb +55 -0
- data/lib/arel/nodes/casted.rb +62 -0
- data/lib/arel/nodes/comment.rb +29 -0
- data/lib/arel/nodes/count.rb +12 -0
- data/lib/arel/nodes/cte.rb +36 -0
- data/lib/arel/nodes/delete_statement.rb +44 -0
- data/lib/arel/nodes/descending.rb +23 -0
- data/lib/arel/nodes/equality.rb +15 -0
- data/lib/arel/nodes/extract.rb +24 -0
- data/lib/arel/nodes/false.rb +16 -0
- data/lib/arel/nodes/filter.rb +10 -0
- data/lib/arel/nodes/fragments.rb +35 -0
- data/lib/arel/nodes/full_outer_join.rb +8 -0
- data/lib/arel/nodes/function.rb +45 -0
- data/lib/arel/nodes/grouping.rb +11 -0
- data/lib/arel/nodes/homogeneous_in.rb +68 -0
- data/lib/arel/nodes/in.rb +15 -0
- data/lib/arel/nodes/infix_operation.rb +92 -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/leading_join.rb +8 -0
- data/lib/arel/nodes/matches.rb +18 -0
- data/lib/arel/nodes/named_function.rb +23 -0
- data/lib/arel/nodes/nary.rb +39 -0
- data/lib/arel/nodes/node.rb +161 -0
- data/lib/arel/nodes/node_expression.rb +13 -0
- data/lib/arel/nodes/ordering.rb +27 -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 +32 -0
- data/lib/arel/nodes/string_join.rb +11 -0
- data/lib/arel/nodes/table_alias.rb +35 -0
- data/lib/arel/nodes/terminal.rb +16 -0
- data/lib/arel/nodes/true.rb +16 -0
- data/lib/arel/nodes/unary.rb +44 -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 +46 -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/nodes.rb +75 -0
- data/lib/arel/order_predications.rb +13 -0
- data/lib/arel/predications.rb +260 -0
- data/lib/arel/select_manager.rb +276 -0
- data/lib/arel/table.rb +121 -0
- data/lib/arel/tree_manager.rb +65 -0
- data/lib/arel/update_manager.rb +49 -0
- data/lib/arel/visitors/dot.rb +299 -0
- data/lib/arel/visitors/mysql.rb +111 -0
- data/lib/arel/visitors/postgresql.rb +99 -0
- data/lib/arel/visitors/sqlite.rb +38 -0
- data/lib/arel/visitors/to_sql.rb +1033 -0
- data/lib/arel/visitors/visitor.rb +45 -0
- data/lib/arel/visitors.rb +13 -0
- data/lib/arel/window_predications.rb +9 -0
- data/lib/arel.rb +73 -0
- data/lib/rails/generators/active_record/application_record/USAGE +8 -0
- data/lib/rails/generators/active_record/application_record/application_record_generator.rb +26 -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 +76 -0
- data/lib/rails/generators/active_record/migration/templates/create_table_migration.rb.tt +29 -0
- data/lib/rails/generators/active_record/migration/templates/migration.rb.tt +48 -0
- data/lib/rails/generators/active_record/migration.rb +54 -0
- data/lib/rails/generators/active_record/model/USAGE +113 -0
- data/lib/rails/generators/active_record/model/model_generator.rb +94 -0
- data/lib/rails/generators/active_record/model/templates/abstract_base_class.rb.tt +7 -0
- data/lib/rails/generators/active_record/model/templates/model.rb.tt +22 -0
- data/lib/rails/generators/active_record/model/templates/module.rb.tt +7 -0
- data/lib/rails/generators/active_record/multi_db/multi_db_generator.rb +16 -0
- data/lib/rails/generators/active_record/multi_db/templates/multi_db.rb.tt +44 -0
- data/lib/rails/generators/active_record.rb +19 -0
- metadata +505 -0
|
@@ -0,0 +1,542 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "active_support/core_ext/enumerable"
|
|
4
|
+
|
|
5
|
+
module ActiveRecord
|
|
6
|
+
# = Active Record Attribute Methods
|
|
7
|
+
module AttributeMethods
|
|
8
|
+
extend ActiveSupport::Concern
|
|
9
|
+
include ActiveModel::AttributeMethods
|
|
10
|
+
|
|
11
|
+
included do
|
|
12
|
+
initialize_generated_modules
|
|
13
|
+
include Read
|
|
14
|
+
include Write
|
|
15
|
+
include BeforeTypeCast
|
|
16
|
+
include Query
|
|
17
|
+
include PrimaryKey
|
|
18
|
+
include TimeZoneConversion
|
|
19
|
+
include Dirty
|
|
20
|
+
include Serialization
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
RESTRICTED_CLASS_METHODS = %w(private public protected allocate new name superclass)
|
|
24
|
+
|
|
25
|
+
class GeneratedAttributeMethods < Module # :nodoc:
|
|
26
|
+
LOCK = Monitor.new
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
class << self
|
|
30
|
+
def dangerous_attribute_methods # :nodoc:
|
|
31
|
+
@dangerous_attribute_methods ||= (
|
|
32
|
+
Base.instance_methods +
|
|
33
|
+
Base.private_instance_methods -
|
|
34
|
+
Base.superclass.instance_methods -
|
|
35
|
+
Base.superclass.private_instance_methods +
|
|
36
|
+
%i[__id__ dup freeze frozen? hash class clone]
|
|
37
|
+
).map { |m| -m.to_s }.to_set.freeze
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
module ClassMethods
|
|
42
|
+
def initialize_generated_modules # :nodoc:
|
|
43
|
+
@generated_attribute_methods = const_set(:GeneratedAttributeMethods, GeneratedAttributeMethods.new)
|
|
44
|
+
private_constant :GeneratedAttributeMethods
|
|
45
|
+
@attribute_methods_generated = false
|
|
46
|
+
@alias_attributes_mass_generated = false
|
|
47
|
+
include @generated_attribute_methods
|
|
48
|
+
|
|
49
|
+
super
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
# Allows you to make aliases for attributes.
|
|
53
|
+
#
|
|
54
|
+
# class Person < ActiveRecord::Base
|
|
55
|
+
# alias_attribute :nickname, :name
|
|
56
|
+
# end
|
|
57
|
+
#
|
|
58
|
+
# person = Person.create(name: 'Bob')
|
|
59
|
+
# person.name # => "Bob"
|
|
60
|
+
# person.nickname # => "Bob"
|
|
61
|
+
#
|
|
62
|
+
# The alias can also be used for querying:
|
|
63
|
+
#
|
|
64
|
+
# Person.where(nickname: "Bob")
|
|
65
|
+
# # SELECT "people".* FROM "people" WHERE "people"."name" = "Bob"
|
|
66
|
+
def alias_attribute(new_name, old_name)
|
|
67
|
+
super
|
|
68
|
+
|
|
69
|
+
if @alias_attributes_mass_generated
|
|
70
|
+
ActiveSupport::CodeGenerator.batch(generated_attribute_methods, __FILE__, __LINE__) do |code_generator|
|
|
71
|
+
generate_alias_attribute_methods(code_generator, new_name, old_name)
|
|
72
|
+
end
|
|
73
|
+
end
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def eagerly_generate_alias_attribute_methods(_new_name, _old_name) # :nodoc:
|
|
77
|
+
# alias attributes in Active Record are lazily generated
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def generate_alias_attribute_methods(code_generator, new_name, old_name) # :nodoc:
|
|
81
|
+
attribute_method_patterns.each do |pattern|
|
|
82
|
+
alias_attribute_method_definition(code_generator, pattern, new_name, old_name)
|
|
83
|
+
end
|
|
84
|
+
attribute_method_patterns_cache.clear
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
def alias_attribute_method_definition(code_generator, pattern, new_name, old_name)
|
|
88
|
+
old_name = old_name.to_s
|
|
89
|
+
|
|
90
|
+
if !abstract_class? && !has_attribute?(old_name)
|
|
91
|
+
raise ArgumentError, "#{self.name} model aliases `#{old_name}`, but `#{old_name}` is not an attribute. " \
|
|
92
|
+
"Use `alias_method :#{new_name}, :#{old_name}` or define the method manually."
|
|
93
|
+
else
|
|
94
|
+
define_attribute_method_pattern(pattern, old_name, owner: code_generator, as: new_name, override: true)
|
|
95
|
+
end
|
|
96
|
+
end
|
|
97
|
+
|
|
98
|
+
def attribute_methods_generated? # :nodoc:
|
|
99
|
+
@attribute_methods_generated
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
# Generates all the attribute related methods for columns in the database
|
|
103
|
+
# accessors, mutators and query methods.
|
|
104
|
+
def define_attribute_methods # :nodoc:
|
|
105
|
+
return false if @attribute_methods_generated
|
|
106
|
+
# Use a mutex; we don't want two threads simultaneously trying to define
|
|
107
|
+
# attribute methods.
|
|
108
|
+
GeneratedAttributeMethods::LOCK.synchronize do
|
|
109
|
+
return false if @attribute_methods_generated
|
|
110
|
+
|
|
111
|
+
superclass.define_attribute_methods unless base_class?
|
|
112
|
+
|
|
113
|
+
unless abstract_class?
|
|
114
|
+
load_schema
|
|
115
|
+
super(attribute_names)
|
|
116
|
+
alias_attribute :id_value, :id if _has_attribute?("id")
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
@attribute_methods_generated = true
|
|
120
|
+
|
|
121
|
+
generate_alias_attributes
|
|
122
|
+
end
|
|
123
|
+
true
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
def generate_alias_attributes # :nodoc:
|
|
127
|
+
superclass.generate_alias_attributes unless superclass == Base
|
|
128
|
+
|
|
129
|
+
return if @alias_attributes_mass_generated
|
|
130
|
+
|
|
131
|
+
ActiveSupport::CodeGenerator.batch(generated_attribute_methods, __FILE__, __LINE__) do |code_generator|
|
|
132
|
+
aliases_by_attribute_name.each do |old_name, new_names|
|
|
133
|
+
new_names.each do |new_name|
|
|
134
|
+
generate_alias_attribute_methods(code_generator, new_name, old_name)
|
|
135
|
+
end
|
|
136
|
+
end
|
|
137
|
+
end
|
|
138
|
+
|
|
139
|
+
@alias_attributes_mass_generated = true
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
def undefine_attribute_methods # :nodoc:
|
|
143
|
+
GeneratedAttributeMethods::LOCK.synchronize do
|
|
144
|
+
super if @attribute_methods_generated
|
|
145
|
+
@attribute_methods_generated = false
|
|
146
|
+
@alias_attributes_mass_generated = false
|
|
147
|
+
end
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
# Raises an ActiveRecord::DangerousAttributeError exception when an
|
|
151
|
+
# \Active \Record method is defined in the model, otherwise +false+.
|
|
152
|
+
#
|
|
153
|
+
# class Person < ActiveRecord::Base
|
|
154
|
+
# def save
|
|
155
|
+
# 'already defined by Active Record'
|
|
156
|
+
# end
|
|
157
|
+
# end
|
|
158
|
+
#
|
|
159
|
+
# Person.instance_method_already_implemented?(:save)
|
|
160
|
+
# # => ActiveRecord::DangerousAttributeError: save is defined by Active Record. Check to make sure that you don't have an attribute or method with the same name.
|
|
161
|
+
#
|
|
162
|
+
# Person.instance_method_already_implemented?(:name)
|
|
163
|
+
# # => false
|
|
164
|
+
def instance_method_already_implemented?(method_name)
|
|
165
|
+
if dangerous_attribute_method?(method_name)
|
|
166
|
+
raise DangerousAttributeError, "#{method_name} is defined by Active Record. Check to make sure that you don't have an attribute or method with the same name."
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
if superclass == Base
|
|
170
|
+
super
|
|
171
|
+
else
|
|
172
|
+
# If ThisClass < ... < SomeSuperClass < ... < Base and SomeSuperClass
|
|
173
|
+
# defines its own attribute method, then we don't want to override that.
|
|
174
|
+
defined = method_defined_within?(method_name, superclass, Base) &&
|
|
175
|
+
! superclass.instance_method(method_name).owner.is_a?(GeneratedAttributeMethods)
|
|
176
|
+
defined || super
|
|
177
|
+
end
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
# A method name is 'dangerous' if it is already (re)defined by Active Record, but
|
|
181
|
+
# not by any ancestors. (So 'puts' is not dangerous but 'save' is.)
|
|
182
|
+
def dangerous_attribute_method?(name) # :nodoc:
|
|
183
|
+
::ActiveRecord::AttributeMethods.dangerous_attribute_methods.include?(name.to_s)
|
|
184
|
+
end
|
|
185
|
+
|
|
186
|
+
def method_defined_within?(name, klass, superklass = klass.superclass) # :nodoc:
|
|
187
|
+
if klass.method_defined?(name) || klass.private_method_defined?(name)
|
|
188
|
+
if superklass.method_defined?(name) || superklass.private_method_defined?(name)
|
|
189
|
+
klass.instance_method(name).owner != superklass.instance_method(name).owner
|
|
190
|
+
else
|
|
191
|
+
true
|
|
192
|
+
end
|
|
193
|
+
else
|
|
194
|
+
false
|
|
195
|
+
end
|
|
196
|
+
end
|
|
197
|
+
|
|
198
|
+
# A class method is 'dangerous' if it is already (re)defined by Active Record, but
|
|
199
|
+
# not by any ancestors. (So 'puts' is not dangerous but 'new' is.)
|
|
200
|
+
def dangerous_class_method?(method_name)
|
|
201
|
+
return true if RESTRICTED_CLASS_METHODS.include?(method_name.to_s)
|
|
202
|
+
|
|
203
|
+
if Base.respond_to?(method_name, true)
|
|
204
|
+
if Object.respond_to?(method_name, true)
|
|
205
|
+
Base.method(method_name).owner != Object.method(method_name).owner
|
|
206
|
+
else
|
|
207
|
+
true
|
|
208
|
+
end
|
|
209
|
+
else
|
|
210
|
+
false
|
|
211
|
+
end
|
|
212
|
+
end
|
|
213
|
+
|
|
214
|
+
# Returns +true+ if +attribute+ is an attribute method and table exists,
|
|
215
|
+
# +false+ otherwise.
|
|
216
|
+
#
|
|
217
|
+
# class Person < ActiveRecord::Base
|
|
218
|
+
# end
|
|
219
|
+
#
|
|
220
|
+
# Person.attribute_method?('name') # => true
|
|
221
|
+
# Person.attribute_method?(:age=) # => true
|
|
222
|
+
# Person.attribute_method?(:nothing) # => false
|
|
223
|
+
def attribute_method?(attribute)
|
|
224
|
+
super || (table_exists? && column_names.include?(attribute.to_s.delete_suffix("=")))
|
|
225
|
+
end
|
|
226
|
+
|
|
227
|
+
# Returns an array of column names as strings if it's not an abstract class and
|
|
228
|
+
# table exists. Otherwise it returns an empty array.
|
|
229
|
+
#
|
|
230
|
+
# class Person < ActiveRecord::Base
|
|
231
|
+
# end
|
|
232
|
+
#
|
|
233
|
+
# Person.attribute_names
|
|
234
|
+
# # => ["id", "created_at", "updated_at", "name", "age"]
|
|
235
|
+
def attribute_names
|
|
236
|
+
@attribute_names ||= if !abstract_class? && table_exists?
|
|
237
|
+
attribute_types.keys
|
|
238
|
+
else
|
|
239
|
+
[]
|
|
240
|
+
end.freeze
|
|
241
|
+
end
|
|
242
|
+
|
|
243
|
+
# Returns true if the given attribute exists, otherwise false.
|
|
244
|
+
#
|
|
245
|
+
# class Person < ActiveRecord::Base
|
|
246
|
+
# alias_attribute :new_name, :name
|
|
247
|
+
# end
|
|
248
|
+
#
|
|
249
|
+
# Person.has_attribute?('name') # => true
|
|
250
|
+
# Person.has_attribute?('new_name') # => true
|
|
251
|
+
# Person.has_attribute?(:age) # => true
|
|
252
|
+
# Person.has_attribute?(:nothing) # => false
|
|
253
|
+
def has_attribute?(attr_name)
|
|
254
|
+
attr_name = attr_name.to_s
|
|
255
|
+
attr_name = attribute_aliases[attr_name] || attr_name
|
|
256
|
+
attribute_types.key?(attr_name)
|
|
257
|
+
end
|
|
258
|
+
|
|
259
|
+
def _has_attribute?(attr_name) # :nodoc:
|
|
260
|
+
attribute_types.key?(attr_name)
|
|
261
|
+
end
|
|
262
|
+
|
|
263
|
+
private
|
|
264
|
+
def inherited(child_class)
|
|
265
|
+
super
|
|
266
|
+
child_class.initialize_generated_modules
|
|
267
|
+
child_class.class_eval do
|
|
268
|
+
@alias_attributes_mass_generated = false
|
|
269
|
+
@attribute_names = nil
|
|
270
|
+
end
|
|
271
|
+
end
|
|
272
|
+
end
|
|
273
|
+
|
|
274
|
+
# A Person object with a name attribute can ask <tt>person.respond_to?(:name)</tt>,
|
|
275
|
+
# <tt>person.respond_to?(:name=)</tt>, and <tt>person.respond_to?(:name?)</tt>
|
|
276
|
+
# which will all return +true+. It also defines the attribute methods if they have
|
|
277
|
+
# not been generated.
|
|
278
|
+
#
|
|
279
|
+
# class Person < ActiveRecord::Base
|
|
280
|
+
# end
|
|
281
|
+
#
|
|
282
|
+
# person = Person.new
|
|
283
|
+
# person.respond_to?(:name) # => true
|
|
284
|
+
# person.respond_to?(:name=) # => true
|
|
285
|
+
# person.respond_to?(:name?) # => true
|
|
286
|
+
# person.respond_to?('age') # => true
|
|
287
|
+
# person.respond_to?('age=') # => true
|
|
288
|
+
# person.respond_to?('age?') # => true
|
|
289
|
+
# person.respond_to?(:nothing) # => false
|
|
290
|
+
def respond_to?(name, include_private = false)
|
|
291
|
+
return false unless super
|
|
292
|
+
|
|
293
|
+
# If the result is true then check for the select case.
|
|
294
|
+
# For queries selecting a subset of columns, return false for unselected columns.
|
|
295
|
+
if @attributes
|
|
296
|
+
if name = self.class.symbol_column_to_string(name.to_sym)
|
|
297
|
+
return _has_attribute?(name)
|
|
298
|
+
end
|
|
299
|
+
end
|
|
300
|
+
|
|
301
|
+
true
|
|
302
|
+
end
|
|
303
|
+
|
|
304
|
+
# Returns +true+ if the given attribute is in the attributes hash, otherwise +false+.
|
|
305
|
+
#
|
|
306
|
+
# class Person < ActiveRecord::Base
|
|
307
|
+
# alias_attribute :new_name, :name
|
|
308
|
+
# end
|
|
309
|
+
#
|
|
310
|
+
# person = Person.new
|
|
311
|
+
# person.has_attribute?(:name) # => true
|
|
312
|
+
# person.has_attribute?(:new_name) # => true
|
|
313
|
+
# person.has_attribute?('age') # => true
|
|
314
|
+
# person.has_attribute?(:nothing) # => false
|
|
315
|
+
def has_attribute?(attr_name)
|
|
316
|
+
attr_name = attr_name.to_s
|
|
317
|
+
attr_name = self.class.attribute_aliases[attr_name] || attr_name
|
|
318
|
+
@attributes.key?(attr_name)
|
|
319
|
+
end
|
|
320
|
+
|
|
321
|
+
def _has_attribute?(attr_name) # :nodoc:
|
|
322
|
+
@attributes.key?(attr_name)
|
|
323
|
+
end
|
|
324
|
+
|
|
325
|
+
# Returns an array of names for the attributes available on this object.
|
|
326
|
+
#
|
|
327
|
+
# class Person < ActiveRecord::Base
|
|
328
|
+
# end
|
|
329
|
+
#
|
|
330
|
+
# person = Person.new
|
|
331
|
+
# person.attribute_names
|
|
332
|
+
# # => ["id", "created_at", "updated_at", "name", "age"]
|
|
333
|
+
def attribute_names
|
|
334
|
+
@attributes.keys
|
|
335
|
+
end
|
|
336
|
+
|
|
337
|
+
# Returns a hash of all the attributes with their names as keys and the values of the attributes as values.
|
|
338
|
+
#
|
|
339
|
+
# class Person < ActiveRecord::Base
|
|
340
|
+
# end
|
|
341
|
+
#
|
|
342
|
+
# person = Person.create(name: 'Francesco', age: 22)
|
|
343
|
+
# person.attributes
|
|
344
|
+
# # => {"id"=>3, "created_at"=>Sun, 21 Oct 2012 04:53:04, "updated_at"=>Sun, 21 Oct 2012 04:53:04, "name"=>"Francesco", "age"=>22}
|
|
345
|
+
def attributes
|
|
346
|
+
@attributes.to_hash
|
|
347
|
+
end
|
|
348
|
+
|
|
349
|
+
# Returns an <tt>#inspect</tt>-like string for the value of the
|
|
350
|
+
# attribute +attr_name+. String attributes are truncated up to 50
|
|
351
|
+
# characters. Other attributes return the value of <tt>#inspect</tt>
|
|
352
|
+
# without modification.
|
|
353
|
+
#
|
|
354
|
+
# person = Person.create!(name: 'David Heinemeier Hansson ' * 3)
|
|
355
|
+
#
|
|
356
|
+
# person.attribute_for_inspect(:name)
|
|
357
|
+
# # => "\"David Heinemeier Hansson David Heinemeier Hansson ...\""
|
|
358
|
+
#
|
|
359
|
+
# person.attribute_for_inspect(:created_at)
|
|
360
|
+
# # => "\"2012-10-22 00:15:07.000000000 +0000\""
|
|
361
|
+
#
|
|
362
|
+
# person.attribute_for_inspect(:tag_ids)
|
|
363
|
+
# # => "[1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11]"
|
|
364
|
+
def attribute_for_inspect(attr_name)
|
|
365
|
+
attr_name = attr_name.to_s
|
|
366
|
+
attr_name = self.class.attribute_aliases[attr_name] || attr_name
|
|
367
|
+
value = _read_attribute(attr_name)
|
|
368
|
+
format_for_inspect(attr_name, value)
|
|
369
|
+
end
|
|
370
|
+
|
|
371
|
+
# Returns +true+ if the specified +attribute+ has been set by the user or by a
|
|
372
|
+
# database load and is neither +nil+ nor <tt>empty?</tt> (the latter only applies
|
|
373
|
+
# to objects that respond to <tt>empty?</tt>, most notably Strings). Otherwise, +false+.
|
|
374
|
+
# Note that it always returns +true+ with boolean attributes.
|
|
375
|
+
#
|
|
376
|
+
# class Task < ActiveRecord::Base
|
|
377
|
+
# end
|
|
378
|
+
#
|
|
379
|
+
# task = Task.new(title: '', is_done: false)
|
|
380
|
+
# task.attribute_present?(:title) # => false
|
|
381
|
+
# task.attribute_present?(:is_done) # => true
|
|
382
|
+
# task.title = 'Buy milk'
|
|
383
|
+
# task.is_done = true
|
|
384
|
+
# task.attribute_present?(:title) # => true
|
|
385
|
+
# task.attribute_present?(:is_done) # => true
|
|
386
|
+
def attribute_present?(attr_name)
|
|
387
|
+
attr_name = attr_name.to_s
|
|
388
|
+
attr_name = self.class.attribute_aliases[attr_name] || attr_name
|
|
389
|
+
value = _read_attribute(attr_name)
|
|
390
|
+
!value.nil? && !(value.respond_to?(:empty?) && value.empty?)
|
|
391
|
+
end
|
|
392
|
+
|
|
393
|
+
# Returns the value of the attribute identified by +attr_name+ after it has
|
|
394
|
+
# been type cast. (For information about specific type casting behavior, see
|
|
395
|
+
# the types under ActiveModel::Type.)
|
|
396
|
+
#
|
|
397
|
+
# class Person < ActiveRecord::Base
|
|
398
|
+
# belongs_to :organization
|
|
399
|
+
# end
|
|
400
|
+
#
|
|
401
|
+
# person = Person.new(name: "Francesco", date_of_birth: "2004-12-12")
|
|
402
|
+
# person[:name] # => "Francesco"
|
|
403
|
+
# person[:date_of_birth] # => Date.new(2004, 12, 12)
|
|
404
|
+
# person[:organization_id] # => nil
|
|
405
|
+
#
|
|
406
|
+
# Raises ActiveModel::MissingAttributeError if the attribute is missing.
|
|
407
|
+
# Note, however, that the +id+ attribute will never be considered missing.
|
|
408
|
+
#
|
|
409
|
+
# person = Person.select(:name).first
|
|
410
|
+
# person[:name] # => "Francesco"
|
|
411
|
+
# person[:date_of_birth] # => ActiveModel::MissingAttributeError: missing attribute 'date_of_birth' for Person
|
|
412
|
+
# person[:organization_id] # => ActiveModel::MissingAttributeError: missing attribute 'organization_id' for Person
|
|
413
|
+
# person[:id] # => nil
|
|
414
|
+
def [](attr_name)
|
|
415
|
+
read_attribute(attr_name) { |n| missing_attribute(n, caller) }
|
|
416
|
+
end
|
|
417
|
+
|
|
418
|
+
# Updates the attribute identified by +attr_name+ using the specified
|
|
419
|
+
# +value+. The attribute value will be type cast upon being read.
|
|
420
|
+
#
|
|
421
|
+
# class Person < ActiveRecord::Base
|
|
422
|
+
# end
|
|
423
|
+
#
|
|
424
|
+
# person = Person.new
|
|
425
|
+
# person[:date_of_birth] = "2004-12-12"
|
|
426
|
+
# person[:date_of_birth] # => Date.new(2004, 12, 12)
|
|
427
|
+
def []=(attr_name, value)
|
|
428
|
+
write_attribute(attr_name, value)
|
|
429
|
+
end
|
|
430
|
+
|
|
431
|
+
# Returns the name of all database fields which have been read from this
|
|
432
|
+
# model. This can be useful in development mode to determine which fields
|
|
433
|
+
# need to be selected. For performance critical pages, selecting only the
|
|
434
|
+
# required fields can be an easy performance win (assuming you aren't using
|
|
435
|
+
# all of the fields on the model).
|
|
436
|
+
#
|
|
437
|
+
# For example:
|
|
438
|
+
#
|
|
439
|
+
# class PostsController < ActionController::Base
|
|
440
|
+
# after_action :print_accessed_fields, only: :index
|
|
441
|
+
#
|
|
442
|
+
# def index
|
|
443
|
+
# @posts = Post.all
|
|
444
|
+
# end
|
|
445
|
+
#
|
|
446
|
+
# private
|
|
447
|
+
# def print_accessed_fields
|
|
448
|
+
# p @posts.first.accessed_fields
|
|
449
|
+
# end
|
|
450
|
+
# end
|
|
451
|
+
#
|
|
452
|
+
# Which allows you to quickly change your code to:
|
|
453
|
+
#
|
|
454
|
+
# class PostsController < ActionController::Base
|
|
455
|
+
# def index
|
|
456
|
+
# @posts = Post.select(:id, :title, :author_id, :updated_at)
|
|
457
|
+
# end
|
|
458
|
+
# end
|
|
459
|
+
def accessed_fields
|
|
460
|
+
@attributes.accessed
|
|
461
|
+
end
|
|
462
|
+
|
|
463
|
+
private
|
|
464
|
+
def respond_to_missing?(name, include_private = false)
|
|
465
|
+
if self.class.define_attribute_methods
|
|
466
|
+
# Some methods weren't defined yet.
|
|
467
|
+
return true if self.class.method_defined?(name)
|
|
468
|
+
return true if include_private && self.class.private_method_defined?(name)
|
|
469
|
+
end
|
|
470
|
+
|
|
471
|
+
super
|
|
472
|
+
end
|
|
473
|
+
|
|
474
|
+
def method_missing(name, ...)
|
|
475
|
+
unless self.class.attribute_methods_generated?
|
|
476
|
+
if self.class.method_defined?(name)
|
|
477
|
+
# The method is explicitly defined in the model, but calls a generated
|
|
478
|
+
# method with super. So we must resume the call chain at the right step.
|
|
479
|
+
last_method = method(name)
|
|
480
|
+
last_method = last_method.super_method while last_method.super_method
|
|
481
|
+
self.class.define_attribute_methods
|
|
482
|
+
if last_method.super_method
|
|
483
|
+
return last_method.super_method.call(...)
|
|
484
|
+
end
|
|
485
|
+
elsif self.class.define_attribute_methods
|
|
486
|
+
# Some attribute methods weren't generated yet, we retry the call
|
|
487
|
+
return public_send(name, ...)
|
|
488
|
+
end
|
|
489
|
+
end
|
|
490
|
+
|
|
491
|
+
super
|
|
492
|
+
end
|
|
493
|
+
|
|
494
|
+
def attribute_method?(attr_name)
|
|
495
|
+
@attributes&.key?(attr_name)
|
|
496
|
+
end
|
|
497
|
+
|
|
498
|
+
def attributes_with_values(attribute_names)
|
|
499
|
+
attribute_names.index_with { |name| @attributes[name] }
|
|
500
|
+
end
|
|
501
|
+
|
|
502
|
+
# Filters the primary keys, readonly attributes and virtual columns from the attribute names.
|
|
503
|
+
def attributes_for_update(attribute_names)
|
|
504
|
+
attribute_names &= self.class.column_names
|
|
505
|
+
attribute_names.delete_if do |name|
|
|
506
|
+
self.class.readonly_attribute?(name) ||
|
|
507
|
+
self.class.counter_cache_column?(name) ||
|
|
508
|
+
column_for_attribute(name).virtual?
|
|
509
|
+
end
|
|
510
|
+
end
|
|
511
|
+
|
|
512
|
+
# Filters out the virtual columns and also primary keys, from the attribute names, when the primary
|
|
513
|
+
# key is to be generated (e.g. the id attribute has no value).
|
|
514
|
+
def attributes_for_create(attribute_names)
|
|
515
|
+
attribute_names &= self.class.column_names
|
|
516
|
+
attribute_names.delete_if do |name|
|
|
517
|
+
(pk_attribute?(name) && id.nil?) ||
|
|
518
|
+
column_for_attribute(name).virtual?
|
|
519
|
+
end
|
|
520
|
+
end
|
|
521
|
+
|
|
522
|
+
def format_for_inspect(name, value)
|
|
523
|
+
if value.nil?
|
|
524
|
+
value.inspect
|
|
525
|
+
else
|
|
526
|
+
inspected_value = if value.is_a?(String) && value.length > 50
|
|
527
|
+
"#{value[0, 50]}...".inspect
|
|
528
|
+
elsif value.is_a?(Date) || value.is_a?(Time)
|
|
529
|
+
%("#{value.to_fs(:inspect)}")
|
|
530
|
+
else
|
|
531
|
+
value.inspect
|
|
532
|
+
end
|
|
533
|
+
|
|
534
|
+
inspection_filter.filter_param(name, inspected_value)
|
|
535
|
+
end
|
|
536
|
+
end
|
|
537
|
+
|
|
538
|
+
def pk_attribute?(name)
|
|
539
|
+
name == @primary_key
|
|
540
|
+
end
|
|
541
|
+
end
|
|
542
|
+
end
|