forked from livegrep/livegrep
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdump_load.h
59 lines (46 loc) · 1.38 KB
/
dump_load.h
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
/********************************************************************
* livegrep -- dump_load.h
* Copyright (c) 2011-2013 Nelson Elhage
*
* This program is free software. You may use, redistribute, and/or
* modify it under the terms listed in the COPYING file.
********************************************************************/
#ifndef CODESEARCH_DUMP_LOAD_H
#define CODESEARCH_DUMP_LOAD_H
#include <stdint.h>
const uint32_t kIndexMagic = 0xc0d35eac;
const uint32_t kIndexVersion = 16;
// 16k is the page size on Apple M1 macs, which is the largest page
// size of supported platforms. We use a consistent page size
// everywhere for simplicity
const uint32_t kPageSize = (1 << 14);
struct index_header {
uint32_t magic;
uint32_t version;
uint32_t chunk_size;
uint64_t timestamp;
uint64_t name_off;
uint32_t ntrees;
uint64_t refs_off;
uint32_t nfiles;
uint64_t files_off;
uint32_t nchunks;
uint64_t chunks_off;
uint32_t ncontent;
uint64_t content_off;
uint32_t nfiledata;
uint64_t filedata_off;
uint64_t filesuffixes_off;
uint64_t filepos_off;
} __attribute__((packed));
struct chunk_header {
uint64_t data_off;
uint64_t files_off;
uint32_t size;
uint32_t nfiles;
} __attribute__((packed));
struct content_chunk_header {
uint64_t file_off;
uint32_t size;
} __attribute__((packed));
#endif