-
Notifications
You must be signed in to change notification settings - Fork 22
/
meta.go
50 lines (39 loc) · 1.3 KB
/
meta.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
package LibraDB
import "encoding/binary"
const (
magicNumber uint32 = 0xD00DB00D
metaPageNum = 0
)
// meta is the meta page of the db
type meta struct {
// The database has a root collection that holds all the collections in the database. It is called root and the
// root property of meta holds page number containing the root of collections collection. The keys are the
// collections names and the values are the page number of the root of each collection. Then, once the collection
// and the root page are located, a search inside a collection can be made.
root pgnum
freelistPage pgnum
}
func newEmptyMeta() *meta {
return &meta{}
}
func (m *meta) serialize(buf []byte) {
pos := 0
binary.LittleEndian.PutUint32(buf[pos:], magicNumber)
pos += magicNumberSize
binary.LittleEndian.PutUint64(buf[pos:], uint64(m.root))
pos += pageNumSize
binary.LittleEndian.PutUint64(buf[pos:], uint64(m.freelistPage))
pos += pageNumSize
}
func (m *meta) deserialize(buf []byte) {
pos := 0
magicNumberRes := binary.LittleEndian.Uint32(buf[pos:])
pos += magicNumberSize
if magicNumberRes != magicNumber {
panic("The file is not a libra db file")
}
m.root = pgnum(binary.LittleEndian.Uint64(buf[pos:]))
pos += pageNumSize
m.freelistPage = pgnum(binary.LittleEndian.Uint64(buf[pos:]))
pos += pageNumSize
}