2023-08-21 13:53:05 +08:00
|
|
|
package topic
|
2022-07-10 16:36:23 +08:00
|
|
|
|
2022-07-11 15:20:27 +08:00
|
|
|
import (
|
2024-11-05 04:08:25 +08:00
|
|
|
"bytes"
|
|
|
|
"errors"
|
2022-07-17 01:49:34 +08:00
|
|
|
"fmt"
|
2024-11-05 04:08:25 +08:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/filer"
|
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/filer_pb"
|
2022-07-29 15:17:28 +08:00
|
|
|
"github.com/seaweedfs/seaweedfs/weed/pb/mq_pb"
|
2024-11-05 04:08:25 +08:00
|
|
|
jsonpb "google.golang.org/protobuf/encoding/protojson"
|
2022-07-11 15:20:27 +08:00
|
|
|
)
|
2022-07-10 16:36:23 +08:00
|
|
|
|
|
|
|
type Topic struct {
|
2023-10-02 16:01:45 +08:00
|
|
|
Namespace string
|
2022-07-11 15:20:27 +08:00
|
|
|
Name string
|
2022-07-10 16:36:23 +08:00
|
|
|
}
|
|
|
|
|
2023-10-02 16:01:45 +08:00
|
|
|
func NewTopic(namespace string, name string) Topic {
|
2023-08-21 13:53:05 +08:00
|
|
|
return Topic{
|
|
|
|
Namespace: namespace,
|
|
|
|
Name: name,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
func FromPbTopic(topic *mq_pb.Topic) Topic {
|
|
|
|
return Topic{
|
2023-10-02 16:01:45 +08:00
|
|
|
Namespace: topic.Namespace,
|
2023-08-21 13:53:05 +08:00
|
|
|
Name: topic.Name,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-05 04:08:25 +08:00
|
|
|
func (t Topic) ToPbTopic() *mq_pb.Topic {
|
2023-12-12 04:05:54 +08:00
|
|
|
return &mq_pb.Topic{
|
2024-11-05 04:08:25 +08:00
|
|
|
Namespace: t.Namespace,
|
|
|
|
Name: t.Name,
|
2022-07-11 15:20:27 +08:00
|
|
|
}
|
2022-07-10 16:36:23 +08:00
|
|
|
}
|
2022-07-17 01:49:34 +08:00
|
|
|
|
2024-11-05 04:08:25 +08:00
|
|
|
func (t Topic) String() string {
|
|
|
|
return fmt.Sprintf("%s.%s", t.Namespace, t.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t Topic) Dir() string {
|
|
|
|
return fmt.Sprintf("%s/%s/%s", filer.TopicsDir, t.Namespace, t.Name)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t Topic) ReadConfFile(client filer_pb.SeaweedFilerClient) (*mq_pb.ConfigureTopicResponse, error) {
|
|
|
|
data, err := filer.ReadInsideFiler(client, t.Dir(), filer.TopicConfFile)
|
|
|
|
if errors.Is(err, filer_pb.ErrNotFound) {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("read topic.conf of %v: %v", t, err)
|
|
|
|
}
|
|
|
|
// parse into filer conf object
|
|
|
|
conf := &mq_pb.ConfigureTopicResponse{}
|
|
|
|
if err = jsonpb.Unmarshal(data, conf); err != nil {
|
|
|
|
return nil, fmt.Errorf("unmarshal topic %v conf: %v", t, err)
|
|
|
|
}
|
|
|
|
return conf, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t Topic) WriteConfFile(client filer_pb.SeaweedFilerClient, conf *mq_pb.ConfigureTopicResponse) error {
|
|
|
|
var buf bytes.Buffer
|
|
|
|
filer.ProtoToText(&buf, conf)
|
|
|
|
if err := filer.SaveInsideFiler(client, t.Dir(), filer.TopicConfFile, buf.Bytes()); err != nil {
|
|
|
|
return fmt.Errorf("save topic %v conf: %v", t, err)
|
|
|
|
}
|
|
|
|
return nil
|
2022-07-17 01:49:34 +08:00
|
|
|
}
|