seaweedfs/weed/mq/client/pub_client/publisher.go

44 lines
1.0 KiB
Go
Raw Normal View History

2023-08-29 00:02:12 +08:00
package pub_client
2023-08-28 04:13:14 +08:00
2023-08-28 08:50:59 +08:00
import (
2023-08-29 00:02:12 +08:00
"github.com/rdleal/intervalst/interval"
2023-08-28 08:50:59 +08:00
"github.com/seaweedfs/seaweedfs/weed/pb/mq_pb"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
2023-09-05 12:43:30 +08:00
"sync"
2023-08-28 08:50:59 +08:00
)
2023-08-29 00:02:12 +08:00
type PublisherConfiguration struct {
}
2023-09-05 12:43:30 +08:00
type PublishClient struct {
mq_pb.SeaweedMessaging_PublishClient
Broker string
Err error
}
2023-08-29 00:02:12 +08:00
type TopicPublisher struct {
2023-09-05 12:43:30 +08:00
namespace string
topic string
partition2Broker *interval.SearchTree[*PublishClient, int32]
grpcDialOption grpc.DialOption
sync.Mutex // protects grpc
2023-08-29 00:02:12 +08:00
}
2023-08-28 08:50:59 +08:00
2023-08-29 00:02:12 +08:00
func NewTopicPublisher(namespace, topic string) *TopicPublisher {
return &TopicPublisher{
namespace: namespace,
topic: topic,
2023-09-05 12:43:30 +08:00
partition2Broker: interval.NewSearchTree[*PublishClient](func(a, b int32) int {
2023-08-29 00:02:12 +08:00
return int(a - b)
}),
2023-09-05 12:43:30 +08:00
grpcDialOption: grpc.WithTransportCredentials(insecure.NewCredentials()),
2023-08-28 08:50:59 +08:00
}
2023-08-29 00:02:12 +08:00
}
2023-08-28 08:50:59 +08:00
2023-08-29 00:02:12 +08:00
func (p *TopicPublisher) Connect(bootstrapBroker string) error {
2023-09-01 15:36:51 +08:00
if err := p.doLookup(bootstrapBroker); err != nil {
2023-08-29 00:02:12 +08:00
return err
}
return nil
2023-08-28 04:13:14 +08:00
}