-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpubcomp.go
84 lines (73 loc) · 1.96 KB
/
pubcomp.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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
package mqttpackets
import (
"bytes"
"io"
"net"
)
// Pubcomp is the Variable Header definition for a Pubcomp control packet
type Pubcomp struct {
Properties *Properties
PacketID uint16
ReasonCode byte
}
// PubcompSuccess, etc are the list of valid pubcomp reason codes.
const (
PubcompSuccess = 0x00
PubcompPacketIdentifierNotFound = 0x92
)
//Unpack is the implementation of the interface required function for a packet
func (p *Pubcomp) Unpack(r *bytes.Buffer) error {
var err error
success := r.Len() == 2
noProps := r.Len() == 3
p.PacketID, err = readUint16(r)
if err != nil {
return err
}
if !success && p.Properties != nil {
p.ReasonCode, err = r.ReadByte()
if err != nil {
return err
}
if !noProps {
err = p.Properties.Unpack(r, PUBACK)
if err != nil {
return err
}
}
}
return nil
}
// Buffers is the implementation of the interface required function for a packet
func (p *Pubcomp) Buffers() net.Buffers {
var b bytes.Buffer
writeUint16(p.PacketID, &b)
if p.Properties == nil {
return net.Buffers{b.Bytes()}
}
b.WriteByte(p.ReasonCode)
n := net.Buffers{b.Bytes()}
idvp := p.Properties.Pack(PUBCOMP)
propLen := encodeVBI(len(idvp))
if len(idvp) > 0 {
n = append(n, propLen)
n = append(n, idvp)
}
return n
}
// WriteTo is the implementation of the interface required function for a packet
func (p *Pubcomp) WriteTo(w io.Writer) (int64, error) {
cp := &ControlPacket{FixedHeader: FixedHeader{Type: PUBCOMP}}
cp.Content = p
return cp.WriteTo(w)
}
// Reason returns a string representation of the meaning of the ReasonCode
func (p *Pubcomp) Reason() string {
switch p.ReasonCode {
case 0:
return "Success - Packet Identifier released. Publication of QoS 2 message is complete."
case 146:
return "Packet Identifier not found - The Packet Identifier is not known. This is not an error during recovery, but at other times indicates a mismatch between the Session State on the Client and Server."
}
return ""
}