core.rb 18.8 KB
Newer Older
1
require 'active_support/core_ext/hash/indifferent_access'
J
Jon Leighton 已提交
2
require 'active_support/core_ext/object/duplicable'
J
Jon Leighton 已提交
3
require 'thread'
4 5

module ActiveRecord
J
Jon Leighton 已提交
6 7
  module Core
    extend ActiveSupport::Concern
8

J
Jon Leighton 已提交
9
    included do
J
Jon Leighton 已提交
10 11
      ##
      # :singleton-method:
J
Jon Leighton 已提交
12 13 14 15 16
      #
      # 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
17

J
Jon Leighton 已提交
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
      ##
      # :singleton-method:
      # 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'
      #      }
      #   }
45 46 47
      def self.configurations=(config)
        @@configurations = ActiveRecord::ConnectionHandling::MergeAndResolveDefaultUrlConfig.new(config).resolve
      end
J
Jon Leighton 已提交
48 49
      self.configurations = {}

50 51 52 53 54
      # Returns fully resolved configurations hash
      def self.configurations
        @@configurations
      end

J
Jon Leighton 已提交
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
      ##
      # :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.
      mattr_accessor :default_timezone, instance_writer: false
      self.default_timezone = :utc

      ##
      # :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.
      mattr_accessor :schema_format, instance_writer: false
      self.schema_format = :ruby

      ##
      # :singleton-method:
      # Specify whether or not to use timestamps for migration versions
      mattr_accessor :timestamped_migrations, instance_writer: false
      self.timestamped_migrations = true

79 80 81 82 83 84 85 86 87
      ##
      # :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.
      mattr_accessor :dump_schema_after_migration, instance_writer: false
      self.dump_schema_after_migration = true

88 89 90
      # :nodoc:
      mattr_accessor :maintain_test_schema, instance_accessor: false

91 92 93 94 95
      def self.disable_implicit_join_references=(value)
        ActiveSupport::Deprecation.warn("Implicit join references were removed with Rails 4.1." \
                                        "Make sure to remove this configuration because it does nothing.")
      end

96
      class_attribute :default_connection_handler, instance_writer: false
97
      class_attribute :find_by_statement_cache
98

99
      def self.connection_handler
100
        ActiveRecord::RuntimeRegistry.connection_handler || default_connection_handler
101 102 103
      end

      def self.connection_handler=(handler)
104
        ActiveRecord::RuntimeRegistry.connection_handler = handler
105 106 107
      end

      self.default_connection_handler = ConnectionAdapters::ConnectionHandler.new
108 109 110
    end

    module ClassMethods
111 112 113 114 115 116 117 118 119
      def initialize_find_by_cache
        self.find_by_statement_cache = {}.extend(Mutex_m)
      end

      def inherited(child_class)
        child_class.initialize_find_by_cache
        super
      end

120 121 122 123 124 125 126 127 128 129
      def find(*ids)
        # We don't have cache keys for this stuff yet
        return super unless ids.length == 1
        return super if block_given? ||
                        primary_key.nil? ||
                        default_scopes.any? ||
                        columns_hash.include?(inheritance_column) ||
                        ids.first.kind_of?(Array)

        id  = ids.first
130 131 132 133 134
        if ActiveRecord::Base === id
          id = id.id
          ActiveSupport::Deprecation.warn "You are passing an instance of ActiveRecord::Base to `find`." \
            "Please pass the id of the object by calling `.id`"
        end
135 136 137
        key = primary_key

        s = find_by_statement_cache[key] || find_by_statement_cache.synchronize {
138
          find_by_statement_cache[key] ||= StatementCache.create(connection) { |params|
139
            where(key => params.bind).limit(1)
140 141
          }
        }
142
        record = s.execute([id], self, connection).first
143 144 145 146 147 148
        unless record
          raise RecordNotFound, "Couldn't find #{name} with '#{primary_key}'=#{id}"
        end
        record
      end

149 150 151 152 153
      def find_by(*args)
        return super if current_scope || args.length > 1 || reflect_on_all_aggregations.any?

        hash = args.first

154 155 156
        return super if hash.values.any? { |v|
          v.nil? || Array === v || Hash === v
        }
157 158 159 160 161

        key  = hash.keys

        klass = self
        s = find_by_statement_cache[key] || find_by_statement_cache.synchronize {
162
          find_by_statement_cache[key] ||= StatementCache.create(connection) { |params|
163
            wheres = key.each_with_object({}) { |param,o|
164
              o[param] = params.bind
165 166 167 168 169
            }
            klass.where(wheres).limit(1)
          }
        }
        begin
170
          s.execute(hash.values, self, connection).first
171 172 173 174 175
        rescue TypeError => e
          raise ActiveRecord::StatementInvalid.new(e.message, e)
        end
      end

176
      def initialize_generated_modules
177
        super
178

179
        generated_association_methods
180 181
      end

182 183 184
      def generated_association_methods
        @generated_association_methods ||= begin
          mod = const_set(:GeneratedAssociationMethods, Module.new)
185 186 187 188 189 190 191 192 193 194 195
          include mod
          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)"
196
        elsif !connected?
A
Arun Agrawal 已提交
197
          "#{super} (call '#{super}.connection' to establish a connection)"
198 199 200 201 202 203 204 205 206 207 208 209 210
        elsif table_exists?
          attr_list = columns.map { |c| "#{c.name}: #{c.type}" } * ', '
          "#{super}(#{attr_list})"
        else
          "#{super}(Table doesn't exist)"
        end
      end

      # Overwrite the default class equality method to provide support for association proxies.
      def ===(object)
        object.is_a?(self)
      end

P
Peter Suschlik 已提交
211
      # Returns an instance of <tt>Arel::Table</tt> loaded with the current table name.
O
Oscar Del Ben 已提交
212 213
      #
      #   class Post < ActiveRecord::Base
214
      #     scope :published_and_commented, -> { published.and(self.arel_table[:comments_count].gt(0)) }
O
Oscar Del Ben 已提交
215
      #   end
216
      def arel_table # :nodoc:
217 218 219
        @arel_table ||= Arel::Table.new(table_name, arel_engine)
      end

220
      # Returns the Arel engine.
221
      def arel_engine # :nodoc:
222
        @arel_engine ||=
J
Jon Leighton 已提交
223 224 225 226 227
          if Base == self || connection_handler.retrieve_connection_pool(self)
            self
          else
            superclass.arel_engine
          end
228 229 230 231 232
      end

      private

      def relation #:nodoc:
233
        relation = Relation.create(self, arel_table)
234 235

        if finder_needs_type_condition?
236
          relation.where(type_condition).create_with(inheritance_column.to_sym => sti_name)
237
        else
238
          relation
239 240 241 242 243 244 245 246 247
        end
      end
    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.
    #
248
    # ==== Example:
249
    #   # Instantiates a single new object
A
AvnerCohen 已提交
250
    #   User.new(first_name: 'Jamie')
251
    def initialize(attributes = nil, options = {})
252 253 254 255 256
      defaults = {}
      self.class.raw_column_defaults.each do |k, v|
        default = v.duplicable? ? v.dup : v
        defaults[k] = Attribute.from_database(default, type_for_attribute(k))
      end
J
Jon Leighton 已提交
257

258
      @attributes = defaults
259
      @column_types = self.class.column_types
260 261

      init_internals
262
      initialize_internals_callback
263

264
      self.class.define_attribute_methods
265 266 267
      # +options+ argument is only needed to make protected_attributes gem easier to hook.
      # Remove it when we drop support to this gem.
      init_attributes(attributes, options) if attributes
268 269

      yield self if block_given?
J
Jon Leighton 已提交
270
      run_callbacks :initialize unless _initialize_callbacks.empty?
271 272 273 274 275 276 277 278 279 280 281 282 283
    end

    # Initialize an empty model object from +coder+. +coder+ must contain
    # the attributes necessary for initializing an empty model object. For
    # example:
    #
    #   class Post < ActiveRecord::Base
    #   end
    #
    #   post = Post.allocate
    #   post.init_with('attributes' => { 'title' => 'hello world' })
    #   post.title # => 'hello world'
    def init_with(coder)
284
      @attributes = coder['attributes']
285
      @column_types = self.class.column_types
286

287 288
      init_internals

289
      @new_record = coder['new_record']
290

291 292
      self.class.define_attribute_methods

293 294 295 296 297
      run_callbacks :find
      run_callbacks :initialize

      self
    end
298

299 300 301 302
    ##
    # :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 已提交
303
    # same attributes hash. If you need a copy of your attributes hash, please use the #dup method.
304 305 306 307 308 309 310 311 312
    #
    #   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
313
    #
314
    #   user.name.object_id == user.dup.name.object_id  # => false
315

316 317
    ##
    # :method: dup
318 319 320 321 322 323
    # 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).
324

325
    ##
326
    def initialize_dup(other) # :nodoc:
327 328 329
      pk = self.class.primary_key
      @attributes = other.clone_attributes
      @attributes[pk] = Attribute.from_database(nil, type_for_attribute(pk))
330

331
      run_callbacks(:initialize) unless _initialize_callbacks.empty?
332

333
      @aggregation_cache = {}
334
      @association_cache = {}
335

336
      @new_record  = true
337
      @destroyed   = false
338 339 340 341 342 343 344 345 346 347 348 349 350 351 352

      super
    end

    # Populate +coder+ with attributes about this record that should be
    # serialized. The structure of +coder+ defined in this method is
    # guaranteed to match the structure of +coder+ passed to the +init_with+
    # method.
    #
    # Example:
    #
    #   class Post < ActiveRecord::Base
    #   end
    #   coder = {}
    #   Post.new.encode_with(coder)
353
    #   coder # => {"attributes" => {"id" => nil, ... }}
354
    def encode_with(coder)
355 356
      # FIXME: Remove this when we better serialize attributes
      coder['raw_attributes'] = attributes_before_type_cast
357
      coder['attributes'] = @attributes
358
      coder['new_record'] = new_record?
359 360 361 362 363 364 365 366 367 368 369 370 371 372
    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) &&
373
        !id.nil? &&
374 375 376 377 378 379 380
        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
381 382 383 384 385
      if id
        id.hash
      else
        super
      end
386 387
    end

388 389 390
    # Clone and freeze the attributes hash such that associations are still
    # accessible, even on destroyed records, but cloned models will not be
    # frozen.
391
    def freeze
392
      @attributes = @attributes.clone.freeze
393
      self
394 395 396 397
    end

    # Returns +true+ if the attributes hash has been frozen.
    def frozen?
398
      @attributes.frozen?
399 400
    end

401 402 403 404 405 406 407 408 409
    # Allows sort on objects
    def <=>(other_object)
      if other_object.is_a?(self.class)
        self.to_key <=> other_object.to_key
      else
        super
      end
    end

410 411 412 413 414 415 416 417 418 419 420
    # 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

421 422 423 424
    def connection_handler
      self.class.connection_handler
    end

425 426
    # Returns the contents of the record as a nicely formatted string.
    def inspect
427
      # We check defined?(@attributes) not to issue warnings if the object is
428
      # allocated but not initialized.
429
      inspection = if defined?(@attributes) && @attributes
430 431 432 433 434 435 436 437 438 439 440
                     self.class.column_names.collect { |name|
                       if has_attribute?(name)
                         "#{name}: #{attribute_for_inspect(name)}"
                       end
                     }.compact.join(", ")
                   else
                     "not initialized"
                   end
      "#<#{self.class} #{inspection}>"
    end

441
    # Takes a PP and prettily prints this record to it, allowing you to get a nice result from `pp record`
442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
    # when pp is required.
    def pretty_print(pp)
      pp.object_address_group(self) do
        if defined?(@attributes) && @attributes
          column_names = self.class.column_names.select { |name| has_attribute?(name) || new_record? }
          pp.seplist(column_names, proc { pp.text ',' }) do |column_name|
            column_value = read_attribute(column_name)
            pp.breakable ' '
            pp.group(1) do
              pp.text column_name
              pp.text ':'
              pp.breakable
              pp.pp column_value
            end
          end
        else
          pp.breakable ' '
          pp.text 'not initialized'
        end
      end
    end

464 465
    # Returns a hash of the given methods with their names as keys and returned values as values.
    def slice(*methods)
466
      Hash[methods.map! { |method| [method, public_send(method)] }].with_indifferent_access
467 468
    end

469 470 471 472 473 474 475 476
    def set_transaction_state(state) # :nodoc:
      @transaction_state = state
    end

    def has_transactional_callbacks? # :nodoc:
      !_rollback_callbacks.empty? || !_commit_callbacks.empty? || !_create_callbacks.empty?
    end

477 478
    private

479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
    # Updates the attributes on this particular ActiveRecord object so that
    # if it is associated with a transaction, then the state of the AR object
    # will be updated to reflect the current state of the transaction
    #
    # The @transaction_state variable stores the states of the associated
    # transaction. This relies on the fact that a transaction can only be in
    # one rollback or commit (otherwise a list of states would be required)
    # Each AR object inside of a transaction carries that transaction's
    # TransactionState.
    #
    # This method checks to see if the ActiveRecord object's state reflects
    # the TransactionState, and rolls back or commits the ActiveRecord object
    # as appropriate.
    #
    # Since ActiveRecord objects can be inside multiple transactions, this
    # method recursively goes through the parent of the TransactionState and
    # checks if the ActiveRecord object reflects the state of the object.
    def sync_with_transaction_state
      update_attributes_from_transaction_state(@transaction_state, 0)
    end

    def update_attributes_from_transaction_state(transaction_state, depth)
501
      if transaction_state && transaction_state.finalized? && !has_transactional_callbacks?
502
        unless @reflects_state[depth]
503 504
          restore_transaction_record_state if transaction_state.rolledback?
          clear_transaction_record_state
505 506 507 508 509 510 511 512 513
          @reflects_state[depth] = true
        end

        if transaction_state.parent && !@reflects_state[depth+1]
          update_attributes_from_transaction_state(transaction_state.parent, depth+1)
        end
      end
    end

514 515 516 517 518 519 520
    # Under Ruby 1.9, 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.
    #
521
    # See also http://tenderlovemaking.com/2011/06/28/til-its-ok-to-return-nil-from-to_ary.html
522 523 524
    def to_ary # :nodoc:
      nil
    end
525 526

    def init_internals
527
      pk = self.class.primary_key
528
      @attributes[pk] ||= Attribute.from_database(nil, type_for_attribute(pk))
529

530 531 532 533 534
      @aggregation_cache        = {}
      @association_cache        = {}
      @readonly                 = false
      @destroyed                = false
      @marked_for_destruction   = false
535
      @destroyed_by_association = nil
536 537 538
      @new_record               = true
      @txn                      = nil
      @_start_transaction_state = {}
539 540
      @transaction_state        = nil
      @reflects_state           = [false]
541
    end
542

543
    def initialize_internals_callback
544
    end
545 546 547 548 549 550

    # This method is needed to make protected_attributes gem easier to hook.
    # Remove it when we drop support to this gem.
    def init_attributes(attributes, options)
      assign_attributes(attributes)
    end
551 552 553

    def thaw
      if frozen?
554
        @attributes = @attributes.dup
555 556
      end
    end
557 558
  end
end