sql_adapter.rb 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  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::Adapter#{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 = 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 error.include?("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]), refresh_cache: true)
  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[2] }.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. select_all("EXPLAIN #{statement}").rows.first.first
  58. end
  59. rescue
  60. nil
  61. end
  62. def cancel(run_id)
  63. if postgresql?
  64. select_all("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 = select_all("SELECT pid FROM stv_recents WHERE status = 'Running' AND query LIKE '%,run_id:#{run_id}%'").first
  67. if first_row
  68. select_all("CANCEL #{first_row["pid"].to_i}")
  69. end
  70. end
  71. end
  72. def cachable?(statement)
  73. !%w[CREATE ALTER UPDATE INSERT DELETE].include?(statement.split.first.to_s.upcase)
  74. end
  75. protected
  76. def select_all(statement)
  77. connection_model.connection.select_all(statement)
  78. end
  79. def postgresql?
  80. ["PostgreSQL", "PostGIS"].include?(adapter_name)
  81. end
  82. def redshift?
  83. ["Redshift"].include?(adapter_name)
  84. end
  85. def mysql?
  86. ["MySQL", "Mysql2", "Mysql2Spatial"].include?(adapter_name)
  87. end
  88. def adapter_name
  89. connection_model.connection.adapter_name
  90. end
  91. def schemas
  92. default_schema = (postgresql? || redshift?) ? "public" : connection_model.connection_config[:database]
  93. settings["schemas"] || [connection_model.connection_config[:schema] || default_schema]
  94. end
  95. def set_timeout(timeout)
  96. if postgresql? || redshift?
  97. select_all("SET #{use_transaction? ? "LOCAL " : ""}statement_timeout = #{timeout.to_i * 1000}")
  98. elsif mysql?
  99. select_all("SET max_execution_time = #{timeout.to_i * 1000}")
  100. else
  101. raise Blazer::TimeoutNotSupported, "Timeout not supported for #{adapter_name} adapter"
  102. end
  103. end
  104. def use_transaction?
  105. settings.key?("use_transaction") ? settings["use_transaction"] : true
  106. end
  107. def in_transaction
  108. connection_model.connection_pool.with_connection do
  109. if use_transaction?
  110. connection_model.transaction do
  111. yield
  112. raise ActiveRecord::Rollback
  113. end
  114. else
  115. yield
  116. end
  117. end
  118. end
  119. end
  120. end
  121. end