Class: AMQ::Protocol::Method

Inherits:
Object
  • Object
show all
Defined in:
lib/amq/protocol/client.rb

Class Method Summary collapse

Class Method Details

.encode_body(body, channel, frame_size) ⇒ Object



164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# File 'lib/amq/protocol/client.rb', line 164

def self.encode_body(body, channel, frame_size)
  return [] if body.empty?

  # 8 = 1 + 2 + 4 + 1
  # 1 byte of frame type
  # 2 bytes of channel number
  # 4 bytes of frame payload length
  # 1 byte of payload trailer FRAME_END byte
  limit        = frame_size - 8
  return [BodyFrame.new(body, channel)] if body.bytesize < limit

  # Otherwise String#slice on 1.9 will operate with code points,
  # and we need bytes. MK.
  body.force_encoding("ASCII-8BIT") if RUBY_VERSION.to_f >= 1.9

  array = Array.new
  while body && !body.empty?
    payload, body = body[0, limit], body[limit, body.length - limit]
    array << BodyFrame.new(payload, channel)
  end

  array
end

.indexObject



136
137
138
# File 'lib/amq/protocol/client.rb', line 136

def self.index
  @index
end

.inherited(base) ⇒ Object



140
141
142
143
144
# File 'lib/amq/protocol/client.rb', line 140

def self.inherited(base)
  if self == Protocol::Method
    @methods << base
  end
end

.instantiate(*args, &block) ⇒ Object



188
189
190
# File 'lib/amq/protocol/client.rb', line 188

def self.instantiate(*args, &block)
  self.new(*args, &block)
end

.method_idObject



128
129
130
# File 'lib/amq/protocol/client.rb', line 128

def self.method_id
  @method_id
end

.methodsObject



146
147
148
# File 'lib/amq/protocol/client.rb', line 146

def self.methods
  @methods
end

.nameObject



132
133
134
# File 'lib/amq/protocol/client.rb', line 132

def self.name
  @name
end

.split_headers(user_headers) ⇒ Object



150
151
152
153
154
155
156
157
158
159
160
161
162
# File 'lib/amq/protocol/client.rb', line 150

def self.split_headers(user_headers)
  properties, headers = {}, {}
  user_headers.each do |key, value|
    # key MUST be a symbol since symbols are not garbage-collected
    if Basic::PROPERTIES.include?(key)
      properties[key] = value
    else
      headers[key] = value
    end
  end

  return [properties, headers]
end