-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmsg_test.go
155 lines (120 loc) · 2.85 KB
/
msg_test.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
package gofast
import "fmt"
import "testing"
import "strconv"
import "encoding/binary"
func TestIsReservedMsg(t *testing.T) {
if isReservedMsg(msgStart) == false {
t.Errorf("failed for msgStart")
} else if isReservedMsg(msgEnd) == false {
t.Errorf("failed for msgEnd")
} else if isReservedMsg(msgPing) == false {
t.Errorf("failed for msgPing")
} else if isReservedMsg(msgWhoami) == false {
t.Errorf("failed for msgWhoami")
} else if isReservedMsg(msgHeartbeat) == false {
t.Errorf("failed for msgHeartbeat")
}
}
const msgTest = msgEnd + 1
const msgEmpty = msgTest + 1
const msgOnebyte = msgTest + 1
const msgLarge = msgTest + 1
//-- test message
type testMessage struct {
count uint64
}
func (msg *testMessage) ID() uint64 {
return msgTest
}
func (msg *testMessage) Encode(out []byte) []byte {
out = fixbuffer(out, msg.Size())
binary.BigEndian.PutUint64(out, msg.count)
return out[:msg.Size()]
}
func (msg *testMessage) Decode(in []byte) (n int64) {
msg.count = binary.BigEndian.Uint64(in)
return msg.Size()
}
func (msg *testMessage) Size() int64 {
return 8
}
func (msg *testMessage) String() string {
return "testMessage"
}
func (msg *testMessage) Repr() string {
return msg.String() + ":" + strconv.Itoa(int(msg.count))
}
//-- empty message
type emptyMessage struct {
}
func (msg *emptyMessage) ID() uint64 {
return msgEmpty
}
func (msg *emptyMessage) Encode(out []byte) []byte {
return out[:0]
}
func (msg *emptyMessage) Decode(in []byte) int64 {
return 0
}
func (msg *emptyMessage) Size() int64 {
return 0
}
func (msg *emptyMessage) String() string {
return "emptyMessage"
}
func (msg *emptyMessage) Repr() string {
return msg.String()
}
//-- onebyte message
type onebyteMessage struct {
field byte
}
func (msg *onebyteMessage) ID() uint64 {
return msgOnebyte
}
func (msg *onebyteMessage) Encode(out []byte) []byte {
out[0] = msg.field
return out[:1]
}
func (msg *onebyteMessage) Decode(in []byte) int64 {
msg.field = in[0]
return 1
}
func (msg *onebyteMessage) Size() int64 {
return 1
}
func (msg *onebyteMessage) String() string {
return "onebyteMessage"
}
func (msg *onebyteMessage) Repr() string {
return fmt.Sprintf("onebyteMessage.%v", msg.field)
}
//-- large message
type largeMessage struct {
data [65 * 1024]byte
}
func (msg *largeMessage) ID() uint64 {
return msgLarge
}
func (msg *largeMessage) Encode(out []byte) []byte {
out = fixbuffer(out, msg.Size())
binary.BigEndian.PutUint64(out, uint64(len(msg.data)))
n := 8
n += copy(out, msg.data[:])
return out[:n]
}
func (msg *largeMessage) Decode(in []byte) int64 {
ln, n := int(binary.BigEndian.Uint64(in)), 8
n += copy(msg.data[:], in[n:n+ln])
return int64(n)
}
func (msg *largeMessage) Size() int64 {
return 8 + int64(len(msg.data))
}
func (msg *largeMessage) String() string {
return "largeMessage"
}
func (msg *largeMessage) Repr() string {
return msg.String()
}