Zhen Ye cbe4c3d231
enhance: get cchannel before build message (#44229)
issue: #43897

- support never expire txn message.

Signed-off-by: chyezh <chyezh@outlook.com>
2025-09-10 11:09:57 +08:00

54 lines
1.7 KiB
Go

package message
import (
"reflect"
"google.golang.org/protobuf/proto"
)
// AsImmutableTxnMessage converts an ImmutableMessage to ImmutableTxnMessage
var AsImmutableTxnMessage = func(msg ImmutableMessage) ImmutableTxnMessage {
underlying, ok := msg.(*immutableTxnMessageImpl)
if !ok {
return nil
}
return underlying
}
// NewMessageTypeWithVersion creates a new MessageTypeWithVersion.
func NewMessageTypeWithVersion(t MessageType, v Version) MessageTypeWithVersion {
return MessageTypeWithVersion{MessageType: t, Version: v}
}
// GetSerializeType returns the specialized message type for the given message type and version.
func GetSerializeType(mv MessageTypeWithVersion) (MessageSpecializedType, bool) {
if mv.Version == VersionOld {
// There's some old messages that is coming from old arch of msgstream.
// We need to convert them to versionV1 to find the specialized type.
mv.Version = VersionV1
}
typ, ok := messageTypeVersionSpecializedMap[mv]
return typ, ok
}
// GetMessageTypeWithVersion returns the message type with version for the given message type and version.
func GetMessageTypeWithVersion[H proto.Message, B proto.Message]() (MessageTypeWithVersion, bool) {
var h H
var b B
styp := MessageSpecializedType{
HeaderType: reflect.TypeOf(h),
BodyType: reflect.TypeOf(b),
}
mv, ok := messageSpecializedTypeVersionMap[styp]
return mv, ok
}
// MustGetMessageTypeWithVersion returns the message type with version for the given message type and version, panics on error.
func MustGetMessageTypeWithVersion[H proto.Message, B proto.Message]() MessageTypeWithVersion {
mv, ok := GetMessageTypeWithVersion[H, B]()
if !ok {
panic("message type not found")
}
return mv
}