Sha256: 4fcec4cba60a202b52486e76cd35f848f0d9ba0fd88684dfa7fc4fc7ba32fe69

Contents?: true

Size: 1.51 KB

Versions: 4

Compression:

Stored size: 1.51 KB

Contents

module ThinkingSphinx
  class AbstractAdapter
    def initialize(model)
      @model = model
    end
    
    def setup
      # Deliberately blank - subclasses should do something though. Well, if
      # they need to.
    end
      
    def self.detect(model)
      case model.connection.class.name
      when "ActiveRecord::ConnectionAdapters::MysqlAdapter",
           "ActiveRecord::ConnectionAdapters::MysqlplusAdapter",
           "ActiveRecord::ConnectionAdapters::Mysql2Adapter",
           "ActiveRecord::ConnectionAdapters::NullDBAdapter"
        ThinkingSphinx::MysqlAdapter.new model
      when "ActiveRecord::ConnectionAdapters::PostgreSQLAdapter"
        ThinkingSphinx::PostgreSQLAdapter.new model
      when "ActiveRecord::ConnectionAdapters::JdbcAdapter"
        if model.connection.config[:adapter] == "jdbcmysql"
          ThinkingSphinx::MysqlAdapter.new model
        elsif model.connection.config[:adapter] == "jdbcpostgresql"
          ThinkingSphinx::PostgreSQLAdapter.new model
        else
          raise "Invalid Database Adapter: Sphinx only supports MySQL and PostgreSQL"
        end
      else
        raise "Invalid Database Adapter: Sphinx only supports MySQL and PostgreSQL, not #{model.connection.class.name}"
      end
    end
    
    def quote_with_table(column)
      "#{@model.quoted_table_name}.#{@model.connection.quote_column_name(column)}"
    end
    
    def bigint_pattern
      /bigint/i
    end
    
    protected
    
    def connection
      @connection ||= @model.connection
    end
  end
end

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
thorsson_thinking-sphinx-2.0 lib/thinking_sphinx/adapters/abstract_adapter.rb
thinking-sphinx-1.3.20 lib/thinking_sphinx/adapters/abstract_adapter.rb
thinking-sphinx-2.0.0.rc2 lib/thinking_sphinx/adapters/abstract_adapter.rb
thinking-sphinx-1.3.19 lib/thinking_sphinx/adapters/abstract_adapter.rb