to_sql.rb 3.5 KB
Newer Older
A
Aaron Patterson 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
module Arel
  module Visitors
    class ToSql
      def initialize engine
        @engine     = engine
        @connection = nil
      end

      def accept object
        @connection = @engine.connection
        visit object
      end

      private
A
Aaron Patterson 已提交
15 16 17 18 19 20 21
      def visit_Arel_Nodes_DeleteStatement o
        [
          "DELETE FROM #{visit o.relation}",
          ("WHERE #{o.wheres.map { |x| visit x }.join ' AND '}" unless o.wheres.empty?)
        ].compact.join ' '
      end

A
Aaron Patterson 已提交
22 23 24
      def visit_Arel_Nodes_UpdateStatement o
        [
          "UPDATE #{visit o.relation}",
A
Aaron Patterson 已提交
25
          ("SET #{o.values.map { |value| visit value }.join ', '}" unless o.values.empty?),
A
Aaron Patterson 已提交
26 27 28 29
          ("WHERE #{o.wheres.map { |x| visit x }.join ' AND '}" unless o.wheres.empty?)
        ].compact.join ' '
      end

30
      def visit_Arel_Nodes_InsertStatement o
31 32
        [
          "INSERT INTO #{visit o.relation}",
33 34 35 36 37 38 39 40 41

          ("(#{o.columns.map { |x|
                quote_column_name x.name
            }.join ', '})" unless o.columns.empty?),

          ("VALUES (#{o.values.map { |value|
            value ? quote(visit(value)) : 'NULL'
          }.join ', '})" unless o.values.empty?),

42
        ].compact.join ' '
43 44
      end

A
Aaron Patterson 已提交
45 46 47 48 49 50 51 52
      def visit_Arel_Nodes_SelectStatement o
        [
          o.cores.map { |x| visit x }.join,
          ("LIMIT #{o.limit}" if o.limit)
        ].compact.join ' '
      end

      def visit_Arel_Nodes_SelectCore o
A
Aaron Patterson 已提交
53 54
        [
          "SELECT #{o.projections.map { |x| visit x }.join ', '}",
A
Aaron Patterson 已提交
55 56
          ("FROM #{o.froms.map { |x| visit x }.join ', ' }" unless o.froms.empty?),
          ("WHERE #{o.wheres.map { |x| visit x }.join ' AND ' }" unless o.wheres.empty?)
A
Aaron Patterson 已提交
57 58 59 60 61 62 63
        ].compact.join ' '
      end

      def visit_Arel_Table o
        quote_table_name o.name
      end

64 65 66 67
      def visit_Arel_Nodes_In o
        "#{visit o.left} IN (#{o.right.map { |x| quote visit x }.join ', '})"
      end

A
Aaron Patterson 已提交
68 69 70 71
      def visit_Arel_Nodes_Or o
        "#{visit o.left} OR #{visit o.right}"
      end

A
Aaron Patterson 已提交
72
      def visit_Arel_Nodes_Equality o
A
Aaron Patterson 已提交
73 74 75 76 77 78 79
        right = o.right
        right = right ? quote(visit(right)) : 'NULL'
        "#{visit o.left} = #{right}"
      end

      def visit_Arel_Nodes_UnqualifiedColumn o
        "#{quote_column_name o.name}"
A
Aaron Patterson 已提交
80 81
      end

82
      def visit_Arel_Attributes_Attribute o
A
Aaron Patterson 已提交
83 84
        "#{quote_table_name o.relation.name}.#{quote_column_name o.name}"
      end
85 86 87
      alias :visit_Arel_Attributes_Integer :visit_Arel_Attributes_Attribute
      alias :visit_Arel_Attributes_String :visit_Arel_Attributes_Attribute
      alias :visit_Arel_Attributes_Time :visit_Arel_Attributes_Attribute
A
Aaron Patterson 已提交
88 89

      def visit_Fixnum o; o end
90
      alias :visit_Time :visit_Fixnum
A
Aaron Patterson 已提交
91
      alias :visit_String :visit_Fixnum
92
      alias :visit_TrueClass :visit_Fixnum
A
Aaron Patterson 已提交
93 94
      alias :visit_Arel_Nodes_SqlLiteral :visit_Fixnum
      alias :visit_Arel_SqlLiteral :visit_Fixnum # This is deprecated
A
Aaron Patterson 已提交
95

A
Aaron Patterson 已提交
96
      DISPATCH = {}
A
Aaron Patterson 已提交
97
      def visit object
A
Aaron Patterson 已提交
98 99
        send "visit_#{object.class.name.gsub('::', '_')}", object
        #send DISPATCH[object.class], object
A
Aaron Patterson 已提交
100 101 102 103 104 105 106
      end

      private_instance_methods(false).each do |method|
        method = method.to_s
        next unless method =~ /^visit_(.*)$/
        const = $1.split('_').inject(Object) { |m,s| m.const_get s }
        DISPATCH[const] = method
A
Aaron Patterson 已提交
107 108
      end

109 110 111 112
      def quote value, column = nil
        @connection.quote value, column
      end

A
Aaron Patterson 已提交
113 114 115 116 117 118 119 120 121 122
      def quote_table_name name
        @connection.quote_table_name name
      end

      def quote_column_name name
        @connection.quote_column_name name
      end
    end
  end
end