blob: 4c27cdc3aa6e91ea662d477fc03b767969d63b61 (
plain)
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
|
package broadcast
import (
"github.com/spiral/errors"
"github.com/spiral/roadrunner/v2/plugins/logger"
websocketsv1 "github.com/spiral/roadrunner/v2/proto/websockets/v1beta"
"google.golang.org/protobuf/proto"
)
// rpc collectors struct
type rpc struct {
plugin *Plugin
log logger.Logger
}
// Publish ... msg is a proto decoded payload
// see: pkg/pubsub/message.fbs
func (r *rpc) Publish(in *websocketsv1.Request, out *websocketsv1.Response) error {
const op = errors.Op("broadcast_publish")
// just return in case of nil message
if in == nil {
out.Ok = false
return nil
}
r.log.Debug("message published", "msg", in.String())
msgLen := len(in.GetMessages())
for i := 0; i < msgLen; i++ {
bb, err := proto.Marshal(in.GetMessages()[i])
if err != nil {
return errors.E(op, err)
}
err = r.plugin.Publish(bb)
if err != nil {
out.Ok = false
return errors.E(op, err)
}
}
out.Ok = true
return nil
}
// PublishAsync ...
// see: pkg/pubsub/message.fbs
func (r *rpc) PublishAsync(in *websocketsv1.Request, out *websocketsv1.Response) error {
const op = errors.Op("publish_async")
// just return in case of nil message
if in == nil {
out.Ok = false
return nil
}
r.log.Debug("message published", "msg", in.GetMessages())
msgLen := len(in.GetMessages())
for i := 0; i < msgLen; i++ {
bb, err := proto.Marshal(in.GetMessages()[i])
if err != nil {
out.Ok = false
return errors.E(op, err)
}
r.plugin.PublishAsync(bb)
}
out.Ok = true
return nil
}
|