core.rb 13.1 KB
Newer Older
1
require 'active_support/concern'
2
require 'active_support/core_ext/hash/indifferent_access'
3
require 'active_support/core_ext/object/deep_dup'
J
Jon Leighton 已提交
4
require 'thread'
5 6 7 8 9

module ActiveRecord
  module Core
    extend ActiveSupport::Concern

10 11 12 13 14 15 16
    included do
      ##
      # :singleton-method:
      # Accepts a logger conforming to the interface of Log4r or the default Ruby 1.8+ Logger class,
      # 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+.
      config_attribute :logger, :global => true
17

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
      ##
      # :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'
      #      }
      #   }
      config_attribute :configurations, :global => true
      self.configurations = {}
47

48 49
      ##
      # :singleton-method:
50 51
      # 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.
52
      config_attribute :default_timezone, :global => true
53
      self.default_timezone = :utc
54

55 56 57 58 59 60 61 62 63 64
      ##
      # :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.
      config_attribute :schema_format, :global => true
      self.schema_format = :ruby
65

66 67 68 69 70
      ##
      # :singleton-method:
      # Specify whether or not to use timestamps for migration versions
      config_attribute :timestamped_migrations, :global => true
      self.timestamped_migrations = true
71

J
Jon Leighton 已提交
72 73 74
      ##
      # :singleton-method:
      # The connection handler
75 76
      config_attribute :connection_handler
      self.connection_handler = ConnectionAdapters::ConnectionHandler.new
77 78 79

      ##
      # :singleton-method:
V
Vijay Dev 已提交
80
      # Specifies whether or not has_many or has_one association option
81 82 83 84 85 86
      # :dependent => :restrict raises an exception. If set to true, the
      # ActiveRecord::DeleteRestrictionError exception will be raised
      # along with a DEPRECATION WARNING. If set to false, an error would
      # be added to the model instead.
      config_attribute :dependent_restrict_raises, :global => true
      self.dependent_restrict_raises = true
87 88 89 90
    end

    module ClassMethods
      def inherited(child_class) #:nodoc:
91
        child_class.initialize_generated_modules
92 93 94
        super
      end

95
      def initialize_generated_modules
J
Jon Leighton 已提交
96 97
        @attribute_methods_mutex = Mutex.new

98 99 100 101 102
        # force attribute methods to be higher in inheritance hierarchy than other generated methods
        generated_attribute_methods
        generated_feature_methods
      end

103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
      def generated_feature_methods
        @generated_feature_methods ||= begin
          mod = const_set(:GeneratedFeatureMethods, Module.new)
          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)"
        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

      def arel_table
        @arel_table ||= Arel::Table.new(table_name, arel_engine)
      end

      def arel_engine
135
        @arel_engine ||= connection_handler.retrieve_connection_pool(self) ? self : active_record_super.arel_engine
136 137 138 139 140
      end

      private

      def relation #:nodoc:
141
        relation = Relation.new(self, arel_table)
142 143

        if finder_needs_type_condition?
144
          relation.where(type_condition).create_with(inheritance_column.to_sym => sti_name)
145
        else
146
          relation
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
        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.
    #
    # +initialize+ respects mass-assignment security and accepts either +:as+ or +:without_protection+ options
    # in the +options+ parameter.
    #
    # ==== Examples
    #   # Instantiates a single new object
    #   User.new(:first_name => 'Jamie')
    #
    #   # Instantiates a single new object using the :admin mass-assignment security role
    #   User.new({ :first_name => 'Jamie', :is_admin => true }, :as => :admin)
    #
    #   # Instantiates a single new object bypassing mass-assignment security
    #   User.new({ :first_name => 'Jamie', :is_admin => true }, :without_protection => true)
    def initialize(attributes = nil, options = {})
169
      @attributes = self.class.initialize_attributes(self.class.column_defaults.deep_dup)
170
      @columns_hash = self.class.column_types.dup
171 172

      init_internals
173 174 175 176 177 178 179 180

      ensure_proper_type

      populate_with_current_scope_attributes

      assign_attributes(attributes, options) if attributes

      yield self if block_given?
181
      run_callbacks :initialize if _initialize_callbacks.any?
182 183 184 185 186 187 188 189 190 191 192 193 194 195
    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)
      @attributes = self.class.initialize_attributes(coder['attributes'])
196
      @columns_hash = self.class.column_types.merge(coder['column_types'] || {})
197

198 199
      init_internals

200
      @new_record = false
201

202 203 204 205 206
      run_callbacks :find
      run_callbacks :initialize

      self
    end
207 208 209 210 211
    
    ##
    # :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 已提交
212
    # same attributes hash. If you need a copy of your attributes hash, please use the #dup method.
213 214 215 216 217 218 219 220 221 222 223 224 225 226
    #
    #   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
    # 
    #   user.name.object_id == user.dup.name.object_id  # => false
    
    ##
    # :method: dup
227 228 229 230 231 232
    # 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).
233 234 235
    
    ##
    # :nodoc:
236 237
    def initialize_dup(other)
      cloned_attributes = other.clone_attributes(:read_attribute_before_type_cast)
238 239
      self.class.initialize_attributes(cloned_attributes)

240 241 242
      cloned_attributes.delete(self.class.primary_key)

      @attributes = cloned_attributes
243
      @attributes[self.class.primary_key] = nil
244

245
      run_callbacks(:initialize) if _initialize_callbacks.any?
246 247 248

      @changed_attributes = {}
      self.class.column_defaults.each do |attr, orig_value|
249
        @changed_attributes[attr] = orig_value if _field_changed?(attr, orig_value, @attributes[attr])
250 251 252 253
      end

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

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

      ensure_proper_type
      populate_with_current_scope_attributes
      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)
274
    #   coder # => {"attributes" => {"id" => nil, ... }}
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331
    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) &&
        id.present? &&
        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

    # Freeze the attributes hash such that associations are still accessible, even on destroyed records.
    def freeze
      @attributes.freeze; self
    end

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

    # Allows sort on objects
    def <=>(other_object)
      if other_object.is_a?(self.class)
        self.to_key <=> other_object.to_key
      else
        nil
      end
    end

    # 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

332 333 334 335 336 337 338
    # Returns the connection currently associated with the class. This can
    # also be used to "borrow" the connection to do database work that isn't
    # easily done without going straight to SQL.
    def connection
      self.class.connection
    end

339 340 341 342 343 344 345 346 347 348 349 350 351 352
    # Returns the contents of the record as a nicely formatted string.
    def inspect
      inspection = if @attributes
                     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

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

358 359 360 361 362 363 364 365 366 367 368 369 370
    private

    # 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.
    #
    # See also http://tenderlovemaking.com/2011/06/28/til-its-ok-to-return-nil-from-to_ary/
    def to_ary # :nodoc:
      nil
    end
371 372

    def init_internals
373 374 375 376
      pk = self.class.primary_key

      @attributes[pk] = nil unless @attributes.key?(pk)

377 378 379 380 381 382 383 384 385 386
      @aggregation_cache      = {}
      @association_cache      = {}
      @attributes_cache       = {}
      @previously_changed     = {}
      @changed_attributes     = {}
      @readonly               = false
      @destroyed              = false
      @marked_for_destruction = false
      @new_record             = true
    end
387 388
  end
end