Class: AMQ::Protocol::TableValueDecoder

Inherits:
Object
  • Object
show all
Includes:
TypeConstants
Defined in:
lib/amq/protocol/table_value_decoder.rb

Constant Summary collapse

BIG_ENDIAN =

API

([1].pack("s") == "\x00\x01")
Q =
"Q".freeze

Constants included from TypeConstants

AMQ::Protocol::TypeConstants::BOOLEAN_FALSE, AMQ::Protocol::TypeConstants::BOOLEAN_TRUE, AMQ::Protocol::TypeConstants::TEN, AMQ::Protocol::TypeConstants::TYPE_32BIT_FLOAT, AMQ::Protocol::TypeConstants::TYPE_64BIT_FLOAT, AMQ::Protocol::TypeConstants::TYPE_ARRAY, AMQ::Protocol::TypeConstants::TYPE_BOOLEAN, AMQ::Protocol::TypeConstants::TYPE_BYTE_ARRAY, AMQ::Protocol::TypeConstants::TYPE_DECIMAL, AMQ::Protocol::TypeConstants::TYPE_HASH, AMQ::Protocol::TypeConstants::TYPE_INTEGER, AMQ::Protocol::TypeConstants::TYPE_SIGNED_16BIT, AMQ::Protocol::TypeConstants::TYPE_SIGNED_64BIT, AMQ::Protocol::TypeConstants::TYPE_SIGNED_8BIT, AMQ::Protocol::TypeConstants::TYPE_STRING, AMQ::Protocol::TypeConstants::TYPE_TIME, AMQ::Protocol::TypeConstants::TYPE_VOID

Class Method Summary collapse

Class Method Details

.decode_32bit_float(data, offset) ⇒ Object



148
149
150
151
152
153
# File 'lib/amq/protocol/table_value_decoder.rb', line 148

def self.decode_32bit_float(data, offset)
  v = data.slice(offset, 4).unpack(PACK_32BIT_FLOAT).first
  offset += 4

  [v, offset]
end

.decode_64bit_float(data, offset) ⇒ Object



156
157
158
159
160
161
# File 'lib/amq/protocol/table_value_decoder.rb', line 156

def self.decode_64bit_float(data, offset)
  v = data.slice(offset, 8).unpack(PACK_64BIT_FLOAT).first
  offset += 8

  [v, offset]
end

.decode_array(data, initial_offset) ⇒ Object



27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/amq/protocol/table_value_decoder.rb', line 27

def self.decode_array(data, initial_offset)
  array_length = data.slice(initial_offset, 4).unpack(PACK_UINT32).first

  ary    = Array.new
  offset = initial_offset + 4

  while offset <= (initial_offset + array_length)
    type, offset = decode_value_type(data, offset)

    i = case type
        when TYPE_STRING
          v, offset = decode_string(data, offset)
          v
        when TYPE_INTEGER
          v, offset = decode_integer(data, offset)
          v
        when TYPE_DECIMAL
          v, offset = decode_big_decimal(data, offset)
          v
        when TYPE_TIME
          v, offset = decode_time(data, offset)
          v
        when TYPE_HASH
          v, offset = decode_hash(data, offset)
          v
        when TYPE_BOOLEAN
          v, offset = decode_boolean(data, offset)
          v
        when TYPE_SIGNED_8BIT then
          # TODO
          raise NotImplementedError.new
        when TYPE_SIGNED_16BIT then
          # TODO
          raise NotImplementedError.new
        when TYPE_SIGNED_64BIT then
          v, offset = decode_long(data, offset)
          v
        when TYPE_32BIT_FLOAT then
          v, offset = decode_32bit_float(data, offset)
          v
        when TYPE_64BIT_FLOAT then
          v, offset = decode_64bit_float(data, offset)
          v
        when TYPE_VOID
          nil
        when TYPE_ARRAY
          v, offset = TableValueDecoder.decode_array(data, offset)
          v
        else
          raise ArgumentError.new("unsupported type in a table value: #{type.inspect}, do not know how to decode!")
        end

    ary << i
  end


  [ary, initial_offset + array_length + 4]
end

.decode_big_decimal(data, offset) ⇒ Object



123
124
125
126
127
128
129
# File 'lib/amq/protocol/table_value_decoder.rb', line 123

def self.decode_big_decimal(data, offset)
  decimals, raw = data.slice(offset, 5).unpack(PACK_UCHAR_UINT32)
  offset += 5
  v = BigDecimal.new(raw.to_s) * (BigDecimal.new(TEN) ** -decimals)

  [v, offset]
end

.decode_boolean(data, offset) ⇒ Object



141
142
143
144
145
# File 'lib/amq/protocol/table_value_decoder.rb', line 141

def self.decode_boolean(data, offset)
  integer = data.slice(offset, 2).unpack(PACK_CHAR).first # 0 or 1
  offset += 1
  [(integer == 1), offset]
end

.decode_hash(data, offset) ⇒ Object



170
171
172
173
174
175
176
# File 'lib/amq/protocol/table_value_decoder.rb', line 170

def self.decode_hash(data, offset)
  length = data.slice(offset, 4).unpack(PACK_UINT32).first
  v = Table.decode(data.slice(offset, length + 4))
  offset += 4 + length

  [v, offset]
end

.decode_integer(data, offset) ⇒ Object



97
98
99
100
101
102
# File 'lib/amq/protocol/table_value_decoder.rb', line 97

def self.decode_integer(data, offset)
  v = data.slice(offset, 4).unpack(PACK_UINT32).first
  offset += 4

  [v, offset]
end

.decode_long(data, offset) ⇒ Object



106
107
108
109
110
111
# File 'lib/amq/protocol/table_value_decoder.rb', line 106

def self.decode_long(data, offset)
  v    = data.slice(offset, 8).unpack(Q)

  offset += 8
  [v, offset]
end

.decode_string(data, offset) ⇒ Object



87
88
89
90
91
92
93
94
# File 'lib/amq/protocol/table_value_decoder.rb', line 87

def self.decode_string(data, offset)
  length = data.slice(offset, 4).unpack(PACK_UINT32).first
  offset += 4
  v = data.slice(offset, length)
  offset += length

  [v, offset]
end

.decode_time(data, offset) ⇒ Object



132
133
134
135
136
137
138
# File 'lib/amq/protocol/table_value_decoder.rb', line 132

def self.decode_time(data, offset)
  timestamp = data.slice(offset, 8).unpack(PACK_UINT32_X2).last
  v = Time.at(timestamp)
  offset += 8

  [v, offset]
end

.decode_value_type(data, offset) ⇒ Object



164
165
166
# File 'lib/amq/protocol/table_value_decoder.rb', line 164

def self.decode_value_type(data, offset)
  [data.slice(offset, 1), offset + 1]
end