-
Notifications
You must be signed in to change notification settings - Fork 19
/
wire_kill_cursors.go
52 lines (36 loc) · 914 Bytes
/
wire_kill_cursors.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
package mongonet
func (m *KillCursorsMessage) HasResponse() bool {
return false
}
func (m *KillCursorsMessage) Header() MessageHeader {
return m.header
}
func (m *KillCursorsMessage) Serialize() []byte {
size := 16 /* header */ + 8 /* header */ + (8 * int(m.NumCursors))
m.header.Size = int32(size)
buf := make([]byte, size)
m.header.WriteInto(buf)
writeInt32(0, buf, 16)
writeInt32(m.NumCursors, buf, 20)
loc := 24
for _, c := range m.CursorIds {
writeInt64(c, buf, loc)
loc += 8
}
return buf
}
func parseKillCursorsMessage(header MessageHeader, buf []byte) (Message, error) {
m := &KillCursorsMessage{}
m.header = header
loc := 0
m.Reserved = readInt32(buf)
loc += 4
m.NumCursors = readInt32(buf[loc:])
loc += 4
m.CursorIds = make([]int64, int(m.NumCursors))
for i := 0; i < int(m.NumCursors); i++ {
m.CursorIds[i] = readInt64(buf[loc:])
loc += 8
}
return m, nil
}