Files
redis-go/cluster/pubsub.go
2021-05-02 14:54:42 +08:00

55 lines
1.6 KiB
Go

package cluster
import (
"github.com/hdt3213/godis/interface/redis"
"github.com/hdt3213/godis/lib/logger"
"github.com/hdt3213/godis/redis/reply"
)
const (
relayPublish = "_publish"
publish = "publish"
)
var (
publishRelayCmd = []byte(relayPublish)
publishCmd = []byte(publish)
)
// broadcast msg to all peers in cluster when receive publish command from client
func Publish(cluster *Cluster, c redis.Connection, args [][]byte) redis.Reply {
var count int64 = 0
for _, peer := range cluster.peers {
var re redis.Reply
if peer == cluster.self {
args0 := make([][]byte, len(args))
copy(args0, args)
args0[0] = publishCmd
re = cluster.db.Exec(c, args0) // let local db.hub handle publish
} else {
args[0] = publishRelayCmd
re = cluster.Relay(peer, c, args)
}
if errReply, ok := re.(reply.ErrorReply); ok {
logger.Error("publish occurs error: " + errReply.Error())
} else if intReply, ok := re.(*reply.IntReply); ok {
count += intReply.Code
}
}
return reply.MakeIntReply(count)
}
// receive publish command from peer, just publish to local subscribing clients, do not relay to peers
func OnRelayedPublish(cluster *Cluster, c redis.Connection, args [][]byte) redis.Reply {
args[0] = publishCmd
return cluster.db.Exec(c, args) // let local db.hub handle publish
}
func Subscribe(cluster *Cluster, c redis.Connection, args [][]byte) redis.Reply {
return cluster.db.Exec(c, args) // let local db.hub handle subscribe
}
func UnSubscribe(cluster *Cluster, c redis.Connection, args [][]byte) redis.Reply {
return cluster.db.Exec(c, args) // let local db.hub handle subscribe
}