2017-07-09 13:41:28 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2004-11-23 20:04:44 -05:00
|
|
|
#--
|
2019-12-31 10:31:11 -05:00
|
|
|
# Copyright (c) 2004-2020 David Heinemeier Hansson
|
2004-11-23 20:04:44 -05:00
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
|
|
# a copy of this software and associated documentation files (the
|
|
|
|
# "Software"), to deal in the Software without restriction, including
|
|
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
|
|
# the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be
|
|
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
|
|
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
|
|
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
|
|
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
|
|
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
#++
|
|
|
|
|
2016-08-06 12:24:04 -04:00
|
|
|
require "active_support"
|
|
|
|
require "active_support/rails"
|
|
|
|
require "active_model"
|
|
|
|
require "arel"
|
2017-10-19 12:45:07 -04:00
|
|
|
require "yaml"
|
2009-10-14 22:05:06 -04:00
|
|
|
|
2017-10-21 09:17:03 -04:00
|
|
|
require "active_record/version"
|
2017-10-19 12:45:07 -04:00
|
|
|
require "active_model/attribute_set"
|
Stop autoloading AbstractAdapter prematurely
In 7254d23764f7abe8023f3daeb07d99ea1c8e777a, an autoload for
`ConnectionAdapters::AbstractAdapter` was added to `active_record.rb`.
Later in d6b923adbdfc9a4df20132f741bbfb43db12113c, a manual require for
that class was added to `active_record/base.rb` as some constants under
`ConnectionAdapters` weren't defined until `AbstractAdapter` was loaded.
In 1efd88283ef68d912df215125951a87526768a51, the require was removed and
replaced with an autoload in `active_record.rb`, above the previous one.
Because the first autoload was for the `ConnectionAdapters` constant and
the second one tried to create it, the autoload would fire immediately.
Rather than fixing the autoload problem, the require had effectively
just been moved from `active_record/base.rb` to `active_record.rb`.
Instead of defining autoloads for constants under `ConnectionAdapters`
in the `abstract_adapter.rb` file, we can create a separate, autoloaded
`connection_adapters.rb` file for this purpose.
To avoid a "circular require considered harmful" warning from Ruby, we
have to fix the module nesting in `schema_creation.rb`, as a followup to
e4108fc619e0f1c28cdec6049d31f2db01d56dfd.
`AbstractAdapter` loads many other dependencies, so making it autoload
properly has a noticeable impact on the load time of `active_record.rb`.
Benchmark:
$ cat test.rb
require "bundler/setup"
before = ObjectSpace.each_object(Module).count
start = Process.clock_gettime(Process::CLOCK_MONOTONIC)
require "active_record"
finish = Process.clock_gettime(Process::CLOCK_MONOTONIC)
after = ObjectSpace.each_object(Module).count
puts "took #{finish - start} and created #{after - before} modules"
Before:
$ ruby test.rb
took 0.47532399999909103 and created 901 modules
After:
$ ruby test.rb
took 0.3299509999342263 and created 608 modules
2019-09-12 18:02:35 -04:00
|
|
|
require "active_record/errors"
|
2010-10-10 19:11:04 -04:00
|
|
|
|
2008-11-24 12:14:24 -05:00
|
|
|
module ActiveRecord
|
2009-12-02 23:01:01 -05:00
|
|
|
extend ActiveSupport::Autoload
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Base
|
|
|
|
autoload :Callbacks
|
|
|
|
autoload :Core
|
|
|
|
autoload :ConnectionHandling
|
2013-04-05 02:21:48 -04:00
|
|
|
autoload :CounterCache
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :DynamicMatchers
|
2020-05-23 18:14:40 -04:00
|
|
|
autoload :DelegatedType
|
2013-11-02 15:01:31 -04:00
|
|
|
autoload :Enum
|
2015-08-14 12:31:33 -04:00
|
|
|
autoload :InternalMetadata
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Explain
|
|
|
|
autoload :Inheritance
|
|
|
|
autoload :Integration
|
|
|
|
autoload :Migration
|
2016-08-06 12:24:04 -04:00
|
|
|
autoload :Migrator, "active_record/migration"
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :ModelSchema
|
|
|
|
autoload :NestedAttributes
|
2013-11-05 07:44:16 -05:00
|
|
|
autoload :NoTouching
|
2015-03-13 13:14:55 -04:00
|
|
|
autoload :TouchLater
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Persistence
|
|
|
|
autoload :QueryCache
|
|
|
|
autoload :Querying
|
|
|
|
autoload :ReadonlyAttributes
|
2016-08-06 12:24:04 -04:00
|
|
|
autoload :RecordInvalid, "active_record/validations"
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Reflection
|
2013-04-09 16:29:36 -04:00
|
|
|
autoload :RuntimeRegistry
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Sanitization
|
|
|
|
autoload :Schema
|
|
|
|
autoload :SchemaDumper
|
|
|
|
autoload :SchemaMigration
|
|
|
|
autoload :Scoping
|
|
|
|
autoload :Serialization
|
2013-04-10 10:40:01 -04:00
|
|
|
autoload :StatementCache
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Store
|
2020-05-17 14:19:37 -04:00
|
|
|
autoload :SignedId
|
2015-02-18 17:55:48 -05:00
|
|
|
autoload :Suppressor
|
2012-08-02 20:43:26 -04:00
|
|
|
autoload :Timestamp
|
|
|
|
autoload :Transactions
|
|
|
|
autoload :Translation
|
|
|
|
autoload :Validations
|
2014-12-28 17:24:10 -05:00
|
|
|
autoload :SecureToken
|
2012-08-02 20:43:26 -04:00
|
|
|
|
2009-12-22 18:27:37 -05:00
|
|
|
eager_autoload do
|
Stop autoloading AbstractAdapter prematurely
In 7254d23764f7abe8023f3daeb07d99ea1c8e777a, an autoload for
`ConnectionAdapters::AbstractAdapter` was added to `active_record.rb`.
Later in d6b923adbdfc9a4df20132f741bbfb43db12113c, a manual require for
that class was added to `active_record/base.rb` as some constants under
`ConnectionAdapters` weren't defined until `AbstractAdapter` was loaded.
In 1efd88283ef68d912df215125951a87526768a51, the require was removed and
replaced with an autoload in `active_record.rb`, above the previous one.
Because the first autoload was for the `ConnectionAdapters` constant and
the second one tried to create it, the autoload would fire immediately.
Rather than fixing the autoload problem, the require had effectively
just been moved from `active_record/base.rb` to `active_record.rb`.
Instead of defining autoloads for constants under `ConnectionAdapters`
in the `abstract_adapter.rb` file, we can create a separate, autoloaded
`connection_adapters.rb` file for this purpose.
To avoid a "circular require considered harmful" warning from Ruby, we
have to fix the module nesting in `schema_creation.rb`, as a followup to
e4108fc619e0f1c28cdec6049d31f2db01d56dfd.
`AbstractAdapter` loads many other dependencies, so making it autoload
properly has a noticeable impact on the load time of `active_record.rb`.
Benchmark:
$ cat test.rb
require "bundler/setup"
before = ObjectSpace.each_object(Module).count
start = Process.clock_gettime(Process::CLOCK_MONOTONIC)
require "active_record"
finish = Process.clock_gettime(Process::CLOCK_MONOTONIC)
after = ObjectSpace.each_object(Module).count
puts "took #{finish - start} and created #{after - before} modules"
Before:
$ ruby test.rb
took 0.47532399999909103 and created 901 modules
After:
$ ruby test.rb
took 0.3299509999342263 and created 608 modules
2019-09-12 18:02:35 -04:00
|
|
|
autoload :ConnectionAdapters
|
2011-08-16 10:01:18 -04:00
|
|
|
|
2012-07-27 17:21:29 -04:00
|
|
|
autoload :Aggregations
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Associations
|
2011-12-15 15:07:41 -05:00
|
|
|
autoload :AttributeAssignment
|
2013-04-05 02:21:48 -04:00
|
|
|
autoload :AttributeMethods
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :AutosaveAssociation
|
2009-12-30 02:58:26 -05:00
|
|
|
|
2017-01-31 00:19:51 -05:00
|
|
|
autoload :LegacyYamlAdapter
|
|
|
|
|
2009-12-22 18:27:37 -05:00
|
|
|
autoload :Relation
|
2013-04-25 16:37:44 -04:00
|
|
|
autoload :AssociationRelation
|
2012-01-30 15:36:47 -05:00
|
|
|
autoload :NullRelation
|
2009-12-30 02:58:26 -05:00
|
|
|
|
2016-08-06 12:24:04 -04:00
|
|
|
autoload_under "relation" do
|
2009-12-30 02:58:26 -05:00
|
|
|
autoload :QueryMethods
|
|
|
|
autoload :FinderMethods
|
2010-01-19 11:45:35 -05:00
|
|
|
autoload :Calculations
|
2009-12-31 16:44:19 -05:00
|
|
|
autoload :PredicateBuilder
|
2010-01-03 08:27:57 -05:00
|
|
|
autoload :SpawnMethods
|
2010-02-12 11:53:51 -05:00
|
|
|
autoload :Batches
|
2011-12-15 14:46:30 -05:00
|
|
|
autoload :Delegation
|
2009-12-30 02:58:26 -05:00
|
|
|
end
|
|
|
|
|
2011-08-16 10:01:18 -04:00
|
|
|
autoload :Result
|
2016-08-15 17:12:08 -04:00
|
|
|
autoload :TableMetadata
|
2017-11-10 16:43:54 -05:00
|
|
|
autoload :Type
|
2009-12-22 18:27:37 -05:00
|
|
|
end
|
2004-11-23 20:04:44 -05:00
|
|
|
|
2011-02-01 12:34:21 -05:00
|
|
|
module Coders
|
2016-08-06 12:24:04 -04:00
|
|
|
autoload :YAMLColumn, "active_record/coders/yaml_column"
|
|
|
|
autoload :JSON, "active_record/coders/json"
|
2011-02-01 12:34:21 -05:00
|
|
|
end
|
|
|
|
|
2009-07-24 01:25:27 -04:00
|
|
|
module AttributeMethods
|
2009-12-02 23:01:01 -05:00
|
|
|
extend ActiveSupport::Autoload
|
|
|
|
|
2009-12-22 18:27:37 -05:00
|
|
|
eager_autoload do
|
|
|
|
autoload :BeforeTypeCast
|
|
|
|
autoload :Dirty
|
|
|
|
autoload :PrimaryKey
|
|
|
|
autoload :Query
|
|
|
|
autoload :Read
|
|
|
|
autoload :TimeZoneConversion
|
|
|
|
autoload :Write
|
2011-11-30 10:52:09 -05:00
|
|
|
autoload :Serialization
|
2009-12-22 18:27:37 -05:00
|
|
|
end
|
2009-07-24 01:25:27 -04:00
|
|
|
end
|
|
|
|
|
2008-11-24 12:14:24 -05:00
|
|
|
module Locking
|
2009-12-02 23:01:01 -05:00
|
|
|
extend ActiveSupport::Autoload
|
2009-12-16 12:56:51 -05:00
|
|
|
|
2009-12-22 18:27:37 -05:00
|
|
|
eager_autoload do
|
|
|
|
autoload :Optimistic
|
|
|
|
autoload :Pessimistic
|
|
|
|
end
|
2008-11-24 12:14:24 -05:00
|
|
|
end
|
2005-05-02 03:04:20 -04:00
|
|
|
|
2011-12-15 15:35:04 -05:00
|
|
|
module Scoping
|
|
|
|
extend ActiveSupport::Autoload
|
|
|
|
|
|
|
|
eager_autoload do
|
|
|
|
autoload :Named
|
|
|
|
autoload :Default
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-01-17 13:33:48 -05:00
|
|
|
module Middleware
|
|
|
|
extend ActiveSupport::Autoload
|
|
|
|
|
|
|
|
autoload :DatabaseSelector, "active_record/middleware/database_selector"
|
|
|
|
end
|
|
|
|
|
2012-06-16 19:44:29 -04:00
|
|
|
module Tasks
|
|
|
|
extend ActiveSupport::Autoload
|
|
|
|
|
|
|
|
autoload :DatabaseTasks
|
2016-08-06 12:24:04 -04:00
|
|
|
autoload :SQLiteDatabaseTasks, "active_record/tasks/sqlite_database_tasks"
|
|
|
|
autoload :MySQLDatabaseTasks, "active_record/tasks/mysql_database_tasks"
|
2012-06-17 08:03:32 -04:00
|
|
|
autoload :PostgreSQLDatabaseTasks,
|
2016-08-06 12:24:04 -04:00
|
|
|
"active_record/tasks/postgresql_database_tasks"
|
2012-06-16 19:44:29 -04:00
|
|
|
end
|
|
|
|
|
2017-12-20 16:59:41 -05:00
|
|
|
autoload :TestDatabases, "active_record/test_databases"
|
2016-08-06 12:24:04 -04:00
|
|
|
autoload :TestFixtures, "active_record/fixtures"
|
2012-08-01 14:54:22 -04:00
|
|
|
|
|
|
|
def self.eager_load!
|
|
|
|
super
|
|
|
|
ActiveRecord::Locking.eager_load!
|
|
|
|
ActiveRecord::Scoping.eager_load!
|
|
|
|
ActiveRecord::Associations.eager_load!
|
|
|
|
ActiveRecord::AttributeMethods.eager_load!
|
|
|
|
ActiveRecord::ConnectionAdapters.eager_load!
|
|
|
|
end
|
2010-03-29 20:08:08 -04:00
|
|
|
end
|
2010-03-07 09:24:30 -05:00
|
|
|
|
2010-03-29 20:08:08 -04:00
|
|
|
ActiveSupport.on_load(:active_record) do
|
2010-09-30 19:28:12 -04:00
|
|
|
Arel::Table.engine = self
|
2008-11-24 12:14:24 -05:00
|
|
|
end
|
2008-06-19 10:25:27 -04:00
|
|
|
|
2012-05-10 19:48:23 -04:00
|
|
|
ActiveSupport.on_load(:i18n) do
|
2017-05-15 10:17:28 -04:00
|
|
|
I18n.load_path << File.expand_path("active_record/locale/en.yml", __dir__)
|
2012-05-10 19:48:23 -04:00
|
|
|
end
|
2017-10-19 12:45:07 -04:00
|
|
|
|
|
|
|
YAML.load_tags["!ruby/object:ActiveRecord::AttributeSet"] = "ActiveModel::AttributeSet"
|
|
|
|
YAML.load_tags["!ruby/object:ActiveRecord::Attribute::FromDatabase"] = "ActiveModel::Attribute::FromDatabase"
|
|
|
|
YAML.load_tags["!ruby/object:ActiveRecord::LazyAttributeHash"] = "ActiveModel::LazyAttributeHash"
|
2020-06-25 07:36:47 -04:00
|
|
|
YAML.load_tags["!ruby/object:ActiveRecord::ConnectionAdapters::AbstractMysqlAdapter::MysqlString"] = "ActiveRecord::Type::String"
|