Sha256: 96d794d61e203adb2b5bed4fc046039b23981036a3f238a70f208732c554d20c

Contents?: true

Size: 1.31 KB

Versions: 7

Compression:

Stored size: 1.31 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 delta?
    @options[:delta?]
  end

  def delta_processor
    @options[:delta_processor].try(:new, adapter)
  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 attributes
    sources.collect(&:attributes).flatten
  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],
      :primary_key     => @options[:primary_key] || model.primary_key || :id
    }
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
thinking-sphinx-3.0.6 lib/thinking_sphinx/active_record/index.rb
thinking-sphinx-3.0.5 lib/thinking_sphinx/active_record/index.rb
thinking-sphinx-3.0.4 lib/thinking_sphinx/active_record/index.rb
thinking-sphinx-3.0.3 lib/thinking_sphinx/active_record/index.rb
thinking-sphinx-3.0.2 lib/thinking_sphinx/active_record/index.rb
thinking-sphinx-3.0.1 lib/thinking_sphinx/active_record/index.rb
thinking-sphinx-3.0.0 lib/thinking_sphinx/active_record/index.rb