Sha256: cefb6829da15b9338768483dcfe7d5feb6b7032d4e80b86cce084179aa0d002f

Contents?: true

Size: 1.55 KB

Versions: 9

Compression:

Stored size: 1.55 KB

Contents

# frozen_string_literal: true

class ThinkingSphinx::Connection::Client
  def initialize(options)
    if options[:socket].present?
      options[:socket] = options[:socket].remove /:mysql41$/

      options.delete :host
      options.delete :port
    else
      options.delete :socket

      # If you use localhost, MySQL insists on a socket connection, but in this
      # situation we want a TCP connection. Using 127.0.0.1 fixes that.
      if options[:host].nil? || options[:host] == "localhost"
        options[:host] = "127.0.0.1"
      end
    end

    @options = options
  end

  def close
    close! unless ThinkingSphinx::Connection.persistent?
  end

  def close!
    client.close
  end

  def execute(statement)
    check_and_perform(statement).first
  end

  def query_all(*statements)
    check_and_perform statements.join('; ')
  end

  private

  def check(statements)
    if statements.length > ThinkingSphinx::MAXIMUM_STATEMENT_LENGTH
      exception           = ThinkingSphinx::QueryLengthError.new
      exception.statement = statements
      raise exception
    end
  end

  def check_and_perform(statements)
    check statements
    perform statements
  end

  def close_and_clear
    client.close
    @client = nil
  end

  def perform(statements)
    results_for statements
  rescue => error
    message           = "#{error.message} - #{statements}"
    wrapper           = ThinkingSphinx::QueryExecutionError.new message
    wrapper.statement = statements
    raise wrapper
  ensure
    close_and_clear unless ThinkingSphinx::Connection.persistent?
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
thinking-sphinx-5.0.0 lib/thinking_sphinx/connection/client.rb
thinking-sphinx-4.4.1 lib/thinking_sphinx/connection/client.rb
thinking-sphinx-4.4.0 lib/thinking_sphinx/connection/client.rb
thinking-sphinx-4.3.2 lib/thinking_sphinx/connection/client.rb
thinking-sphinx-4.3.1 lib/thinking_sphinx/connection/client.rb
thinking-sphinx-4.3.0 lib/thinking_sphinx/connection/client.rb
thinking-sphinx-4.2.0 lib/thinking_sphinx/connection/client.rb
thinking-sphinx-4.1.0 lib/thinking_sphinx/connection/client.rb
thinking-sphinx-4.0.0 lib/thinking_sphinx/connection/client.rb