Sha256: db49a3c3546b0a1e2f171ed6dce43b44a39ad43e79c0efc5c4f6e98bda51aef0

Contents?: true

Size: 1.77 KB

Versions: 5

Compression:

Stored size: 1.77 KB

Contents

module Picky

  class Categories

    attr_reader :categories, :category_hash

    forward :each,
            :first,
            :map,
            :to => :categories

    each_forward :cache,
                 :dump,
                 :empty,
                 :inject,
                 :reindex,
                 :reset_backend,
                 :to => :categories

    # A list of indexed categories.
    #
    def initialize options = {}
      clear_categories
    end

    # Clears both the array of categories and the hash of categories.
    #
    def clear_categories
      @categories    = []
      @category_hash = {}
    end
    
    # Updates the qualifier ("qualifier:searchterm") mapping.
    #
    # Example:
    #   You dynamically add a new category to an index.
    #   To add the qualifiers to a search, you call this
    #   method.
    #
    def qualifier_mapper
      @qualifier_mapper ||= QualifierMapper.new self
    end
    
    # Resets the qualifier mapper used.
    #
    def reset_qualifier_mapper
      @qualifier_mapper = nil
    end

    # Add the given category to the list of categories.
    #
    def << category
      reset_qualifier_mapper # TODO Have an add method on QualifierMapper?
      categories << category
      category_hash[category.name] = category
    end

    # Find a given category in the categories.
    #
    def [] category_name
      category_name = category_name.intern
      category_hash[category_name] || raise_not_found(category_name)
    end
    def raise_not_found category_name
      raise %Q{Index category "#{category_name}" not found. Possible categories: "#{categories.map(&:name).join('", "')}".}
    end
    
    def to_stats
      map(&:name).join(', ')
    end

    def to_s
      "#{self.class}(#{categories.join(', ')})"
    end

  end

end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
picky-4.12.6 lib/picky/categories.rb
picky-4.12.5 lib/picky/categories.rb
picky-4.12.4 lib/picky/categories.rb
picky-4.12.3 lib/picky/categories.rb
picky-4.12.2 lib/picky/categories.rb