Files
wehub-resource-sync 498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:31:17 +08:00

78 lines
2.4 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
}
// ReplicateHeader is the header of replicate message.
type ReplicateHeader struct {
ClusterID string
MessageID MessageID
LastConfirmedMessageID MessageID
TimeTick uint64
VChannel string
}
// ClearReplicateHeader removes replicate header from a mutable message.
// Used during force promote fix to re-append as primary messages.
func ClearReplicateHeader(msg MutableMessage) MutableMessage {
if msg == nil {
return nil
}
if impl, ok := msg.(*messageImpl); ok {
impl.properties.Delete(messageReplicateMesssageHeader)
return impl
}
raw := msg.Properties().ToRawMap()
delete(raw, messageReplicateMesssageHeader)
return NewMutableMessageBeforeAppend(msg.Payload(), raw)
}