Class: MQTT::Packet
- Inherits:
-
Object
- Object
- MQTT::Packet
- Defined in:
- lib/mqtt/packet.rb
Overview
Class representing a MQTT Packet Performs binary encoding and decoding of headers
Direct Known Subclasses
Connack, Connect, Disconnect, Pingreq, Pingresp, Puback, Pubcomp, Publish, Pubrec, Pubrel, Suback, Subscribe, Unsuback, Unsubscribe
Defined Under Namespace
Classes: Connack, Connect, Disconnect, Pingreq, Pingresp, Puback, Pubcomp, Publish, Pubrec, Pubrel, Suback, Subscribe, Unsuback, Unsubscribe
Constant Summary collapse
- ATTR_DEFAULTS =
Default attribute values
{ :version => '3.1.0', :id => 0, :body_length => nil }
Instance Attribute Summary collapse
-
#body_length ⇒ Object
The length of the parsed packet body.
-
#flags ⇒ Object
Array of 4 bits in the fixed header.
-
#id ⇒ Object
Identifier to link related control packets together.
-
#version ⇒ Object
The version number of the MQTT protocol to use (default 3.1.0).
Class Method Summary collapse
-
.create_from_header(byte) ⇒ Object
Create a new packet object from the first byte of a MQTT packet.
-
.parse(buffer) ⇒ Object
Parse buffer into new packet object.
-
.parse_header(buffer) ⇒ Object
Parse the header and create a new packet object of the correct type The header is removed from the buffer passed into this function.
-
.read(socket) ⇒ Object
Read in a packet from a socket.
-
.read_byte(socket) ⇒ Object
Read and unpack a single byte from a socket.
Instance Method Summary collapse
-
#encode_body ⇒ Object
Get serialisation of packet’s body (variable header and payload).
-
#initialize(args = {}) ⇒ Packet
constructor
Create a new empty packet.
-
#inspect ⇒ Object
Returns a human readable string.
-
#message_id ⇒ Object
deprecated
Deprecated.
Please use #id instead
-
#message_id=(args) ⇒ Object
deprecated
Deprecated.
Please use #id= instead
-
#parse_body(buffer) ⇒ Object
Parse the body (variable header and payload) of a packet.
-
#to_s ⇒ Object
Serialise the packet.
-
#type_id ⇒ Object
Get the identifer for this packet type.
-
#type_name ⇒ Object
Get the name of the packet type as a string in capitals (like the MQTT specification uses).
-
#update_attributes(attr = {}) ⇒ Object
Set packet attributes from a hash of attribute names and values.
-
#validate_flags ⇒ Object
Check that fixed header flags are valid for types that don’t use the flags.
Constructor Details
#initialize(args = {}) ⇒ Packet
Create a new empty packet
119 120 121 122 123 |
# File 'lib/mqtt/packet.rb', line 119 def initialize(args = {}) # We must set flags before the other values @flags = [false, false, false, false] update_attributes(ATTR_DEFAULTS.merge(args)) end |
Instance Attribute Details
#body_length ⇒ Object
The length of the parsed packet body
17 18 19 |
# File 'lib/mqtt/packet.rb', line 17 def body_length @body_length end |
#flags ⇒ Object
Array of 4 bits in the fixed header
14 15 16 |
# File 'lib/mqtt/packet.rb', line 14 def flags @flags end |
#id ⇒ Object
Identifier to link related control packets together
11 12 13 |
# File 'lib/mqtt/packet.rb', line 11 def id @id end |
#version ⇒ Object
The version number of the MQTT protocol to use (default 3.1.0)
8 9 10 |
# File 'lib/mqtt/packet.rb', line 8 def version @version end |
Class Method Details
.create_from_header(byte) ⇒ Object
Create a new packet object from the first byte of a MQTT packet
103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/mqtt/packet.rb', line 103 def self.create_from_header(byte) # Work out the class type_id = ((byte & 0xF0) >> 4) packet_class = MQTT::PACKET_TYPES[type_id] if packet_class.nil? raise ProtocolException, "Invalid packet type identifier: #{type_id}" end # Convert the last 4 bits of byte into array of true/false flags = (0..3).map { |i| byte & (2**i) != 0 } # Create a new packet object packet_class.new(:flags => flags) end |
.parse(buffer) ⇒ Object
Parse buffer into new packet object
57 58 59 60 61 |
# File 'lib/mqtt/packet.rb', line 57 def self.parse(buffer) packet = parse_header(buffer) packet.parse_body(buffer) packet end |
.parse_header(buffer) ⇒ Object
Parse the header and create a new packet object of the correct type The header is removed from the buffer passed into this function
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'lib/mqtt/packet.rb', line 65 def self.parse_header(buffer) # Check that the packet is a long as the minimum packet size if buffer.bytesize < 2 raise ProtocolException, 'Invalid packet: less than 2 bytes long' end # Create a new packet object bytes = buffer.unpack('C5') packet = create_from_header(bytes.first) packet.validate_flags # Parse the packet length body_length = 0 multiplier = 1 pos = 1 loop do if buffer.bytesize <= pos raise ProtocolException, 'The packet length header is incomplete' end digit = bytes[pos] body_length += ((digit & 0x7F) * multiplier) multiplier *= 0x80 pos += 1 break if (digit & 0x80).zero? || pos > 4 end # Store the expected body length in the packet packet.instance_variable_set('@body_length', body_length) # Delete the fixed header from the raw packet passed in buffer.slice!(0...pos) packet end |
.read(socket) ⇒ Object
Read in a packet from a socket
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 |
# File 'lib/mqtt/packet.rb', line 27 def self.read(socket) # Read in the packet header and create a new packet object packet = create_from_header( read_byte(socket) ) packet.validate_flags # Read in the packet length multiplier = 1 body_length = 0 pos = 1 loop do digit = read_byte(socket) body_length += ((digit & 0x7F) * multiplier) multiplier *= 0x80 pos += 1 break if (digit & 0x80).zero? || pos > 4 end # Store the expected body length in the packet packet.instance_variable_set('@body_length', body_length) # Read in the packet body packet.parse_body(socket.read(body_length)) packet end |
.read_byte(socket) ⇒ Object
Read and unpack a single byte from a socket
221 222 223 224 225 226 |
# File 'lib/mqtt/packet.rb', line 221 def self.read_byte(socket) byte = socket.getbyte raise ProtocolException, 'Failed to read byte from socket' if byte.nil? byte end |
Instance Method Details
#encode_body ⇒ Object
Get serialisation of packet’s body (variable header and payload)
169 170 171 |
# File 'lib/mqtt/packet.rb', line 169 def encode_body '' # No body by default end |
#inspect ⇒ Object
Returns a human readable string
216 217 218 |
# File 'lib/mqtt/packet.rb', line 216 def inspect "\#<#{self.class}>" end |
#message_id ⇒ Object
Please use #id instead
1020 1021 1022 |
# File 'lib/mqtt/packet.rb', line 1020 def id end |
#message_id=(args) ⇒ Object
Please use #id= instead
1025 1026 1027 |
# File 'lib/mqtt/packet.rb', line 1025 def (args) self.id = args end |
#parse_body(buffer) ⇒ Object
Parse the body (variable header and payload) of a packet
162 163 164 165 166 |
# File 'lib/mqtt/packet.rb', line 162 def parse_body(buffer) return if buffer.bytesize == body_length raise ProtocolException, "Failed to parse packet - input buffer (#{buffer.bytesize}) is not the same as the body length header (#{body_length})" end |
#to_s ⇒ Object
Serialise the packet
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 |
# File 'lib/mqtt/packet.rb', line 174 def to_s # Encode the fixed header header = [ ((type_id.to_i & 0x0F) << 4) | (flags[3] ? 0x8 : 0x0) | (flags[2] ? 0x4 : 0x0) | (flags[1] ? 0x2 : 0x0) | (flags[0] ? 0x1 : 0x0) ] # Get the packet's variable header and payload body = encode_body # Check that that packet isn't too big body_length = body.bytesize if body_length > 268_435_455 raise 'Error serialising packet: body is more than 256MB' end # Build up the body length field bytes loop do digit = (body_length % 128) body_length = body_length.div(128) # if there are more digits to encode, set the top bit of this digit digit |= 0x80 if body_length > 0 header.push(digit) break if body_length <= 0 end # Convert header to binary and add on body header.pack('C*') + body end |
#type_id ⇒ Object
Get the identifer for this packet type
137 138 139 140 141 |
# File 'lib/mqtt/packet.rb', line 137 def type_id index = MQTT::PACKET_TYPES.index(self.class) raise "Invalid packet type: #{self.class}" if index.nil? index end |
#type_name ⇒ Object
Get the name of the packet type as a string in capitals (like the MQTT specification uses)
Example: CONNACK
147 148 149 |
# File 'lib/mqtt/packet.rb', line 147 def type_name self.class.name.split('::').last.upcase end |
#update_attributes(attr = {}) ⇒ Object
Set packet attributes from a hash of attribute names and values
126 127 128 129 130 131 132 133 134 |
# File 'lib/mqtt/packet.rb', line 126 def update_attributes(attr = {}) attr.each_pair do |k, v| if v.is_a?(Array) || v.is_a?(Hash) send("#{k}=", v.dup) else send("#{k}=", v) end end end |
#validate_flags ⇒ Object
Check that fixed header flags are valid for types that don’t use the flags
209 210 211 212 213 |
# File 'lib/mqtt/packet.rb', line 209 def validate_flags return if flags == [false, false, false, false] raise ProtocolException, "Invalid flags in #{type_name} packet header" end |