seaweedfs/weed/replication/sub/notification_gocdk_pub_sub.go

62 lines
1.5 KiB
Go
Raw Normal View History

2019-04-04 21:22:45 +00:00
package sub
import (
"context"
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
"github.com/chrislusf/seaweedfs/weed/util"
"github.com/golang/protobuf/proto"
"gocloud.dev/pubsub"
_ "gocloud.dev/pubsub/awssnssqs"
2019-07-17 07:39:36 +00:00
// _ "gocloud.dev/pubsub/azuresb"
2019-04-04 21:22:45 +00:00
_ "gocloud.dev/pubsub/gcppubsub"
_ "gocloud.dev/pubsub/natspubsub"
_ "gocloud.dev/pubsub/rabbitpubsub"
)
func init() {
NotificationInputs = append(NotificationInputs, &GoCDKPubSubInput{})
}
type GoCDKPubSubInput struct {
sub *pubsub.Subscription
}
func (k *GoCDKPubSubInput) GetName() string {
return "gocdk_pub_sub"
}
func (k *GoCDKPubSubInput) Initialize(configuration util.Configuration, prefix string) error {
subURL := configuration.GetString(prefix + "sub_url")
2019-04-05 12:13:32 +00:00
glog.V(0).Infof("notification.gocdk_pub_sub.sub_url: %v", subURL)
2019-04-04 21:22:45 +00:00
sub, err := pubsub.OpenSubscription(context.Background(), subURL)
if err != nil {
return err
}
k.sub = sub
return nil
}
2021-01-26 19:08:44 +00:00
func (k *GoCDKPubSubInput) ReceiveMessage() (key string, message *filer_pb.EventNotification, onSuccessFn func(), onFailureFn func(), err error) {
2019-04-04 21:22:45 +00:00
msg, err := k.sub.Receive(context.Background())
2021-01-26 19:08:44 +00:00
if err != nil {
return
}
onSuccessFn = func() {
msg.Ack()
}
onFailureFn = func() {
if msg.Nackable() {
msg.Nack()
}
}
2019-04-04 21:22:45 +00:00
key = msg.Metadata["key"]
message = &filer_pb.EventNotification{}
err = proto.Unmarshal(msg.Body, message)
if err != nil {
2021-01-26 19:08:44 +00:00
return "", nil, onSuccessFn, onFailureFn, err
2019-04-04 21:22:45 +00:00
}
2021-01-26 19:08:44 +00:00
return key, message, onSuccessFn, onFailureFn, nil
2019-04-04 21:22:45 +00:00
}