Class: Kafka::Message

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

Overview

A message. The format of an N byte message is the following: 1 byte “magic” identifier to allow format changes 4 byte CRC32 of the payload N - 5 byte payload

Constant Summary collapse

MAGIC_IDENTIFIER_DEFAULT =
0

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(payload = nil, magic = MAGIC_IDENTIFIER_DEFAULT, checksum = nil) ⇒ Message

Returns a new instance of Message.



13
14
15
16
17
# File 'lib/kafka/message.rb', line 13

def initialize(payload = nil, magic = MAGIC_IDENTIFIER_DEFAULT, checksum = nil)
  self.magic    = magic
  self.payload  = payload
  self.checksum = checksum || self.calculate_checksum
end

Instance Attribute Details

#checksumObject

Returns the value of attribute checksum.



11
12
13
# File 'lib/kafka/message.rb', line 11

def checksum
  @checksum
end

#magicObject

Returns the value of attribute magic.



11
12
13
# File 'lib/kafka/message.rb', line 11

def magic
  @magic
end

#payloadObject

Returns the value of attribute payload.



11
12
13
# File 'lib/kafka/message.rb', line 11

def payload
  @payload
end

Class Method Details

.parse_from(binary) ⇒ Object



27
28
29
30
31
32
33
# File 'lib/kafka/message.rb', line 27

def self.parse_from(binary)
  size     = binary[0, 4].unpack("N").shift.to_i
  magic    = binary[4, 1].unpack("C").shift
  checksum = binary[5, 4].unpack("N").shift
  payload  = binary[9, size] # 5 = 1 + 4 is Magic + Checksum
  return Kafka::Message.new(payload, magic, checksum)
end

Instance Method Details

#calculate_checksumObject



19
20
21
# File 'lib/kafka/message.rb', line 19

def calculate_checksum
  Zlib.crc32(self.payload)
end

#valid?Boolean

Returns:

  • (Boolean)


23
24
25
# File 'lib/kafka/message.rb', line 23

def valid?
  self.checksum == Zlib.crc32(self.payload)
end