-
Notifications
You must be signed in to change notification settings - Fork 10
/
block_reader.go
97 lines (85 loc) · 2.46 KB
/
block_reader.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
/*
* Copyright 2020 Saffat Technologies, Ltd.
*
* Licensed 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 unitdb
type _BlockReader struct {
indexBlock _IndexBlock
fs *_FileSet
indexFile, dataFile *_File
offset int64
}
func newBlockReader(fs *_FileSet) *_BlockReader {
r := &_BlockReader{fs: fs}
indexFile, err := fs.getFile(_FileDesc{fileType: typeIndex})
if err != nil {
return r
}
r.indexFile = indexFile
dataFile, err := fs.getFile(_FileDesc{fileType: typeData})
if err != nil {
return nil
}
r.dataFile = dataFile
return r
}
func (r *_BlockReader) readIndexBlock() (_IndexBlock, error) {
buf, err := r.indexFile.slice(r.offset, r.offset+int64(blockSize))
if err != nil {
return _IndexBlock{}, err
}
if err := r.indexBlock.unmarshalBinary(buf); err != nil {
return _IndexBlock{}, err
}
return r.indexBlock, nil
}
func (r *_BlockReader) readEntry(seq uint64) (_IndexEntry, error) {
bIdx := blockIndex(seq)
r.offset = blockOffset(bIdx)
b, err := r.readIndexBlock()
if err != nil {
return _IndexEntry{}, err
}
entryIdx := -1
for i := 0; i < entriesPerIndexBlock; i++ {
e := b.entries[i]
if e.seq == seq { //topic exist in db
if e.msgOffset == -1 {
return _IndexEntry{}, errMsgIDDeleted
}
entryIdx = i
break
}
}
if entryIdx == -1 {
return _IndexEntry{}, errEntryInvalid
}
return b.entries[entryIdx], nil
}
func (r *_BlockReader) readMessage(e _IndexEntry) ([]byte, []byte, error) {
if e.cache != nil {
return e.cache[:idSize], e.cache[e.topicSize+idSize:], nil
}
message, err := r.dataFile.slice(e.msgOffset, e.msgOffset+int64(e.mSize()))
if err != nil {
return nil, nil, err
}
return message[:idSize], message[e.topicSize+idSize:], nil
}
func (r *_BlockReader) readTopic(e _IndexEntry) ([]byte, error) {
if e.cache != nil {
return e.cache[idSize : e.topicSize+idSize], nil
}
return r.dataFile.slice(e.msgOffset+int64(idSize), e.msgOffset+int64(e.topicSize)+int64(idSize))
}