aboutsummaryrefslogtreecommitdiffstats
path: root/lib/arel/engines/sql/engine.rb
blob: a314a972c016d3370a3139540ba0bace5e428f7c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
module Arel
  module Sql
    class Engine

      def initialize(ar = nil)
        @ar = ar
      end

      def connection
        @ar ? @ar.connection : nil
      end

      def adapter_name
        @adapter_name ||= case (name = connection.adapter_name)
        # map OracleEnanced adapter to Oracle
        when /Oracle/
          'Oracle'
        else
          name
        end
      end

      def method_missing(method, *args)
        if block_given?
          connection.send(method, *args)  { |*block_args| yield(*block_args) }
        else
          connection.send(method, *args)
        end
      end

      module CRUD
        def create(relation)
          primary_key_value = if relation.primary_key.blank?
            nil
          elsif relation.record.is_a?(Hash)
            attribute = relation.record.detect { |attr, _| attr.name.to_s == relation.primary_key.to_s }
            attribute && attribute.last.value
          end

          connection.insert(relation.to_sql(false), nil, relation.primary_key, primary_key_value)
        end

        def read(relation)
          rows = connection.select_rows(relation.to_sql)
          Array.new(rows, relation.attributes)
        end

        def update(relation)
          connection.update(relation.to_sql)
        end

        def delete(relation)
          connection.delete(relation.to_sql)
        end
      end
      include CRUD
    end
  end
end