-
Notifications
You must be signed in to change notification settings - Fork 3
/
msg_rst.go
76 lines (64 loc) · 1.9 KB
/
msg_rst.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
package gtp
import (
"git.golaxy.org/framework/util/binaryutil"
"strings"
)
// Code 错误码
type Code int32
const (
Code_VersionError Code = iota + 1 // 版本错误
Code_SessionNotFound // Session未找到
Code_EncryptFailed // 加密失败
Code_AuthFailed // 鉴权失败
Code_ContinueFailed // 重连失败
Code_Reject // 拒绝连接
Code_Shutdown // 服务关闭
Code_SessionDeath // 会话过期
Code_Customize // 自定义错误码起点
)
// MsgRst 重置链路(注意:为了提高解码性能,减少内存碎片,解码string与bytes字段时均使用引用类型,引用字节池中的bytes,GC时会被归还字节池,不要直接持有此类型字段)
type MsgRst struct {
Code Code // 错误码
Message string // 错误信息
}
// Read implements io.Reader
func (m MsgRst) Read(p []byte) (int, error) {
bs := binaryutil.NewBigEndianStream(p)
if err := bs.WriteInt32(int32(m.Code)); err != nil {
return bs.BytesWritten(), err
}
if err := bs.WriteString(m.Message); err != nil {
return bs.BytesWritten(), err
}
return bs.BytesWritten(), nil
}
// Write implements io.Writer
func (m *MsgRst) Write(p []byte) (int, error) {
bs := binaryutil.NewBigEndianStream(p)
var err error
code, err := bs.ReadInt32()
if err != nil {
return bs.BytesRead(), err
}
m.Code = Code(code)
m.Message, err = bs.ReadStringRef()
if err != nil {
return bs.BytesRead(), err
}
return bs.BytesRead(), nil
}
// Size 大小
func (m MsgRst) Size() int {
return binaryutil.SizeofInt32() + binaryutil.SizeofString(m.Message)
}
// MsgId 消息Id
func (MsgRst) MsgId() MsgId {
return MsgId_Rst
}
// Clone 克隆消息对象
func (m *MsgRst) Clone() Msg {
return &MsgRst{
Code: m.Code,
Message: strings.Clone(m.Message),
}
}