-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublish.go
80 lines (69 loc) · 1.49 KB
/
publish.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
package mqttpackets
import (
"bytes"
"io"
"io/ioutil"
"net"
)
// Publish is the Variable Header definition for a publish control packet
type Publish struct {
Payload []byte
Topic string
Properties *Properties
PacketID uint16
QoS byte
Duplicate bool
Retain bool
}
//Unpack is the implementation of the interface required function for a packet
func (p *Publish) Unpack(r *bytes.Buffer) error {
var err error
p.Topic, err = readString(r)
if err != nil {
return err
}
if p.QoS > 0 {
p.PacketID, err = readUint16(r)
if err != nil {
return err
}
}
if p.Properties != nil {
err = p.Properties.Unpack(r, PUBLISH)
if err != nil {
return err
}
}
p.Payload, err = ioutil.ReadAll(r)
if err != nil {
return err
}
return nil
}
// Buffers is the implementation of the interface required function for a packet
func (p *Publish) Buffers() net.Buffers {
var b bytes.Buffer
writeString(p.Topic, &b)
if p.QoS > 0 {
writeUint16(p.PacketID, &b)
}
if p.Properties == nil {
return net.Buffers{b.Bytes(), p.Payload}
}
idvp := p.Properties.Pack(PUBLISH)
encodeVBIdirect(len(idvp), &b)
return net.Buffers{b.Bytes(), idvp, p.Payload}
}
// WriteTo is the implementation of the interface required function for a packet
func (p *Publish) WriteTo(w io.Writer) (int64, error) {
f := p.QoS << 1
if p.Duplicate {
f |= 1 << 3
}
if p.Retain {
f |= 1
}
cp := &ControlPacket{FixedHeader: FixedHeader{Type: PUBLISH, Flags: f}}
cp.Content = p
return cp.WriteTo(w)
}