Sha256: 8716f89c38c02dd1afc065911702169989ff0a4f5056771167c81c79ec08b5da

Contents?: true

Size: 694 Bytes

Versions: 5

Compression:

Stored size: 694 Bytes

Contents

class ThinkingSphinx::Configuration::DuplicateNames
  def initialize(indices)
    @indices = indices
  end

  def reconcile
    indices.each do |index|
      return if index.distributed?

      counts_for(index).each do |name, count|
        next if count <= 1

        raise ThinkingSphinx::DuplicateNameError,
          "Duplicate field/attribute name '#{name}' in index '#{index.name}'"
      end
    end
  end

  private

  attr_reader :indices

  def counts_for(index)
    names_for(index).inject({}) do |hash, name|
      hash[name] ||= 0
      hash[name] += 1
      hash
    end
  end

  def names_for(index)
    index.fields.collect(&:name) + index.attributes.collect(&:name)
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
thinking-sphinx-3.4.2 lib/thinking_sphinx/configuration/duplicate_names.rb
thinking-sphinx-3.4.1 lib/thinking_sphinx/configuration/duplicate_names.rb
thinking-sphinx-3.4.0 lib/thinking_sphinx/configuration/duplicate_names.rb
thinking-sphinx-3.3.0 lib/thinking_sphinx/configuration/duplicate_names.rb
thinking-sphinx-3.2.0 lib/thinking_sphinx/configuration/duplicate_names.rb