schema_dumper.rb 6.9 KB
Newer Older
1
require 'stringio'
J
Jeremy Kemper 已提交
2
require 'active_support/core_ext/big_decimal'
3

4
module ActiveRecord
R
Rizwan Reza 已提交
5 6
  # = Active Record Schema Dumper
  #
7 8
  # This class is used to dump the database schema for some connection to some
  # output format (i.e., ActiveRecord::Schema).
9
  class SchemaDumper #:nodoc:
10
    private_class_method :new
A
Aaron Patterson 已提交
11

P
Pratik Naik 已提交
12 13
    ##
    # :singleton-method:
A
Aaron Patterson 已提交
14
    # A list of tables which should not be dumped to the schema.
15 16
    # Acceptable values are strings as well as regexp.
    # This setting is only used if ActiveRecord::Base.schema_format == :ruby
A
Aaron Patterson 已提交
17
    cattr_accessor :ignore_tables
18
    @@ignore_tables = []
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36

    def self.dump(connection=ActiveRecord::Base.connection, stream=STDOUT)
      new(connection).dump(stream)
      stream
    end

    def dump(stream)
      header(stream)
      tables(stream)
      trailer(stream)
      stream
    end

    private

      def initialize(connection)
        @connection = connection
        @types = @connection.native_database_types
37
        @version = Migrator::current_version rescue nil
38 39 40
      end

      def header(stream)
41
        define_params = @version ? ":version => #{@version}" : ""
42 43

        stream.puts <<HEADER
44
# This file is auto-generated from the current state of the database. Instead
R
Rizwan Reza 已提交
45 46
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
47
#
48
# Note that this schema.rb definition is the authoritative source for your
R
Rizwan Reza 已提交
49 50 51
# database schema. If you need to create the application database on another
# system, you should be using db:schema:load, not running all the migrations
# from scratch. The latter is a flawed and unsustainable approach (the more migrations
52 53 54
# you'll amass, the slower it'll run and the greater likelihood for issues).
#
# It's strongly recommended to check this file into your version control system.
55 56

ActiveRecord::Schema.define(#{define_params}) do
57

58 59 60 61 62 63 64 65 66
HEADER
      end

      def trailer(stream)
        stream.puts "end"
      end

      def tables(stream)
        @connection.tables.sort.each do |tbl|
67
          next if ['schema_migrations', ignore_tables].flatten.any? do |ignored|
68
            case ignored
69 70
            when String; tbl == ignored
            when Regexp; tbl =~ ignored
71
            else
72
              raise StandardError, 'ActiveRecord::SchemaDumper.ignore_tables accepts an array of String and / or Regexp values.'
73
            end
A
Aaron Patterson 已提交
74
          end
75 76 77 78 79 80
          table(tbl, stream)
        end
      end

      def table(table, stream)
        columns = @connection.columns(table)
81 82
        begin
          tbl = StringIO.new
83

84
          # first dump primary key column
85 86
          if @connection.respond_to?(:pk_and_sequence_for)
            pk, pk_seq = @connection.pk_and_sequence_for(table)
87 88
          elsif @connection.respond_to?(:primary_key)
            pk = @connection.primary_key(table)
89
          end
A
Aaron Patterson 已提交
90

91
          tbl.print "  create_table #{table.inspect}"
92 93 94 95 96 97 98
          if columns.detect { |c| c.name == pk }
            if pk != 'id'
              tbl.print %Q(, :primary_key => "#{pk}")
            end
          else
            tbl.print ", :id => false"
          end
99 100 101
          tbl.print ", :force => true"
          tbl.puts " do |t|"

102
          # then dump all non-primary key columns
103
          column_specs = columns.map do |column|
104
            raise StandardError, "Unknown type '#{column.sql_type}' for column '#{column.name}'" if @types[column.type].nil?
105
            next if column.name == pk
106
            spec = {}
107
            spec[:name]      = column.name.inspect
A
Aaron Patterson 已提交
108

109 110 111 112 113 114 115 116
            # AR has an optimisation which handles zero-scale decimals as integers.  This
            # code ensures that the dumper still dumps the column as a decimal.
            spec[:type]      = if column.type == :integer && [/^numeric/, /^decimal/].any? { |e| e.match(column.sql_type) }
                                 'decimal'
                               else
                                 column.type.to_s
                               end
            spec[:limit]     = column.limit.inspect if column.limit != @types[column.type][:limit] && spec[:type] != 'decimal'
117
            spec[:precision] = column.precision.inspect if !column.precision.nil?
118 119
            spec[:scale]     = column.scale.inspect if !column.scale.nil?
            spec[:null]      = 'false' if !column.null
120
            spec[:default]   = default_string(column.default) if column.has_default?
121 122 123
            (spec.keys - [:name, :type]).each{ |k| spec[k].insert(0, "#{k.inspect} => ")}
            spec
          end.compact
124 125

          # find all migration keys used in this table
126
          keys = [:name, :limit, :precision, :scale, :default, :null] & column_specs.map{ |k| k.keys }.flatten
127 128

          # figure out the lengths for each column based on above keys
129
          lengths = keys.map{ |key| column_specs.map{ |spec| spec[key] ? spec[key].length + 2 : 0 }.max }
130 131 132 133 134 135 136 137 138 139 140 141

          # the string we're going to sprintf our values against, with standardized column widths
          format_string = lengths.map{ |len| "%-#{len}s" }

          # find the max length for the 'type' column, which is special
          type_length = column_specs.map{ |column| column[:type].length }.max

          # add column type definition to our format string
          format_string.unshift "    t.%-#{type_length}s "

          format_string *= ''

142 143
          column_specs.each do |colspec|
            values = keys.zip(lengths).map{ |key, len| colspec.key?(key) ? colspec[key] + ", " : " " * len }
144
            values.unshift colspec[:type]
145
            tbl.print((format_string % values).gsub(/,\s*$/, ''))
146 147 148 149 150
            tbl.puts
          end

          tbl.puts "  end"
          tbl.puts
A
Aaron Patterson 已提交
151

152 153 154 155 156 157 158
          indexes(table, tbl)

          tbl.rewind
          stream.print tbl.read
        rescue => e
          stream.puts "# Could not dump table #{table.inspect} because of following #{e.class}"
          stream.puts "#   #{e.message}"
159 160
          stream.puts
        end
A
Aaron Patterson 已提交
161

162
        stream
163 164
      end

165 166 167 168 169 170 171 172 173 174
      def default_string(value)
        case value
        when BigDecimal
          value.to_s
        when Date, DateTime, Time
          "'" + value.to_s(:db) + "'"
        else
          value.inspect
        end
      end
A
Aaron Patterson 已提交
175

176
      def indexes(table, stream)
177 178
        if (indexes = @connection.indexes(table)).any?
          add_index_statements = indexes.map do |index|
A
Aaron Patterson 已提交
179 180 181 182 183
            statement_parts = [
              ('add_index ' + index.table.inspect),
              index.columns.inspect,
              (':name => ' + index.name.inspect),
            ]
184
            statement_parts << ':unique => true' if index.unique
185 186

            index_lengths = index.lengths.compact if index.lengths.is_a?(Array)
187
            statement_parts << (':length => ' + Hash[*index.columns.zip(index.lengths).flatten].inspect) if index_lengths.present?
188

189
            '  ' + statement_parts.join(', ')
190 191 192
          end

          stream.puts add_index_statements.sort.join("\n")
193 194 195 196
          stream.puts
        end
      end
  end
J
Jeremy Kemper 已提交
197
end