Sha256: 250c7e6903a6d903fd009c99fec404138b43cb74cb45448bb5075b66894bb0f0

Contents?: true

Size: 1.42 KB

Versions: 6

Compression:

Stored size: 1.42 KB

Contents

module Riddle
  class Client
    # Used for querying Sphinx.
    class Filter
      attr_accessor :attribute, :values, :exclude
      
      # Attribute name, values (which can be an array or a range), and whether
      # the filter should be exclusive.
      def initialize(attribute, values, exclude=false)
        @attribute, @values, @exclude = attribute, values, exclude
      end
      
      def exclude?
        self.exclude
      end
      
      # Returns the message for this filter to send to the Sphinx service
      def query_message
        message = Message.new
        
        message.append_string self.attribute.to_s
        case self.values
        when Range
          if self.values.first.is_a?(Float) && self.values.last.is_a?(Float)
            message.append_int FilterTypes[:float_range]
            message.append_floats self.values.first, self.values.last
          else
            message.append_int FilterTypes[:range]
            message.append_ints self.values.first, self.values.last
          end
        when Array
          message.append_int FilterTypes[:values]
          message.append_int self.values.length
          # using to_f is a hack from the php client - to workaround 32bit
          # signed ints on x32 platforms
          message.append_ints *self.values.collect { |val| val.to_f }
        end
        message.append_int self.exclude? ? 1 : 0
        
        message.to_s
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 5 rubygems

Version Path
DrMark-thinking-sphinx-0.9.8 lib/riddle/client/filter.rb
DrMark-thinking-sphinx-0.9.9 lib/riddle/client/filter.rb
freelancing-god-riddle-0.9.8.1371.1 lib/riddle/client/filter.rb
freelancing-god-thinking-sphinx-0.9.8 lib/riddle/client/filter.rb
ryanb-thinking-sphinx-0.9.8 lib/riddle/client/filter.rb
ryanb-thinking_sphinx-0.9.8 lib/riddle/client/filter.rb