connection_handling.rb 11.9 KB
Newer Older
1 2
# frozen_string_literal: true

3 4
module ActiveRecord
  module ConnectionHandling
5
    RAILS_ENV   = -> { (Rails.env if defined?(Rails.env)) || ENV["RAILS_ENV"].presence || ENV["RACK_ENV"].presence }
6 7
    DEFAULT_ENV = -> { RAILS_ENV.call || "default_env" }

8 9
    # Establishes the connection to the database. Accepts a hash as input where
    # the <tt>:adapter</tt> key must be specified with the name of a database adapter (in lower-case)
10
    # example for regular databases (MySQL, PostgreSQL, etc):
11 12
    #
    #   ActiveRecord::Base.establish_connection(
R
Ryuta Kamizono 已提交
13
    #     adapter:  "mysql2",
A
AvnerCohen 已提交
14 15 16 17
    #     host:     "localhost",
    #     username: "myuser",
    #     password: "mypass",
    #     database: "somedatabase"
18 19 20 21 22
    #   )
    #
    # Example for SQLite database:
    #
    #   ActiveRecord::Base.establish_connection(
J
Julian Simioni 已提交
23
    #     adapter:  "sqlite3",
24
    #     database: "path/to/dbfile"
25 26 27 28 29
    #   )
    #
    # Also accepts keys as strings (for parsing from YAML for example):
    #
    #   ActiveRecord::Base.establish_connection(
J
Julian Simioni 已提交
30
    #     "adapter"  => "sqlite3",
31
    #     "database" => "path/to/dbfile"
32 33 34 35 36 37 38 39
    #   )
    #
    # Or a URL:
    #
    #   ActiveRecord::Base.establish_connection(
    #     "postgres://myuser:mypass@localhost/somedatabase"
    #   )
    #
40 41
    # In case {ActiveRecord::Base.configurations}[rdoc-ref:Core.configurations]
    # is set (Rails automatically loads the contents of config/database.yml into it),
42 43 44 45 46
    # a symbol can also be given as argument, representing a key in the
    # configuration hash:
    #
    #   ActiveRecord::Base.establish_connection(:production)
    #
47
    # The exceptions AdapterNotSpecified, AdapterNotFound and +ArgumentError+
48
    # may be returned on an error.
49
    def establish_connection(config_or_env = nil)
E
eileencodes 已提交
50
      config_or_env ||= DEFAULT_ENV.call.to_sym
E
eileencodes 已提交
51 52
      db_config, owner_name = resolve_config_for_connection(config_or_env)
      connection_handler.establish_connection(db_config, current_pool_key, owner_name)
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
    end

    # Connects a model to the databases specified. The +database+ keyword
    # takes a hash consisting of a +role+ and a +database_key+.
    #
    # This will create a connection handler for switching between connections,
    # look up the config hash using the +database_key+ and finally
    # establishes a connection to that config.
    #
    #   class AnimalsModel < ApplicationRecord
    #     self.abstract_class = true
    #
    #     connects_to database: { writing: :primary, reading: :primary_replica }
    #   end
    #
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
    # +connects_to+ also supports horizontal sharding. The horizontal sharding API
    # also supports read replicas. Connect a model to a list of shards like this:
    #
    #   class AnimalsModel < ApplicationRecord
    #     self.abstract_class = true
    #
    #     connects_to shards: {
    #       default: { writing: :primary, reading: :primary_replica },
    #       shard_two: { writing: :primary_shard_two, reading: :primary_shard_replica_two }
    #     }
    #   end
    #
    # Returns an array of database connections.
    def connects_to(database: {}, shards: {})
      if database.present? && shards.present?
        raise ArgumentError, "connects_to can only accept a `database` or `shards` argument, but not both arguments."
      end

86 87 88
      connections = []

      database.each do |role, database_key|
E
eileencodes 已提交
89
        db_config, owner_name = resolve_config_for_connection(database_key)
90 91
        handler = lookup_connection_handler(role.to_sym)

E
eileencodes 已提交
92
        connections << handler.establish_connection(db_config, default_pool_key, owner_name)
93 94
      end

95 96
      shards.each do |pool_key, database_keys|
        database_keys.each do |role, database_key|
E
eileencodes 已提交
97
          db_config, owner_name = resolve_config_for_connection(database_key)
98 99
          handler = lookup_connection_handler(role.to_sym)

E
eileencodes 已提交
100
          connections << handler.establish_connection(db_config, pool_key.to_sym, owner_name)
101 102 103
        end
      end

104 105 106
      connections
    end

107 108 109
    # Connects to a role (ex writing, reading or a custom role) and/or
    # shard for the duration of the block. At the end of the block the
    # connection will be returned to the original role / shard.
110
    #
111 112 113
    # If only a role is passed, Active Record will look up the connection
    # based on the requested role. If a non-established role is requested
    # an `ActiveRecord::ConnectionNotEstablished` error will be raised:
114 115
    #
    #   ActiveRecord::Base.connected_to(role: :writing) do
116
    #     Dog.create! # creates dog using dog writing connection
117 118 119 120 121 122
    #   end
    #
    #   ActiveRecord::Base.connected_to(role: :reading) do
    #     Dog.create! # throws exception because we're on a replica
    #   end
    #
123 124 125 126 127 128
    # If only a shard is passed, Active Record will look up the shard on the
    # current role. If a non-existent shard is passed, an
    # `ActiveRecord::ConnectionNotEstablished` error will be raised.
    #
    #   ActiveRecord::Base.connected_to(shard: :default) do
    #     # Dog.create! # creates dog in shard with the default key
129
    #   end
130 131 132 133 134 135 136 137 138 139
    #
    # If a shard and role is passed, Active Record will first lookup the role,
    # and then look up the connection by shard key.
    #
    #   ActiveRecord::Base.connected_to(role: :reading, shard: :shard_one_replica) do
    #     # Dog.create! # would raise as we're on a readonly connection
    #   end
    #
    # The database kwarg is deprecated and will be removed in 6.2.0 without replacement.
    def connected_to(database: nil, role: nil, shard: nil, prevent_writes: false, &blk)
140 141
      raise NotImplementedError, "connected_to can only be called on ActiveRecord::Base" unless self == Base

142 143 144 145
      if database
        ActiveSupport::Deprecation.warn("The database key in `connected_to` is deprecated. It will be removed in Rails 6.2.0 without replacement.")
      end

146 147
      if database && (role || shard)
        raise ArgumentError, "`connected_to` cannot accept a `database` argument with any other arguments."
148
      elsif database
149 150 151 152 153
        if database.is_a?(Hash)
          role, database = database.first
          role = role.to_sym
        end

E
eileencodes 已提交
154
        db_config, owner_name = resolve_config_for_connection(database)
155
        handler = lookup_connection_handler(role)
156

E
eileencodes 已提交
157
        handler.establish_connection(db_config, default_pool_key, owner_name)
158 159

        with_handler(role, &blk)
160
      elsif shard
E
eileencodes 已提交
161
        with_shard(shard, role || current_role, prevent_writes, &blk)
162
      elsif role
163
        with_role(role, prevent_writes, &blk)
164
      else
165
        raise ArgumentError, "must provide a `shard` and/or `role`."
166 167 168
      end
    end

J
John Hawthorn 已提交
169 170 171 172 173 174
    # Returns true if role is the current connected role.
    #
    #   ActiveRecord::Base.connected_to(role: :writing) do
    #     ActiveRecord::Base.connected_to?(role: :writing) #=> true
    #     ActiveRecord::Base.connected_to?(role: :reading) #=> false
    #   end
175 176
    def connected_to?(role:, shard: ActiveRecord::Base.default_pool_key)
      current_role == role.to_sym && current_pool_key == shard.to_sym
J
John Hawthorn 已提交
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
    end

    # Returns the symbol representing the current connected role.
    #
    #   ActiveRecord::Base.connected_to(role: :writing) do
    #     ActiveRecord::Base.current_role #=> :writing
    #   end
    #
    #   ActiveRecord::Base.connected_to(role: :reading) do
    #     ActiveRecord::Base.current_role #=> :reading
    #   end
    def current_role
      connection_handlers.key(connection_handler)
    end

192
    def lookup_connection_handler(handler_key) # :nodoc:
193
      handler_key ||= ActiveRecord::Base.writing_role
194 195 196
      connection_handlers[handler_key] ||= ActiveRecord::ConnectionAdapters::ConnectionHandler.new
    end

197 198 199 200 201 202 203 204 205
    # Clears the query cache for all connections associated with the current thread.
    def clear_query_caches_for_current_thread
      ActiveRecord::Base.connection_handlers.each_value do |handler|
        handler.connection_pool_list.each do |pool|
          pool.connection.clear_query_cache if pool.active_connection?
        end
      end
    end

206 207 208 209 210 211 212
    # Returns the connection currently associated with the class. This can
    # also be used to "borrow" the connection to do database work unrelated
    # to any of the specific Active Records.
    def connection
      retrieve_connection
    end

213
    attr_writer :connection_specification_name
A
Arthur Neves 已提交
214

215
    # Return the connection specification name from the current class or its parent.
216
    def connection_specification_name
217
      if !defined?(@connection_specification_name) || @connection_specification_name.nil?
218
        return self == Base ? Base.name : superclass.connection_specification_name
A
Arthur Neves 已提交
219
      end
220
      @connection_specification_name
A
Arthur Neves 已提交
221 222
    end

223 224 225 226
    def primary_class? # :nodoc:
      self == Base || defined?(ApplicationRecord) && self == ApplicationRecord
    end

227 228 229
    # Returns the configuration of the associated connection as a hash:
    #
    #  ActiveRecord::Base.connection_config
A
AvnerCohen 已提交
230
    #  # => {pool: 5, timeout: 5000, database: "db/development.sqlite3", adapter: "sqlite3"}
231 232 233
    #
    # Please use only for reading.
    def connection_config
234
      connection_pool.db_config.configuration_hash
235
    end
J
John Crepezzi 已提交
236 237 238 239 240 241
    deprecate connection_config: "Use connection_db_config instead"

    # Returns the db_config object from the associated connection:
    #
    #  ActiveRecord::Base.connection_db_config
    #    #<ActiveRecord::DatabaseConfigurations::HashConfig:0x00007fd1acbded10 @env_name="development",
242
    #      @name="primary", @config={pool: 5, timeout: 5000, database: "db/development.sqlite3", adapter: "sqlite3"}>
J
John Crepezzi 已提交
243 244 245 246 247
    #
    # Use only for reading.
    def connection_db_config
      connection_pool.db_config
    end
248 249

    def connection_pool
250
      connection_handler.retrieve_connection_pool(connection_specification_name, current_pool_key) || raise(ConnectionNotEstablished)
251 252 253
    end

    def retrieve_connection
254
      connection_handler.retrieve_connection(connection_specification_name, current_pool_key)
255 256
    end

257
    # Returns +true+ if Active Record is connected.
258
    def connected?
259
      connection_handler.connected?(connection_specification_name, current_pool_key)
260 261
    end

262 263
    def remove_connection(name = nil)
      name ||= @connection_specification_name if defined?(@connection_specification_name)
264
      # if removing a connection that has a pool, we reset the
265 266
      # connection_specification_name so it will use the parent
      # pool.
267
      if connection_handler.retrieve_connection_pool(name, current_pool_key)
268 269 270
        self.connection_specification_name = nil
      end

271
      connection_handler.remove_connection_pool(name, current_pool_key)
272 273
    end

J
Jon Leighton 已提交
274 275 276 277
    def clear_cache! # :nodoc:
      connection.schema_cache.clear!
    end

278
    delegate :clear_active_connections!, :clear_reloadable_connections!,
M
Matthew Draper 已提交
279
      :clear_all_connections!, :flush_idle_connections!, to: :connection_handler
280 281

    private
282 283 284
      def resolve_config_for_connection(config_or_env)
        raise "Anonymous class is not allowed." unless name

E
eileencodes 已提交
285 286
        owner_name = primary_class? ? Base.name : name
        self.connection_specification_name = owner_name
287

E
eileencodes 已提交
288 289
        db_config = Base.configurations.resolve(config_or_env)
        [db_config, owner_name]
290 291
      end

292 293 294 295 296 297 298 299 300 301 302 303 304
      def with_handler(handler_key, &blk)
        handler = lookup_connection_handler(handler_key)
        swap_connection_handler(handler, &blk)
      end

      def with_role(role, prevent_writes, &blk)
        prevent_writes = true if role == reading_role

        with_handler(role.to_sym) do
          connection_handler.while_preventing_writes(prevent_writes, &blk)
        end
      end

E
eileencodes 已提交
305
      def with_shard(pool_key, role, prevent_writes)
306 307 308 309 310 311 312 313 314 315
        old_pool_key = current_pool_key

        with_role(role, prevent_writes) do
          self.current_pool_key = pool_key
          yield
        end
      ensure
        self.current_pool_key = old_pool_key
      end

316 317
      def swap_connection_handler(handler, &blk) # :nodoc:
        old_handler, ActiveRecord::Base.connection_handler = ActiveRecord::Base.connection_handler, handler
318 319 320
        return_value = yield
        return_value.load if return_value.is_a? ActiveRecord::Relation
        return_value
321 322 323
      ensure
        ActiveRecord::Base.connection_handler = old_handler
      end
324 325
  end
end