-
Notifications
You must be signed in to change notification settings - Fork 19
/
wire_reply.go
63 lines (48 loc) · 1.13 KB
/
wire_reply.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
package mongonet
func (m *ReplyMessage) HasResponse() bool {
return false // because its a response
}
func (m *ReplyMessage) Header() MessageHeader {
return m.header
}
func (m *ReplyMessage) Serialize() []byte {
size := 16 /* header */ + 20 /* reply header */
for _, d := range m.Docs {
size += int(d.Size)
}
m.header.Size = int32(size)
buf := make([]byte, size)
m.header.WriteInto(buf)
writeInt32(m.Flags, buf, 16)
writeInt64(m.CursorId, buf, 20)
writeInt32(m.StartingFrom, buf, 28)
writeInt32(m.NumberReturned, buf, 32)
loc := 36
for _, d := range m.Docs {
copy(buf[loc:], d.BSON)
loc += len(d.BSON)
}
return buf
}
func parseReplyMessage(header MessageHeader, buf []byte) (Message, error) {
rm := &ReplyMessage{}
rm.header = header
loc := 0
rm.Flags = readInt32(buf[loc:])
loc += 4
rm.CursorId = readInt64(buf[loc:])
loc += 8
rm.StartingFrom = readInt32(buf[loc:])
loc += 4
rm.NumberReturned = readInt32(buf[loc:])
loc += 4
for loc < len(buf) {
doc, err := parseSimpleBSON(buf[loc:])
if err != nil {
return nil, err
}
rm.Docs = append(rm.Docs, doc)
loc += int(doc.Size)
}
return rm, nil
}