core.rb 15.6 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 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
      ##
      # :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'
      #      }
      #   }
      mattr_accessor :configurations, instance_writer: false
      self.configurations = {}

      ##
      # :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

72 73 74
      # :nodoc:
      mattr_accessor :maintain_test_schema, instance_accessor: false

75 76 77 78 79
      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

80
      class_attribute :default_connection_handler, instance_writer: false
81

82
      def self.connection_handler
83
        ActiveRecord::RuntimeRegistry.connection_handler || default_connection_handler
84 85 86
      end

      def self.connection_handler=(handler)
87
        ActiveRecord::RuntimeRegistry.connection_handler = handler
88 89 90
      end

      self.default_connection_handler = ConnectionAdapters::ConnectionHandler.new
91 92 93
    end

    module ClassMethods
94
      def initialize_generated_modules
95
        super
96

97
        generated_association_methods
98 99
      end

100 101 102
      def generated_association_methods
        @generated_association_methods ||= begin
          mod = const_set(:GeneratedAssociationMethods, Module.new)
103 104 105 106 107 108 109 110 111 112 113
          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)"
114
        elsif !connected?
A
Arun Agrawal 已提交
115
          "#{super} (call '#{super}.connection' to establish a connection)"
116 117 118 119 120 121 122 123 124 125 126 127 128
        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 已提交
129
      # Returns an instance of <tt>Arel::Table</tt> loaded with the current table name.
O
Oscar Del Ben 已提交
130 131
      #
      #   class Post < ActiveRecord::Base
132
      #     scope :published_and_commented, -> { published.and(self.arel_table[:comments_count].gt(0)) }
O
Oscar Del Ben 已提交
133
      #   end
134 135 136 137
      def arel_table
        @arel_table ||= Arel::Table.new(table_name, arel_engine)
      end

138
      # Returns the Arel engine.
139
      def arel_engine
140
        @arel_engine ||=
J
Jon Leighton 已提交
141 142 143 144 145
          if Base == self || connection_handler.retrieve_connection_pool(self)
            self
          else
            superclass.arel_engine
          end
146 147 148 149 150
      end

      private

      def relation #:nodoc:
151
        relation = Relation.create(self, arel_table)
152 153

        if finder_needs_type_condition?
154
          relation.where(type_condition).create_with(inheritance_column.to_sym => sti_name)
155
        else
156
          relation
157 158 159 160 161 162 163 164 165
        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.
    #
166
    # ==== Example:
167
    #   # Instantiates a single new object
A
AvnerCohen 已提交
168
    #   User.new(first_name: 'Jamie')
169
    def initialize(attributes = nil, options = {})
J
Jon Leighton 已提交
170 171 172 173
      defaults = self.class.column_defaults.dup
      defaults.each { |k, v| defaults[k] = v.dup if v.duplicable? }

      @attributes   = self.class.initialize_attributes(defaults)
174 175
      @column_types_override = nil
      @column_types = self.class.column_types
176 177

      init_internals
178
      init_changed_attributes
179 180 181
      ensure_proper_type
      populate_with_current_scope_attributes

182 183 184
      # +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
185 186

      yield self if block_given?
J
Jon Leighton 已提交
187
      run_callbacks :initialize unless _initialize_callbacks.empty?
188 189 190 191 192 193 194 195 196 197 198 199 200
    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)
201
      @attributes   = self.class.initialize_attributes(coder['attributes'])
202 203
      @column_types_override = coder['column_types']
      @column_types = self.class.column_types
204

205 206
      init_internals

207
      @new_record = false
208

209 210 211 212 213
      run_callbacks :find
      run_callbacks :initialize

      self
    end
214

215 216 217 218
    ##
    # :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 已提交
219
    # same attributes hash. If you need a copy of your attributes hash, please use the #dup method.
220 221 222 223 224 225 226 227 228
    #
    #   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
229
    #
230
    #   user.name.object_id == user.dup.name.object_id  # => false
231

232 233
    ##
    # :method: dup
234 235 236 237 238 239
    # 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).
240

241
    ##
242
    def initialize_dup(other) # :nodoc:
243
      cloned_attributes = other.clone_attributes(:read_attribute_before_type_cast)
244
      self.class.initialize_attributes(cloned_attributes, :serialized => false)
245

246
      @attributes = cloned_attributes
247
      @attributes[self.class.primary_key] = nil
248

249
      run_callbacks(:initialize) unless _initialize_callbacks.empty?
250 251

      @changed_attributes = {}
252
      init_changed_attributes
253

254
      @aggregation_cache = {}
255
      @association_cache = {}
256 257
      @attributes_cache  = {}

258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
      @new_record  = true

      ensure_proper_type
      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)
275
    #   coder # => {"attributes" => {"id" => nil, ... }}
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
    def encode_with(coder)
      coder['attributes'] = attributes
    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) &&
292
        id &&
293 294 295 296 297 298 299 300 301 302
        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
      id.hash
    end

303 304 305
    # Clone and freeze the attributes hash such that associations are still
    # accessible, even on destroyed records, but cloned models will not be
    # frozen.
306
    def freeze
307
      @attributes = @attributes.clone.freeze
308
      self
309 310 311 312 313 314 315
    end

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

316 317 318 319 320 321 322 323 324
    # 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

325 326 327 328 329 330 331 332 333 334 335
    # 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

336 337 338 339
    def connection_handler
      self.class.connection_handler
    end

340 341
    # Returns the contents of the record as a nicely formatted string.
    def inspect
342 343 344
      # We check defined?(@attributes) not to issue warnings if the object is
      # allocated but not initialized.
      inspection = if defined?(@attributes) && @attributes
345 346 347 348 349 350 351 352 353 354 355
                     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

356 357
    # Returns a hash of the given methods with their names as keys and returned values as values.
    def slice(*methods)
358
      Hash[methods.map! { |method| [method, public_send(method)] }].with_indifferent_access
359 360
    end

361 362 363 364 365 366 367 368
    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

369 370
    private

371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408
    # 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)
      if transaction_state && !has_transactional_callbacks?
        unless @reflects_state[depth]
          if transaction_state.committed?
            committed!
          elsif transaction_state.rolledback?
            rolledback!
          end
          @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

409 410 411 412 413 414 415
    # 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.
    #
416
    # See also http://tenderlovemaking.com/2011/06/28/til-its-ok-to-return-nil-from-to_ary.html
417 418 419
    def to_ary # :nodoc:
      nil
    end
420 421

    def init_internals
422 423 424
      pk = self.class.primary_key
      @attributes[pk] = nil unless @attributes.key?(pk)

425 426 427 428 429 430
      @aggregation_cache        = {}
      @association_cache        = {}
      @attributes_cache         = {}
      @readonly                 = false
      @destroyed                = false
      @marked_for_destruction   = false
431
      @destroyed_by_association = nil
432 433 434
      @new_record               = true
      @txn                      = nil
      @_start_transaction_state = {}
435 436
      @transaction_state        = nil
      @reflects_state           = [false]
437
    end
438 439

    def init_changed_attributes
440
      # Intentionally avoid using #column_defaults since overridden defaults (as is done in
441 442 443
      # optimistic locking) won't get written unless they get marked as changed
      self.class.columns.each do |c|
        attr, orig_value = c.name, c.default
444
        changed_attributes[attr] = orig_value if _field_changed?(attr, orig_value, @attributes[attr])
445 446
      end
    end
447 448 449 450 451 452

    # 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
453 454
  end
end