core.rb 18.6 KB
Newer Older
1 2
# frozen_string_literal: true

3 4
require "active_support/core_ext/hash/indifferent_access"
require "active_support/core_ext/string/filters"
5
require "concurrent/map"
6 7

module ActiveRecord
J
Jon Leighton 已提交
8 9
  module Core
    extend ActiveSupport::Concern
10

J
Jon Leighton 已提交
11
    included do
J
Jon Leighton 已提交
12 13
      ##
      # :singleton-method:
J
Jon Leighton 已提交
14 15 16 17 18
      #
      # Accepts a logger conforming to the interface of Log4r which is then
      # passed on to any new database connections made and which can be
      # retrieved on both a class and instance level by calling +logger+.
      mattr_accessor :logger, instance_writer: false
19

O
Olivier Lacan 已提交
20 21 22 23 24 25 26
      ##
      # :singleton-method:
      #
      # Specifies if the methods calling database queries should be logged below
      # their relevant queries. Defaults to false.
      mattr_accessor :verbose_query_logs, instance_writer: false, default: false

J
Jon Leighton 已提交
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
      ##
      # Contains the database configuration - as is typically stored in config/database.yml -
      # as a Hash.
      #
      # For example, the following database.yml...
      #
      #   development:
      #     adapter: sqlite3
      #     database: db/development.sqlite3
      #
      #   production:
      #     adapter: sqlite3
      #     database: db/production.sqlite3
      #
      # ...would result in ActiveRecord::Base.configurations to look like this:
      #
      #   {
      #      'development' => {
      #         'adapter'  => 'sqlite3',
      #         'database' => 'db/development.sqlite3'
      #      },
      #      'production' => {
      #         'adapter'  => 'sqlite3',
      #         'database' => 'db/production.sqlite3'
      #      }
      #   }
53 54 55
      def self.configurations=(config)
        @@configurations = ActiveRecord::ConnectionHandling::MergeAndResolveDefaultUrlConfig.new(config).resolve
      end
J
Jon Leighton 已提交
56 57
      self.configurations = {}

58 59 60 61 62
      # Returns fully resolved configurations hash
      def self.configurations
        @@configurations
      end

J
Jon Leighton 已提交
63 64 65 66
      ##
      # :singleton-method:
      # Determines whether to use Time.utc (using :utc) or Time.local (using :local) when pulling
      # dates and times from the database. This is set to :utc by default.
67
      mattr_accessor :default_timezone, instance_writer: false, default: :utc
J
Jon Leighton 已提交
68 69 70 71 72 73 74 75 76

      ##
      # :singleton-method:
      # Specifies the format to use when dumping the database schema with Rails'
      # Rakefile. If :sql, the schema is dumped as (potentially database-
      # specific) SQL statements. If :ruby, the schema is dumped as an
      # ActiveRecord::Schema file which can be loaded into any database that
      # supports migrations. Use :ruby if you want to have different database
      # adapters for, e.g., your development and test environments.
77
      mattr_accessor :schema_format, instance_writer: false, default: :ruby
J
Jon Leighton 已提交
78

79 80
      ##
      # :singleton-method:
81
      # Specifies if an error should be raised if the query has an order being
82
      # ignored when doing batch queries. Useful in applications where the
83
      # scope being ignored is error-worthy, rather than a warning.
84
      mattr_accessor :error_on_ignored_order, instance_writer: false, default: false
85

86 87 88 89 90
      # :singleton-method:
      # Specify the behavior for unsafe raw query methods. Values are as follows
      #   deprecated - Warnings are logged when unsafe raw SQL is passed to
      #                query methods.
      #   disabled   - Unsafe raw SQL passed to query methods results in
B
Ben Toews 已提交
91 92
      #                UnknownAttributeReference exception.
      mattr_accessor :allow_unsafe_raw_sql, instance_writer: false, default: :deprecated
93

J
Jon Leighton 已提交
94 95 96
      ##
      # :singleton-method:
      # Specify whether or not to use timestamps for migration versions
97
      mattr_accessor :timestamped_migrations, instance_writer: false, default: true
J
Jon Leighton 已提交
98

99 100 101 102 103 104
      ##
      # :singleton-method:
      # Specify whether schema dump should happen at the end of the
      # db:migrate rake task. This is true by default, which is useful for the
      # development environment. This should ideally be false in the production
      # environment where dumping schema is rarely needed.
105
      mattr_accessor :dump_schema_after_migration, instance_writer: false, default: true
106

107 108 109
      ##
      # :singleton-method:
      # Specifies which database schemas to dump when calling db:structure:dump.
110 111 112 113
      # If the value is :schema_search_path (the default), any schemas listed in
      # schema_search_path are dumped. Use :all to dump all schemas regardless
      # of schema_search_path, or a string of comma separated schemas for a
      # custom list.
114
      mattr_accessor :dump_schemas, instance_writer: false, default: :schema_search_path
115

116 117
      ##
      # :singleton-method:
118 119 120 121
      # Specify a threshold for the size of query result sets. If the number of
      # records in the set exceeds the threshold, a warning is logged. This can
      # be used to identify queries which load thousands of records and
      # potentially cause memory bloat.
122 123
      mattr_accessor :warn_on_records_fetched_greater_than, instance_writer: false

124 125
      mattr_accessor :maintain_test_schema, instance_accessor: false

126 127
      mattr_accessor :belongs_to_required_by_default, instance_accessor: false

128
      class_attribute :default_connection_handler, instance_writer: false
129

130
      def self.connection_handler
131
        ActiveRecord::RuntimeRegistry.connection_handler || default_connection_handler
132 133 134
      end

      def self.connection_handler=(handler)
135
        ActiveRecord::RuntimeRegistry.connection_handler = handler
136 137 138
      end

      self.default_connection_handler = ConnectionAdapters::ConnectionHandler.new
139 140
    end

141
    module ClassMethods # :nodoc:
142 143 144 145 146
      def allocate
        define_attribute_methods
        super
      end

147
      def initialize_find_by_cache # :nodoc:
148
        @find_by_statement_cache = { true => Concurrent::Map.new, false => Concurrent::Map.new }
149 150
      end

151
      def inherited(child_class) # :nodoc:
152
        # initialize cache at class definition for thread safety
153 154 155 156
        child_class.initialize_find_by_cache
        super
      end

157
      def find(*ids) # :nodoc:
158 159 160 161
        # We don't have cache keys for this stuff yet
        return super unless ids.length == 1
        return super if block_given? ||
                        primary_key.nil? ||
162
                        scope_attributes? ||
163
                        columns_hash.include?(inheritance_column)
164

165
        id = ids.first
166

167
        return super if StatementCache.unsupported_value?(id)
168 169 170

        key = primary_key

171 172
        statement = cached_find_by_statement(key) { |params|
          where(key => params.bind).limit(1)
173
        }
174

175
        record = statement.execute([id], connection).first
176
        unless record
177 178
          raise RecordNotFound.new("Couldn't find #{name} with '#{primary_key}'=#{id}",
                                   name, primary_key, id)
179 180
        end
        record
181
      rescue ::RangeError
182 183
        raise RecordNotFound.new("Couldn't find #{name} with an out of range value for '#{primary_key}'",
                                 name, primary_key)
184 185
      end

186
      def find_by(*args) # :nodoc:
187
        return super if scope_attributes? || reflect_on_all_aggregations.any?
188 189 190

        hash = args.first

191
        return super if !(Hash === hash) || hash.values.any? { |v|
192
          StatementCache.unsupported_value?(v)
193
        }
194

195 196 197
        # We can't cache Post.find_by(author: david) ...yet
        return super unless hash.keys.all? { |k| columns_hash.has_key?(k.to_s) }

198
        keys = hash.keys
199

200 201
        statement = cached_find_by_statement(keys) { |params|
          wheres = keys.each_with_object({}) { |param, o|
202
            o[param] = params.bind
203
          }
204
          where(wheres).limit(1)
205 206
        }
        begin
207
          statement.execute(hash.values, connection).first
208 209
        rescue TypeError
          raise ActiveRecord::StatementInvalid
210
        rescue ::RangeError
211
          nil
212 213 214
        end
      end

215
      def find_by!(*args) # :nodoc:
216
        find_by(*args) || raise(RecordNotFound.new("Couldn't find #{name}", name))
217 218
      end

219
      def initialize_generated_modules # :nodoc:
220
        generated_association_methods
221 222
      end

223 224 225
      def generated_association_methods
        @generated_association_methods ||= begin
          mod = const_set(:GeneratedAssociationMethods, Module.new)
226
          private_constant :GeneratedAssociationMethods
227
          include mod
228

229 230 231 232 233 234 235 236 237 238
          mod
        end
      end

      # Returns a string like 'Post(id:integer, title:string, body:text)'
      def inspect
        if self == Base
          super
        elsif abstract_class?
          "#{super}(abstract)"
239
        elsif !connected?
A
Arun Agrawal 已提交
240
          "#{super} (call '#{super}.connection' to establish a connection)"
241
        elsif table_exists?
242
          attr_list = attribute_types.map { |name, type| "#{name}: #{type.type}" } * ", "
243 244 245 246 247 248
          "#{super}(#{attr_list})"
        else
          "#{super}(Table doesn't exist)"
        end
      end

249
      # Overwrite the default class equality method to provide support for decorated models.
250 251 252 253
      def ===(object)
        object.is_a?(self)
      end

P
Peter Suschlik 已提交
254
      # Returns an instance of <tt>Arel::Table</tt> loaded with the current table name.
O
Oscar Del Ben 已提交
255 256
      #
      #   class Post < ActiveRecord::Base
257
      #     scope :published_and_commented, -> { published.and(arel_table[:comments_count].gt(0)) }
O
Oscar Del Ben 已提交
258
      #   end
259
      def arel_table # :nodoc:
260
        @arel_table ||= Arel::Table.new(table_name, type_caster: type_caster)
261 262
      end

263
      def arel_attribute(name, table = arel_table) # :nodoc:
264 265 266 267
        name = attribute_alias(name) if attribute_alias?(name)
        table[name]
      end

268
      def predicate_builder # :nodoc:
269
        @predicate_builder ||= PredicateBuilder.new(table_metadata)
270 271
      end

272 273 274 275
      def type_caster # :nodoc:
        TypeCaster::Map.new(self)
      end

276 277
      private

A
Akira Matsuda 已提交
278
        def cached_find_by_statement(key, &block)
279
          cache = @find_by_statement_cache[connection.prepared_statements]
280
          cache.compute_if_absent(key) { StatementCache.create(connection, &block) }
281
        end
282

A
Akira Matsuda 已提交
283
        def relation
284
          relation = Relation.create(self)
285

286
          if finder_needs_type_condition? && !ignore_default_scope?
287 288
            relation.where!(type_condition)
            relation.create_with!(inheritance_column.to_s => sti_name)
289 290 291
          else
            relation
          end
292
        end
293

A
Akira Matsuda 已提交
294
        def table_metadata
295 296
          TableMetadata.new(self, arel_table)
        end
297 298 299 300 301 302 303
    end

    # New objects can be instantiated as either empty (pass no construction parameter) or pre-set with
    # attributes but not yet saved (pass a hash with key names matching the associated table column names).
    # In both instances, valid attribute keys are determined by the column names of the associated table --
    # hence you can't have attributes that aren't part of the table columns.
    #
304
    # ==== Example:
305
    #   # Instantiates a single new object
A
AvnerCohen 已提交
306
    #   User.new(first_name: 'Jamie')
307
    def initialize(attributes = nil)
308
      self.class.define_attribute_methods
309
      @attributes = self.class._default_attributes.deep_dup
310 311

      init_internals
312
      initialize_internals_callback
313

314
      assign_attributes(attributes) if attributes
315 316

      yield self if block_given?
317
      _run_initialize_callbacks
318 319
    end

320 321
    # Initialize an empty model object from +coder+. +coder+ should be
    # the result of previously encoding an Active Record model, using
322
    # #encode_with.
323 324 325 326
    #
    #   class Post < ActiveRecord::Base
    #   end
    #
327 328 329 330
    #   old_post = Post.new(title: "hello world")
    #   coder = {}
    #   old_post.encode_with(coder)
    #
331
    #   post = Post.allocate
332
    #   post.init_with(coder)
333 334
    #   post.title # => 'hello world'
    def init_with(coder)
335
      coder = LegacyYamlAdapter.convert(self.class, coder)
336
      @attributes = self.class.yaml_encoder.decode(coder)
337

338 339
      init_internals

340
      @new_record = coder["new_record"]
341

342 343
      self.class.define_attribute_methods

344 345
      yield self if block_given?

346 347
      _run_find_callbacks
      _run_initialize_callbacks
348 349 350

      self
    end
351

352 353 354 355
    ##
    # :method: clone
    # Identical to Ruby's clone method.  This is a "shallow" copy.  Be warned that your attributes are not copied.
    # That means that modifying attributes of the clone will modify the original, since they will both point to the
V
Vijay Dev 已提交
356
    # same attributes hash. If you need a copy of your attributes hash, please use the #dup method.
357 358 359 360 361 362 363 364 365
    #
    #   user = User.first
    #   new_user = user.clone
    #   user.name               # => "Bob"
    #   new_user.name = "Joe"
    #   user.name               # => "Joe"
    #
    #   user.object_id == new_user.object_id            # => false
    #   user.name.object_id == new_user.name.object_id  # => true
366
    #
367
    #   user.name.object_id == user.dup.name.object_id  # => false
368

369 370
    ##
    # :method: dup
371 372 373 374 375 376
    # Duped objects have no id assigned and are treated as new records. Note
    # that this is a "shallow" copy as it copies the object's attributes
    # only, not its associations. The extent of a "deep" copy is application
    # specific and is therefore left to the application to implement according
    # to its need.
    # The dup method does not preserve the timestamps (created|updated)_(at|on).
377

378
    ##
379
    def initialize_dup(other) # :nodoc:
380
      @attributes = @attributes.deep_dup
381
      @attributes.reset(self.class.primary_key)
382

383
      _run_initialize_callbacks
384

385 386 387 388
      @new_record               = true
      @destroyed                = false
      @_start_transaction_state = {}
      @transaction_state        = nil
389 390 391 392 393 394

      super
    end

    # Populate +coder+ with attributes about this record that should be
    # serialized. The structure of +coder+ defined in this method is
395
    # guaranteed to match the structure of +coder+ passed to the #init_with
396 397 398 399 400 401 402 403
    # method.
    #
    # Example:
    #
    #   class Post < ActiveRecord::Base
    #   end
    #   coder = {}
    #   Post.new.encode_with(coder)
404
    #   coder # => {"attributes" => {"id" => nil, ... }}
405
    def encode_with(coder)
406
      self.class.yaml_encoder.encode(@attributes, coder)
407 408
      coder["new_record"] = new_record?
      coder["active_record_yaml_version"] = 2
409 410 411 412 413 414 415 416 417 418 419 420 421 422
    end

    # Returns true if +comparison_object+ is the same exact object, or +comparison_object+
    # is of the same type and +self+ has an ID and it is equal to +comparison_object.id+.
    #
    # Note that new records are different from any other record by definition, unless the
    # other record is the receiver itself. Besides, if you fetch existing records with
    # +select+ and leave the ID out, you're on your own, this predicate will return false.
    #
    # Note also that destroying a record preserves its ID in the model instance, so deleted
    # models are still comparable.
    def ==(comparison_object)
      super ||
        comparison_object.instance_of?(self.class) &&
423
        !id.nil? &&
424 425 426 427 428 429 430
        comparison_object.id == id
    end
    alias :eql? :==

    # Delegates to id in order to allow two records of the same type and id to work with something like:
    #   [ Person.find(1), Person.find(2), Person.find(3) ] & [ Person.find(1), Person.find(4) ] # => [ Person.find(1) ]
    def hash
431
      if id
432
        self.class.hash ^ id.hash
433 434 435
      else
        super
      end
436 437
    end

438 439 440
    # Clone and freeze the attributes hash such that associations are still
    # accessible, even on destroyed records, but cloned models will not be
    # frozen.
441
    def freeze
442
      @attributes = @attributes.clone.freeze
443
      self
444 445 446 447
    end

    # Returns +true+ if the attributes hash has been frozen.
    def frozen?
448
      @attributes.frozen?
449 450
    end

451 452 453
    # Allows sort on objects
    def <=>(other_object)
      if other_object.is_a?(self.class)
454
        to_key <=> other_object.to_key
455 456 457 458 459
      else
        super
      end
    end

460 461 462 463 464 465 466 467 468 469 470
    # Returns +true+ if the record is read only. Records loaded through joins with piggy-back
    # attributes will be marked as read only since they cannot be saved.
    def readonly?
      @readonly
    end

    # Marks this record as read only.
    def readonly!
      @readonly = true
    end

471 472 473 474
    def connection_handler
      self.class.connection_handler
    end

475 476
    # Returns the contents of the record as a nicely formatted string.
    def inspect
477
      # We check defined?(@attributes) not to issue warnings if the object is
478
      # allocated but not initialized.
479
      inspection = if defined?(@attributes) && @attributes
480
        self.class.attribute_names.collect do |name|
481 482 483
          if has_attribute?(name)
            "#{name}: #{attribute_for_inspect(name)}"
          end
484
        end.compact.join(", ")
485 486 487
      else
        "not initialized"
      end
488

489 490 491
      "#<#{self.class} #{inspection}>"
    end

492
    # Takes a PP and prettily prints this record to it, allowing you to get a nice result from <tt>pp record</tt>
493 494
    # when pp is required.
    def pretty_print(pp)
495
      return super if custom_inspect_method_defined?
496 497 498
      pp.object_address_group(self) do
        if defined?(@attributes) && @attributes
          column_names = self.class.column_names.select { |name| has_attribute?(name) || new_record? }
499
          pp.seplist(column_names, proc { pp.text "," }) do |column_name|
500
            column_value = read_attribute(column_name)
501
            pp.breakable " "
502 503
            pp.group(1) do
              pp.text column_name
504
              pp.text ":"
505 506 507 508 509
              pp.breakable
              pp.pp column_value
            end
          end
        else
510 511
          pp.breakable " "
          pp.text "not initialized"
512 513 514 515
        end
      end
    end

516 517
    # Returns a hash of the given methods with their names as keys and returned values as values.
    def slice(*methods)
518
      Hash[methods.flatten.map! { |method| [method, public_send(method)] }].with_indifferent_access
519 520
    end

521 522
    private

523 524 525 526 527 528 529
      # +Array#flatten+ will call +#to_ary+ (recursively) on each of the elements of
      # the array, and then rescues from the possible +NoMethodError+. If those elements are
      # +ActiveRecord::Base+'s, then this triggers the various +method_missing+'s that we have,
      # which significantly impacts upon performance.
      #
      # So we can avoid the +method_missing+ hit by explicitly defining +#to_ary+ as +nil+ here.
      #
530
      # See also https://tenderlovemaking.com/2011/06/28/til-its-ok-to-return-nil-from-to_ary.html
531
      def to_ary
532 533
        nil
      end
534

535 536 537 538 539 540 541 542 543
      def init_internals
        @readonly                 = false
        @destroyed                = false
        @marked_for_destruction   = false
        @destroyed_by_association = nil
        @new_record               = true
        @_start_transaction_state = {}
        @transaction_state        = nil
      end
544

545 546
      def initialize_internals_callback
      end
547

548 549 550 551
      def thaw
        if frozen?
          @attributes = @attributes.dup
        end
552
      end
553

554 555 556
      def custom_inspect_method_defined?
        self.class.instance_method(:inspect).owner != ActiveRecord::Base.instance_method(:inspect).owner
      end
557 558
  end
end