forked from TRON-US/go-btfs-api
-
Notifications
You must be signed in to change notification settings - Fork 8
/
pubsub.go
60 lines (51 loc) · 1.18 KB
/
pubsub.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
package shell
import (
"encoding/json"
"io"
"github.com/libp2p/go-libp2p/core/peer"
)
// Message is a pubsub message.
type Message struct {
From peer.ID
Data []byte
Seqno []byte
TopicIDs []string
}
// PubSubSubscription allow you to receive pubsub records that where published on the network.
type PubSubSubscription struct {
resp io.Closer
dec *json.Decoder
}
func newPubSubSubscription(resp io.ReadCloser) *PubSubSubscription {
return &PubSubSubscription{
resp: resp,
dec: json.NewDecoder(resp),
}
}
// Next waits for the next record and returns that.
func (s *PubSubSubscription) Next() (*Message, error) {
var r struct {
From []byte `json:"from,omitempty"`
Data []byte `json:"data,omitempty"`
Seqno []byte `json:"seqno,omitempty"`
TopicIDs []string `json:"topicIDs,omitempty"`
}
err := s.dec.Decode(&r)
if err != nil {
return nil, err
}
from, err := peer.IDFromBytes(r.From)
if err != nil {
return nil, err
}
return &Message{
From: from,
Data: r.Data,
Seqno: r.Seqno,
TopicIDs: r.TopicIDs,
}, nil
}
// Cancel cancels the given subscription.
func (s *PubSubSubscription) Cancel() error {
return s.resp.Close()
}