Sha256: 727eef5139fd68fe7baa8fcfc2ca828aa142431e1ce6d52dbed7c2fb66e7132a

Contents?: true

Size: 1.33 KB

Versions: 17

Compression:

Stored size: 1.33 KB

Contents

# frozen_string_literal: true

class ThinkingSphinx::Index
  attr_reader :reference, :options, :block

  def self.define(reference, options = {}, &block)
    new(reference, options, &block).indices.each do |index|
      ThinkingSphinx::Configuration.instance.indices << index
    end
  end

  def initialize(reference, options, &block)
    defaults = ThinkingSphinx::Configuration.instance.
      settings['index_options'] || {}
    defaults.symbolize_keys!

    @reference, @options, @block = reference, defaults.merge(options), block
  end

  def indices
    options[:delta] ? delta_indices : [single_index]
  end

  private

  def index_class
    case options[:with]
    when :active_record
      ThinkingSphinx::ActiveRecord::Index
    when :real_time
      ThinkingSphinx::RealTime::Index
    else
      raise "Unknown index type: #{options[:with]}"
    end
  end

  def single_index
    index_class.new(reference, options).tap do |index|
      index.definition_block = block
    end
  end

  def delta_indices
    [false, true].collect do |delta|
      index_class.new(
        reference,
        options.merge(:delta? => delta, :delta_processor => processor)
      ).tap do |index|
        index.definition_block = block
      end
    end
  end

  def processor
    @processor ||= ThinkingSphinx::Deltas.processor_for options.delete(:delta)
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
thinking-sphinx-5.6.0 lib/thinking_sphinx/index.rb
thinking-sphinx-5.5.1 lib/thinking_sphinx/index.rb
thinking-sphinx-5.5.0 lib/thinking_sphinx/index.rb
thinking-sphinx-5.4.0 lib/thinking_sphinx/index.rb
thinking-sphinx-5.3.0 lib/thinking_sphinx/index.rb
thinking-sphinx-5.2.1 lib/thinking_sphinx/index.rb
thinking-sphinx-5.2.0 lib/thinking_sphinx/index.rb
thinking-sphinx-5.1.0 lib/thinking_sphinx/index.rb
thinking-sphinx-5.0.0 lib/thinking_sphinx/index.rb
thinking-sphinx-4.4.1 lib/thinking_sphinx/index.rb
thinking-sphinx-4.4.0 lib/thinking_sphinx/index.rb
thinking-sphinx-4.3.2 lib/thinking_sphinx/index.rb
thinking-sphinx-4.3.1 lib/thinking_sphinx/index.rb
thinking-sphinx-4.3.0 lib/thinking_sphinx/index.rb
thinking-sphinx-4.2.0 lib/thinking_sphinx/index.rb
thinking-sphinx-4.1.0 lib/thinking_sphinx/index.rb
thinking-sphinx-4.0.0 lib/thinking_sphinx/index.rb