connection_handling.rb 4.8 KB
Newer Older
1 2
module ActiveRecord
  module ConnectionHandling
3
    RAILS_ENV   = -> { (Rails.env if defined?(Rails.env)) || ENV["RAILS_ENV"] || ENV["RACK_ENV"] }
4 5
    DEFAULT_ENV = -> { RAILS_ENV.call || "default_env" }

6 7
    # 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)
8
    # example for regular databases (MySQL, PostgreSQL, etc):
9 10
    #
    #   ActiveRecord::Base.establish_connection(
R
Ryuta Kamizono 已提交
11
    #     adapter:  "mysql2",
A
AvnerCohen 已提交
12 13 14 15
    #     host:     "localhost",
    #     username: "myuser",
    #     password: "mypass",
    #     database: "somedatabase"
16 17 18 19 20
    #   )
    #
    # Example for SQLite database:
    #
    #   ActiveRecord::Base.establish_connection(
J
Julian Simioni 已提交
21
    #     adapter:  "sqlite3",
22
    #     database: "path/to/dbfile"
23 24 25 26 27
    #   )
    #
    # Also accepts keys as strings (for parsing from YAML for example):
    #
    #   ActiveRecord::Base.establish_connection(
J
Julian Simioni 已提交
28
    #     "adapter"  => "sqlite3",
29
    #     "database" => "path/to/dbfile"
30 31 32 33 34 35 36 37
    #   )
    #
    # Or a URL:
    #
    #   ActiveRecord::Base.establish_connection(
    #     "postgres://myuser:mypass@localhost/somedatabase"
    #   )
    #
38 39
    # In case {ActiveRecord::Base.configurations}[rdoc-ref:Core.configurations]
    # is set (Rails automatically loads the contents of config/database.yml into it),
40 41 42 43 44
    # a symbol can also be given as argument, representing a key in the
    # configuration hash:
    #
    #   ActiveRecord::Base.establish_connection(:production)
    #
45
    # The exceptions AdapterNotSpecified, AdapterNotFound and +ArgumentError+
46
    # may be returned on an error.
47
    def establish_connection(spec = nil)
J
Jon Moss 已提交
48
      raise "Anonymous class is not allowed." unless name
A
Arthur Neves 已提交
49

50 51
      spec     ||= DEFAULT_ENV.call.to_sym
      resolver =   ConnectionAdapters::ConnectionSpecification::Resolver.new configurations
A
Arthur Neves 已提交
52
      # TODO: uses name on establish_connection, for backwards compatibility
A
Arthur Neves 已提交
53
      spec     =   resolver.spec(spec, self == Base ? "primary" : name)
54
      self.connection_specification_name = spec.name
55 56 57 58 59 60

      unless respond_to?(spec.adapter_method)
        raise AdapterNotFound, "database configuration specifies nonexistent #{spec.config[:adapter]} adapter"
      end

      remove_connection
A
Arthur Neves 已提交
61
      connection_handler.establish_connection spec
62 63
    end

64
    class MergeAndResolveDefaultUrlConfig # :nodoc:
65
      def initialize(raw_configurations)
66
        @raw_config = raw_configurations.dup
67
        @env = DEFAULT_ENV.call.to_s
68 69 70 71 72 73 74 75 76 77
      end

      # Returns fully resolved connection hashes.
      # Merges connection information from `ENV['DATABASE_URL']` if available.
      def resolve
        ConnectionAdapters::ConnectionSpecification::Resolver.new(config).resolve_all
      end

      private
        def config
78
          @raw_config.dup.tap do |cfg|
M
Matthew Draper 已提交
79
            if url = ENV['DATABASE_URL']
M
Matthew Draper 已提交
80 81
              cfg[@env] ||= {}
              cfg[@env]["url"] ||= url
82
            end
83 84 85 86
          end
        end
    end

87 88 89 90 91 92 93
    # 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

94
    attr_writer :connection_specification_name
A
Arthur Neves 已提交
95

J
Jon Moss 已提交
96
    # Return the specification name from the current class or its parent.
97 98 99
    def connection_specification_name
      unless defined?(@connection_specification_name)
        @connection_specification_name = self == Base ? "primary" : superclass.connection_specification_name
A
Arthur Neves 已提交
100
      end
101
      @connection_specification_name
A
Arthur Neves 已提交
102 103
    end

104
    def connection_id
105
      ActiveRecord::RuntimeRegistry.connection_id ||= Thread.current.object_id
106 107 108
    end

    def connection_id=(connection_id)
109
      ActiveRecord::RuntimeRegistry.connection_id = connection_id
110 111 112 113 114
    end

    # Returns the configuration of the associated connection as a hash:
    #
    #  ActiveRecord::Base.connection_config
A
AvnerCohen 已提交
115
    #  # => {pool: 5, timeout: 5000, database: "db/development.sqlite3", adapter: "sqlite3"}
116 117 118 119 120 121 122
    #
    # Please use only for reading.
    def connection_config
      connection_pool.spec.config
    end

    def connection_pool
123
      connection_handler.retrieve_connection_pool(connection_specification_name) or raise ConnectionNotEstablished
124 125 126
    end

    def retrieve_connection
127
      connection_handler.retrieve_connection(connection_specification_name)
128 129
    end

130
    # Returns +true+ if Active Record is connected.
131
    def connected?
132
      connection_handler.connected?(connection_specification_name)
133 134
    end

135
    def remove_connection(name = connection_specification_name)
136
      connection_handler.remove_connection(name)
137 138
    end

J
Jon Leighton 已提交
139 140 141 142
    def clear_cache! # :nodoc:
      connection.schema_cache.clear!
    end

143
    delegate :clear_active_connections!, :clear_reloadable_connections!,
144
      :clear_all_connections!, :to => :connection_handler
145 146
  end
end