sqlite3_adapter.rb 18.7 KB
Newer Older
1 2 3
require 'active_record/connection_adapters/abstract_adapter'
require 'active_record/connection_adapters/statement_pool'
require 'arel/visitors/bind_visitor'
4

5
gem 'sqlite3', '~> 1.3.6'
6
require 'sqlite3'
7 8

module ActiveRecord
9
  module ConnectionHandling # :nodoc:
10
    # sqlite3 adapter reuses sqlite_connection.
11
    def sqlite3_connection(config)
12 13 14 15 16
      # Require database.
      unless config[:database]
        raise ArgumentError, "No database file specified. Missing argument: database"
      end

17 18 19
      # Allow database path relative to Rails.root, but only if the database
      # path is not the special path that tells sqlite to build a database only
      # in memory.
20
      if ':memory:' != config[:database]
21 22 23
        config[:database] = File.expand_path(config[:database], Rails.root) if defined?(Rails.root)
        dirname = File.dirname(config[:database])
        Dir.mkdir(dirname) unless File.directory?(dirname)
24
      end
25 26

      db = SQLite3::Database.new(
27
        config[:database].to_s,
28
        :results_as_hash => true
29 30
      )

31
      db.busy_timeout(ConnectionAdapters::SQLite3Adapter.type_cast_config_to_integer(config[:timeout])) if config[:timeout]
32

33
      ConnectionAdapters::SQLite3Adapter.new(db, logger, nil, config)
34 35
    rescue Errno::ENOENT => error
      if error.message.include?("No such file or directory")
36
        raise ActiveRecord::NoDatabaseError.new(error.message, error)
37
      else
38
        raise
39
      end
40 41 42 43
    end
  end

  module ConnectionAdapters #:nodoc:
44 45 46 47
    class SQLite3Binary < Type::Binary # :nodoc:
      def cast_value(value)
        if value.encoding != Encoding::ASCII_8BIT
          value = value.force_encoding(Encoding::ASCII_8BIT)
48
        end
49
        value
50 51 52
      end
    end

53 54 55 56 57 58 59 60 61 62
    class SQLite3String < Type::String # :nodoc:
      def type_cast_for_database(value)
        if value.is_a?(::String) && value.encoding == Encoding::ASCII_8BIT
          value.encode(Encoding::UTF_8)
        else
          super
        end
      end
    end

A
Andrey Deryabin 已提交
63 64
    # The SQLite3 adapter works SQLite 3.6.16 or newer
    # with the sqlite3-ruby drivers (available as gem from https://rubygems.org/gems/sqlite3).
65 66 67 68 69
    #
    # Options:
    #
    # * <tt>:database</tt> - Path to the database file.
    class SQLite3Adapter < AbstractAdapter
70
      ADAPTER_NAME = 'SQLite'.freeze
71 72
      include Savepoints

73 74
      NATIVE_DATABASE_TYPES = {
        primary_key:  'INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL',
75
        string:       { name: "varchar" },
76 77 78 79 80 81 82 83 84 85 86
        text:         { name: "text" },
        integer:      { name: "integer" },
        float:        { name: "float" },
        decimal:      { name: "decimal" },
        datetime:     { name: "datetime" },
        time:         { name: "time" },
        date:         { name: "date" },
        binary:       { name: "blob" },
        boolean:      { name: "boolean" }
      }

87 88 89 90
      class Version
        include Comparable

        def initialize(version_string)
91
          @version = version_string.split('.').map(&:to_i)
92 93 94
        end

        def <=>(version_string)
95
          @version <=> version_string.split('.').map(&:to_i)
96 97 98 99 100
        end
      end

      class StatementPool < ConnectionAdapters::StatementPool
        def initialize(connection, max)
101
          super
102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
          @cache = Hash.new { |h,pid| h[pid] = {} }
        end

        def each(&block); cache.each(&block); end
        def key?(key);    cache.key?(key); end
        def [](key);      cache[key]; end
        def length;       cache.length; end

        def []=(sql, key)
          while @max <= cache.size
            dealloc(cache.shift.last[:stmt])
          end
          cache[sql] = key
        end

        def clear
118
          cache.each_value do |hash|
119 120 121 122 123 124 125 126 127 128 129 130
            dealloc hash[:stmt]
          end
          cache.clear
        end

        private
        def cache
          @cache[$$]
        end

        def dealloc(stmt)
          stmt.close unless stmt.closed?
131 132
        end
      end
133

134
      def initialize(connection, logger, connection_options, config)
135
        super(connection, logger)
136 137

        @active     = nil
138
        @statements = StatementPool.new(@connection,
139
                                        self.class.type_cast_config_to_integer(config.fetch(:statement_limit) { 1000 }))
140 141
        @config = config

142 143
        @visitor = Arel::Visitors::SQLite.new self

144
        if self.class.type_cast_config_to_boolean(config.fetch(:prepared_statements) { true })
145
          @prepared_statements = true
146
        else
147 148 149 150
          @prepared_statements = false
        end
      end

151
      def supports_ddl_transactions?
152
        true
153 154 155
      end

      def supports_savepoints?
156
        true
157 158
      end

159 160 161 162
      def supports_partial_index?
        sqlite_version >= '3.8.0'
      end

163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181
      # Returns true, since this connection adapter supports prepared statement
      # caching.
      def supports_statement_cache?
        true
      end

      # Returns true, since this connection adapter supports migrations.
      def supports_migrations? #:nodoc:
        true
      end

      def supports_primary_key? #:nodoc:
        true
      end

      def requires_reloading?
        true
      end

182 183 184 185
      def supports_views?
        true
      end

186 187 188 189
      def active?
        @active != false
      end

190 191 192 193
      # Disconnects from the database if already connected. Otherwise, this
      # method does nothing.
      def disconnect!
        super
194
        @active = false
195 196 197 198 199 200 201 202 203
        @connection.close rescue nil
      end

      # Clears the prepared statements cache.
      def clear_cache!
        @statements.clear
      end

      def supports_index_sort_order?
204
        true
205 206
      end

207
      # Returns 62. SQLite supports index names up to 64
208 209 210
      # characters. The rest is used by rails internally to perform
      # temporary rename operations
      def allowed_index_name_length
211
        index_name_length - 2
212 213
      end

214
      def native_database_types #:nodoc:
215
        NATIVE_DATABASE_TYPES
216 217
      end

218 219
      # Returns the current database encoding format as a string, eg: 'UTF-8'
      def encoding
220
        @connection.encoding.to_s
221 222
      end

A
Andrey Deryabin 已提交
223 224 225 226
      def supports_explain?
        true
      end

227 228
      # QUOTING ==================================================

229
      def _quote(value) # :nodoc:
230 231
        case value
        when Type::Binary::Data
232
          "x'#{value.hex}'"
233 234 235 236 237
        else
          super
        end
      end

238 239 240 241 242 243 244 245 246
      def _type_cast(value) # :nodoc:
        case value
        when BigDecimal
          value.to_f
        else
          super
        end
      end

247 248 249 250
      def quote_string(s) #:nodoc:
        @connection.class.quote(s)
      end

251 252 253 254
      def quote_table_name_for_assignment(table, attr)
        quote_column_name(attr)
      end

255 256 257 258
      def quote_column_name(name) #:nodoc:
        %Q("#{name.to_s.gsub('"', '""')}")
      end

259
      #--
A
Andrey Deryabin 已提交
260
      # DATABASE STATEMENTS ======================================
261
      #++
A
Andrey Deryabin 已提交
262 263 264

      def explain(arel, binds = [])
        sql = "EXPLAIN QUERY PLAN #{to_sql(arel, binds)}"
265
        ExplainPrettyPrinter.new.pp(exec_query(sql, 'EXPLAIN', []))
A
Andrey Deryabin 已提交
266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
      end

      class ExplainPrettyPrinter
        # Pretty prints the result of a EXPLAIN QUERY PLAN in a way that resembles
        # the output of the SQLite shell:
        #
        #   0|0|0|SEARCH TABLE users USING INTEGER PRIMARY KEY (rowid=?) (~1 rows)
        #   0|1|1|SCAN TABLE posts (~100000 rows)
        #
        def pp(result) # :nodoc:
          result.rows.map do |row|
            row.join('|')
          end.join("\n") + "\n"
        end
      end
281 282

      def exec_query(sql, name = nil, binds = [])
283 284 285
        type_casted_binds = binds.map { |col, val|
          [col, type_cast(val, col)]
        }
286

287
        log(sql, name, type_casted_binds) do
288 289
          # Don't cache statements if they are not prepared
          if without_prepared_statement?(binds)
290
            stmt    = @connection.prepare(sql)
291 292 293 294 295 296
            begin
              cols    = stmt.columns
              records = stmt.to_a
            ensure
              stmt.close
            end
297 298 299 300 301 302 303 304
            stmt = records
          else
            cache = @statements[sql] ||= {
              :stmt => @connection.prepare(sql)
            }
            stmt = cache[:stmt]
            cols = cache[:cols] ||= stmt.columns
            stmt.reset!
305
            stmt.bind_params type_casted_binds.map { |_, val| val }
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 332 333 334 335 336 337 338 339 340 341
          end

          ActiveRecord::Result.new(cols, stmt.to_a)
        end
      end

      def exec_delete(sql, name = 'SQL', binds = [])
        exec_query(sql, name, binds)
        @connection.changes
      end
      alias :exec_update :exec_delete

      def last_inserted_id(result)
        @connection.last_insert_row_id
      end

      def execute(sql, name = nil) #:nodoc:
        log(sql, name) { @connection.execute(sql) }
      end

      def update_sql(sql, name = nil) #:nodoc:
        super
        @connection.changes
      end

      def delete_sql(sql, name = nil) #:nodoc:
        sql += " WHERE 1=1" unless sql =~ /WHERE/i
        super sql, name
      end

      def insert_sql(sql, name = nil, pk = nil, id_value = nil, sequence_name = nil) #:nodoc:
        super
        id_value || @connection.last_insert_row_id
      end
      alias :create :insert_sql

342 343
      def select_rows(sql, name = nil, binds = [])
        exec_query(sql, name, binds).rows
344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359
      end

      def begin_db_transaction #:nodoc:
        log('begin transaction',nil) { @connection.transaction }
      end

      def commit_db_transaction #:nodoc:
        log('commit transaction',nil) { @connection.commit }
      end

      def rollback_db_transaction #:nodoc:
        log('rollback transaction',nil) { @connection.rollback }
      end

      # SCHEMA STATEMENTS ========================================

K
kennyj 已提交
360
      def tables(name = nil, table_name = nil) #:nodoc:
361 362 363
        sql = <<-SQL
          SELECT name
          FROM sqlite_master
364
          WHERE (type = 'table' OR type = 'view') AND NOT name = 'sqlite_sequence'
365 366 367
        SQL
        sql << " AND name = #{quote_table_name(table_name)}" if table_name

K
kennyj 已提交
368
        exec_query(sql, 'SCHEMA').map do |row|
369 370 371 372
          row['name']
        end
      end

K
kennyj 已提交
373 374
      def table_exists?(table_name)
        table_name && tables(nil, table_name).any?
375 376
      end

377
      # Returns an array of +Column+ objects for the table specified by +table_name+.
378 379 380 381 382
      def columns(table_name) #:nodoc:
        table_structure(table_name).map do |field|
          case field["dflt_value"]
          when /^null$/i
            field["dflt_value"] = nil
383
          when /^'(.*)'$/m
384
            field["dflt_value"] = $1.gsub("''", "'")
385
          when /^"(.*)"$/m
386 387 388
            field["dflt_value"] = $1.gsub('""', '"')
          end

389 390
          sql_type = field['type']
          cast_type = lookup_cast_type(sql_type)
391
          new_column(field['name'], field['dflt_value'], cast_type, sql_type, field['notnull'].to_i == 0)
392 393 394 395 396
        end
      end

      # Returns an array of indexes for the given table.
      def indexes(table_name, name = nil) #:nodoc:
K
kennyj 已提交
397
        exec_query("PRAGMA index_list(#{quote_table_name(table_name)})", 'SCHEMA').map do |row|
398 399 400 401 402 403 404 405 406 407 408 409
          sql = <<-SQL
            SELECT sql
            FROM sqlite_master
            WHERE name=#{quote(row['name'])} AND type='index'
            UNION ALL
            SELECT sql
            FROM sqlite_temp_master
            WHERE name=#{quote(row['name'])} AND type='index'
          SQL
          index_sql = exec_query(sql).first['sql']
          match = /\sWHERE\s+(.+)$/i.match(index_sql)
          where = match[1] if match
410 411 412 413
          IndexDefinition.new(
            table_name,
            row['name'],
            row['unique'] != 0,
414
            exec_query("PRAGMA index_info('#{row['name']}')", "SCHEMA").map { |col|
415
              col['name']
416
            }, nil, nil, where)
417 418 419 420
        end
      end

      def primary_key(table_name) #:nodoc:
421 422 423
        pks = table_structure(table_name).select { |f| f['pk'] > 0 }
        return nil unless pks.count == 1
        pks[0]['name']
424 425 426 427 428 429 430 431 432 433
      end

      def remove_index!(table_name, index_name) #:nodoc:
        exec_query "DROP INDEX #{quote_column_name(index_name)}"
      end

      # Renames a table.
      #
      # Example:
      #   rename_table('octopuses', 'octopi')
434 435 436
      def rename_table(table_name, new_name)
        exec_query "ALTER TABLE #{quote_table_name(table_name)} RENAME TO #{quote_table_name(new_name)}"
        rename_table_indexes(table_name, new_name)
437 438 439 440
      end

      # See: http://www.sqlite.org/lang_altertable.html
      # SQLite has an additional restriction on the ALTER TABLE statement
441
      def valid_alter_table_type?(type)
442 443 444 445
        type.to_sym != :primary_key
      end

      def add_column(table_name, column_name, type, options = {}) #:nodoc:
446
        if valid_alter_table_type?(type)
447 448 449 450 451 452 453 454
          super(table_name, column_name, type, options)
        else
          alter_table(table_name) do |definition|
            definition.column(column_name, type, options)
          end
        end
      end

455 456
      def remove_column(table_name, column_name, type = nil, options = {}) #:nodoc:
        alter_table(table_name) do |definition|
457
          definition.remove_column column_name
458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490
        end
      end

      def change_column_default(table_name, column_name, default) #:nodoc:
        alter_table(table_name) do |definition|
          definition[column_name].default = default
        end
      end

      def change_column_null(table_name, column_name, null, default = nil)
        unless null || default.nil?
          exec_query("UPDATE #{quote_table_name(table_name)} SET #{quote_column_name(column_name)}=#{quote(default)} WHERE #{quote_column_name(column_name)} IS NULL")
        end
        alter_table(table_name) do |definition|
          definition[column_name].null = null
        end
      end

      def change_column(table_name, column_name, type, options = {}) #:nodoc:
        alter_table(table_name) do |definition|
          include_default = options_include_default?(options)
          definition[column_name].instance_eval do
            self.type    = type
            self.limit   = options[:limit] if options.include?(:limit)
            self.default = options[:default] if include_default
            self.null    = options[:null] if options.include?(:null)
            self.precision = options[:precision] if options.include?(:precision)
            self.scale   = options[:scale] if options.include?(:scale)
          end
        end
      end

      def rename_column(table_name, column_name, new_column_name) #:nodoc:
491 492 493
        column = column_for(table_name, column_name)
        alter_table(table_name, rename: {column.name => new_column_name.to_s})
        rename_column_indexes(table_name, column.name, new_column_name)
494 495 496
      end

      protected
497 498 499 500

        def initialize_type_map(m)
          super
          m.register_type(/binary/i, SQLite3Binary.new)
501
          register_class_with_limit m, %r(char)i, SQLite3String
502 503
        end

504 505 506 507 508 509 510
        def table_structure(table_name)
          structure = exec_query("PRAGMA table_info(#{quote_table_name(table_name)})", 'SCHEMA').to_hash
          raise(ActiveRecord::StatementInvalid, "Could not find table '#{table_name}'") if structure.empty?
          structure
        end

        def alter_table(table_name, options = {}) #:nodoc:
511
          altered_table_name = "a#{table_name}"
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526
          caller = lambda {|definition| yield definition if block_given?}

          transaction do
            move_table(table_name, altered_table_name,
              options.merge(:temporary => true))
            move_table(altered_table_name, table_name, &caller)
          end
        end

        def move_table(from, to, options = {}, &block) #:nodoc:
          copy_table(from, to, options, &block)
          drop_table(from)
        end

        def copy_table(from, to, options = {}) #:nodoc:
527
          from_primary_key = primary_key(from)
528
          options[:id] = false
529 530
          create_table(to, options) do |definition|
            @definition = definition
531
            @definition.primary_key(from_primary_key) if from_primary_key.present?
532 533 534 535 536
            columns(from).each do |column|
              column_name = options[:rename] ?
                (options[:rename][column.name] ||
                 options[:rename][column.name.to_sym] ||
                 column.name) : column.name
537
              next if column_name == from_primary_key
538 539 540 541 542 543 544 545 546 547

              @definition.column(column_name, column.type,
                :limit => column.limit, :default => column.default,
                :precision => column.precision, :scale => column.scale,
                :null => column.null)
            end
            yield @definition if block_given?
          end
          copy_table_indexes(from, to, options[:rename] || {})
          copy_table_contents(from, to,
548
            @definition.columns.map(&:name),
549 550 551 552 553 554
            options[:rename] || {})
        end

        def copy_table_indexes(from, to, rename = {}) #:nodoc:
          indexes(from).each do |index|
            name = index.name
555 556 557 558
            if to == "a#{from}"
              name = "t#{name}"
            elsif from == "a#{to}"
              name = name[1..-1]
559 560
            end

561
            to_column_names = columns(to).map(&:name)
562 563 564 565 566 567
            columns = index.columns.map {|c| rename[c] || c }.select do |column|
              to_column_names.include?(column)
            end

            unless columns.empty?
              # index name can't be the same
568
              opts = { name: name.gsub(/(^|_)(#{from})_/, "\\1#{to}_"), internal: true }
569 570 571 572 573 574 575 576 577
              opts[:unique] = true if index.unique
              add_index(to, columns, opts)
            end
          end
        end

        def copy_table_contents(from, to, columns, rename = {}) #:nodoc:
          column_mappings = Hash[columns.map {|name| [name, name]}]
          rename.each { |a| column_mappings[a.last] = a.first }
578
          from_columns = columns(from).collect(&:name)
579
          columns = columns.find_all{|col| from_columns.include?(column_mappings[col])}
580
          from_columns_to_copy = columns.map { |col| column_mappings[col] }
581
          quoted_columns = columns.map { |col| quote_column_name(col) } * ','
582
          quoted_from_columns = from_columns_to_copy.map { |col| quote_column_name(col) } * ','
583

584 585
          exec_query("INSERT INTO #{quote_table_name(to)} (#{quoted_columns})
                     SELECT #{quoted_from_columns} FROM #{quote_table_name(from)}")
586 587 588 589 590 591 592 593
        end

        def sqlite_version
          @sqlite_version ||= SQLite3Adapter::Version.new(select_value('select sqlite_version(*)'))
        end

        def translate_exception(exception, message)
          case exception.message
594 595 596 597 598
          # SQLite 3.8.2 returns a newly formatted error message:
          #   UNIQUE constraint failed: *table_name*.*column_name*
          # Older versions of SQLite return:
          #   column *column_name* is not unique
          when /column(s)? .* (is|are) not unique/, /UNIQUE constraint failed: .*/
599 600 601 602 603
            RecordNotUnique.new(message, exception)
          else
            super
          end
        end
604 605 606
    end
  end
end