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

4 5 6
module ActiveRecord
  # This class is used to dump the database schema for some connection to some
  # output format (i.e., ActiveRecord::Schema).
7
  class SchemaDumper #:nodoc:
8
    private_class_method :new
9
    
P
Pratik Naik 已提交
10 11
    ##
    # :singleton-method:
12 13 14 15 16
    # A list of tables which should not be dumped to the schema. 
    # Acceptable values are strings as well as regexp.
    # This setting is only used if ActiveRecord::Base.schema_format == :ruby
    cattr_accessor :ignore_tables 
    @@ignore_tables = []
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34

    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
35
        @version = Migrator::current_version rescue nil
36 37 38
      end

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

        stream.puts <<HEADER
42
# This file is auto-generated from the current state of the database. Instead of editing this file, 
P
Pratik Naik 已提交
43
# please use the migrations feature of Active Record to incrementally modify your database, and
44
# then regenerate this schema definition.
45 46 47 48 49 50 51
#
# Note that this schema.rb definition is the authoritative source for your 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
# 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.
52 53

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

55 56 57 58 59 60 61 62 63
HEADER
      end

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

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

      def table(table, stream)
        columns = @connection.columns(table)
78 79
        begin
          tbl = StringIO.new
80

81
          # first dump primary key column
82 83
          if @connection.respond_to?(:pk_and_sequence_for)
            pk, pk_seq = @connection.pk_and_sequence_for(table)
84 85
          elsif @connection.respond_to?(:primary_key)
            pk = @connection.primary_key(table)
86
          end
87
          
88
          tbl.print "  create_table #{table.inspect}"
89 90 91 92 93 94 95
          if columns.detect { |c| c.name == pk }
            if pk != 'id'
              tbl.print %Q(, :primary_key => "#{pk}")
            end
          else
            tbl.print ", :id => false"
          end
96 97 98
          tbl.print ", :force => true"
          tbl.puts " do |t|"

99
          # then dump all non-primary key columns
100
          column_specs = columns.map do |column|
101
            raise StandardError, "Unknown type '#{column.sql_type}' for column '#{column.name}'" if @types[column.type].nil?
102
            next if column.name == pk
103
            spec = {}
104
            spec[:name]      = column.name.inspect
105 106 107 108 109 110 111 112 113
            
            # 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'
114
            spec[:precision] = column.precision.inspect if !column.precision.nil?
115 116
            spec[:scale]     = column.scale.inspect if !column.scale.nil?
            spec[:null]      = 'false' if !column.null
117
            spec[:default]   = default_string(column.default) if column.has_default?
118 119 120
            (spec.keys - [:name, :type]).each{ |k| spec[k].insert(0, "#{k.inspect} => ")}
            spec
          end.compact
121 122 123 124 125

          # find all migration keys used in this table
          keys = [:name, :limit, :precision, :scale, :default, :null] & column_specs.map(&:keys).flatten

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

          # 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 *= ''

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

          tbl.puts "  end"
          tbl.puts
          
          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}"
156 157
          stream.puts
        end
158 159
        
        stream
160 161
      end

162 163 164 165 166 167 168 169 170 171 172
      def default_string(value)
        case value
        when BigDecimal
          value.to_s
        when Date, DateTime, Time
          "'" + value.to_s(:db) + "'"
        else
          value.inspect
        end
      end
      
173
      def indexes(table, stream)
174 175 176 177 178 179
        if (indexes = @connection.indexes(table)).any?
          add_index_statements = indexes.map do |index|
            statment_parts = [ ('add_index ' + index.table.inspect) ]
            statment_parts << index.columns.inspect
            statment_parts << (':name => ' + index.name.inspect)
            statment_parts << ':unique => true' if index.unique
180 181 182

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

            '  ' + statment_parts.join(', ')
          end

          stream.puts add_index_statements.sort.join("\n")
188 189 190 191
          stream.puts
        end
      end
  end
J
Jeremy Kemper 已提交
192
end