sql_adapter.rb 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. module Blazer
  2. module Adapters
  3. class SqlAdapter < BaseAdapter
  4. attr_reader :connection_model
  5. def initialize(data_source)
  6. super
  7. @connection_model =
  8. Class.new(Blazer::Connection) do
  9. def self.name
  10. "Blazer::Connection::#{object_id}"
  11. end
  12. establish_connection(data_source.settings["url"]) if data_source.settings["url"]
  13. end
  14. end
  15. def run_statement(statement, comment)
  16. columns = []
  17. rows = []
  18. error = nil
  19. begin
  20. in_transaction do
  21. set_timeout(data_source.timeout) if data_source.timeout
  22. result = connection_model.connection.select_all("#{statement} /*#{comment}*/")
  23. columns = result.columns
  24. cast_method = Rails::VERSION::MAJOR < 5 ? :type_cast : :cast_value
  25. result.rows.each do |untyped_row|
  26. rows << (result.column_types.empty? ? untyped_row : columns.each_with_index.map { |c, i| untyped_row[i] ? result.column_types[c].send(cast_method, untyped_row[i]) : nil })
  27. end
  28. end
  29. rescue => e
  30. error = e.message.sub(/.+ERROR: /, "")
  31. error = Blazer::TIMEOUT_MESSAGE if Blazer::TIMEOUT_ERRORS.any? { |e| error.include?(e) }
  32. reconnect if defined?(PG::ConnectionBad) && e.is_a?(PG::ConnectionBad)
  33. end
  34. [columns, rows, error]
  35. end
  36. def tables
  37. result = data_source.run_statement(connection_model.send(:sanitize_sql_array, ["SELECT table_name FROM information_schema.tables WHERE table_schema IN (?) ORDER BY table_name", schemas]))
  38. result.rows.map(&:first)
  39. end
  40. def schema
  41. result = data_source.run_statement(connection_model.send(:sanitize_sql_array, ["SELECT table_schema, table_name, column_name, data_type, ordinal_position FROM information_schema.columns WHERE table_schema IN (?) ORDER BY 1, 2", schemas]))
  42. result.rows.group_by { |r| [r[0], r[1]] }.map { |k, vs| {schema: k[0], table: k[1], columns: vs.sort_by { |v| v[4].to_i }.map { |v| {name: v[2], data_type: v[3]} }} }
  43. end
  44. def preview_statement
  45. "SELECT * FROM {table} LIMIT 10"
  46. end
  47. def reconnect
  48. connection_model.establish_connection(settings["url"])
  49. end
  50. def cost(statement)
  51. result = explain(statement)
  52. match = /cost=\d+\.\d+..(\d+\.\d+) /.match(result)
  53. match[1] if match
  54. end
  55. def explain(statement)
  56. if postgresql? || redshift?
  57. connection_model.connection.select_all("EXPLAIN #{statement}").rows.first.first
  58. end
  59. rescue
  60. nil
  61. end
  62. def cancel(run_id)
  63. if postgresql?
  64. execute("SELECT pg_cancel_backend(pid) FROM pg_stat_activity WHERE pid <> pg_backend_pid() AND query LIKE '%,run_id:#{run_id}%'")
  65. elsif redshift?
  66. first_row = connection_model.connection.select_all("SELECT pid FROM stv_recents WHERE status = 'Running' AND query LIKE '%,run_id:#{run_id}%'").first
  67. if first_row
  68. execute("CANCEL #{first_row["pid"].to_i}")
  69. end
  70. end
  71. end
  72. protected
  73. def execute(statement)
  74. connection_model.connection.execute(statement)
  75. end
  76. def postgresql?
  77. ["PostgreSQL", "PostGIS"].include?(adapter_name)
  78. end
  79. def redshift?
  80. ["Redshift"].include?(adapter_name)
  81. end
  82. def mysql?
  83. ["MySQL", "Mysql2", "Mysql2Spatial"].include?(adapter_name)
  84. end
  85. def adapter_name
  86. connection_model.connection.adapter_name
  87. end
  88. def schemas
  89. default_schema = (postgresql? || redshift?) ? "public" : connection_model.connection_config[:database]
  90. settings["schemas"] || [connection_model.connection_config[:schema] || default_schema]
  91. end
  92. def set_timeout(timeout)
  93. if postgresql? || redshift?
  94. connection_model.connection.execute("SET statement_timeout = #{timeout.to_i * 1000}")
  95. elsif mysql?
  96. connection_model.connection.execute("SET max_execution_time = #{timeout.to_i * 1000}")
  97. else
  98. raise Blazer::TimeoutNotSupported, "Timeout not supported for #{adapter_name} adapter"
  99. end
  100. end
  101. def use_transaction?
  102. settings.key?("use_transaction") ? settings["use_transaction"] : true
  103. end
  104. def in_transaction
  105. connection_model.connection_pool.with_connection do
  106. if use_transaction?
  107. connection_model.transaction do
  108. yield
  109. raise ActiveRecord::Rollback
  110. end
  111. else
  112. yield
  113. end
  114. end
  115. end
  116. end
  117. end
  118. end