Class: Riddle::Client::Message

Inherits:
Object
  • Object
show all
Defined in:
lib/riddle/client/message.rb

Overview

This class takes care of the translation of ints, strings and arrays to the format required by the Sphinx service.

Instance Method Summary collapse

Constructor Details

#initializeMessage

Returns a new instance of Message.



6
7
8
9
# File 'lib/riddle/client/message.rb', line 6

def initialize
  @message = ""
  @size_method = @message.respond_to?(:bytesize) ? :bytesize : :length
end

Instance Method Details

#append(*args) ⇒ Object

Append raw data (only use if you know what you’re doing)



12
13
14
# File 'lib/riddle/client/message.rb', line 12

def append(*args)
  args.each { |arg| @message << arg }
end

#append_64bit_int(int) ⇒ Object



29
30
31
# File 'lib/riddle/client/message.rb', line 29

def append_64bit_int(int)
  @message << [int.to_i >> 32, int.to_i & 0xFFFFFFFF].pack('NN')
end

#append_64bit_ints(*ints) ⇒ Object



47
48
49
# File 'lib/riddle/client/message.rb', line 47

def append_64bit_ints(*ints)
  ints.each { |int| append_64bit_int(int) }
end

#append_array(array) ⇒ Object

Append an array of strings - first appends the length of the array, then each item’s length and value.



58
59
60
61
62
# File 'lib/riddle/client/message.rb', line 58

def append_array(array)
  append_int(array.length)
  
  array.each { |item| append_string(item) }
end

#append_boolean(bool) ⇒ Object



38
39
40
# File 'lib/riddle/client/message.rb', line 38

def append_boolean(bool)
  append_int(bool ? 1 : 0)
end

#append_float(float) ⇒ Object

Append a float



34
35
36
# File 'lib/riddle/client/message.rb', line 34

def append_float(float)
  @message << [float].pack('f').unpack('L*').pack("N")
end

#append_floats(*floats) ⇒ Object

Append multiple floats



52
53
54
# File 'lib/riddle/client/message.rb', line 52

def append_floats(*floats)
  floats.each { |float| append_float(float) }
end

#append_int(int) ⇒ Object

Append an integer



25
26
27
# File 'lib/riddle/client/message.rb', line 25

def append_int(int)
  @message << [int.to_i].pack('N')
end

#append_ints(*ints) ⇒ Object

Append multiple integers



43
44
45
# File 'lib/riddle/client/message.rb', line 43

def append_ints(*ints)
  ints.each { |int| append_int(int) }
end

#append_string(str) ⇒ Object

Append a string’s length, then the string itself



17
18
19
20
21
22
# File 'lib/riddle/client/message.rb', line 17

def append_string(str)
  string = str.respond_to?(:force_encoding) ?
    str.dup.force_encoding('ASCII-8BIT') : str
  
  @message << [string.send(@size_method)].pack('N') + string
end

#to_sObject

Returns the entire message



65
66
67
# File 'lib/riddle/client/message.rb', line 65

def to_s
  @message
end