Sha256: 08393beb0925cf3ac6e294d5f35d4b50641b269dffe433f850e5e7de642fbb69

Contents?: true

Size: 1.4 KB

Versions: 4

Compression:

Stored size: 1.4 KB

Contents

class ThinkingSphinx::ActiveRecord::Index < Riddle::Configuration::Index
  include ThinkingSphinx::Core::Index

  attr_reader :reference
  attr_writer :definition_block

  def append_source
    ThinkingSphinx::ActiveRecord::SQLSource.new(
      model, source_options.merge(:position => sources.length)
    ).tap do |source|
      sources << source
    end
  end

  def attributes
    sources.collect(&:attributes).flatten
  end

  def delta?
    @options[:delta?]
  end

  def delta_processor
    @options[:delta_processor].try(:new, adapter, @options[:delta_options] || {})
  end

  def facets
    @facets ||= sources.collect(&:facets).flatten
  end

  def sources
    interpret_definition!
    super
  end

  def unique_attribute_names
    attributes.collect(&:name)
  end

  private

  def adapter
    @adapter ||= ThinkingSphinx::ActiveRecord::DatabaseAdapters.
      adapter_for(model)
  end

  def fields
    sources.collect(&:fields).flatten
  end

  def interpreter
    ThinkingSphinx::ActiveRecord::Interpreter
  end

  def name_suffix
    @options[:delta?] ? 'delta' : 'core'
  end

  def source_options
    {
      :name            => name,
      :offset          => offset,
      :delta?          => @options[:delta?],
      :delta_processor => @options[:delta_processor],
      :delta_options   => @options[:delta_options],
      :primary_key     => @options[:primary_key] || model.primary_key || :id
    }
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
thinking-sphinx-3.1.4 lib/thinking_sphinx/active_record/index.rb
thinking-sphinx-3.1.3 lib/thinking_sphinx/active_record/index.rb
thinking-sphinx-3.1.2 lib/thinking_sphinx/active_record/index.rb
thinking-sphinx-3.1.1 lib/thinking_sphinx/active_record/index.rb