/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package codec import ( "github.com/fagongzi/goetty" ) import ( "github.com/seata/seata-go/pkg/protocol/message" ) func init() { GetCodecManager().RegisterCodec(CodeTypeSeata, &RegisterRMRequestCodec{}) } type RegisterRMRequestCodec struct { } func (g *RegisterRMRequestCodec) Decode(in []byte) interface{} { buf := goetty.NewByteBuf(len(in)) buf.Write(in) msg := message.RegisterRMRequest{} length := ReadUInt16(buf) if length > 0 { bytes := make([]byte, length) msg.Version = string(Read(buf, bytes)) } length = ReadUInt16(buf) if length > 0 { bytes := make([]byte, length) msg.ApplicationId = string(Read(buf, bytes)) } length = ReadUInt16(buf) if length > 0 { bytes := make([]byte, length) msg.TransactionServiceGroup = string(Read(buf, bytes)) } length = ReadUInt16(buf) if length > 0 { bytes := make([]byte, length) msg.ExtraData = Read(buf, bytes) } length32 := ReadUInt32(buf) if length32 > 0 { bytes := make([]byte, length32) msg.ResourceIds = string(Read(buf, bytes)) } return msg } func (c *RegisterRMRequestCodec) Encode(in interface{}) []byte { req := in.(message.RegisterRMRequest) buf := goetty.NewByteBuf(0) Write16String(req.Version, buf) Write16String(req.ApplicationId, buf) Write16String(req.TransactionServiceGroup, buf) Write16String(string(req.ExtraData), buf) Write16String(req.ResourceIds, buf) return buf.RawBuf() } func (g *RegisterRMRequestCodec) GetMessageType() message.MessageType { return message.MessageType_RegRm }