forked from dgraph-io/dgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
keys.go
296 lines (254 loc) · 6.35 KB
/
keys.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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
/*
* Copyright (C) 2017 Dgraph Labs, Inc. and Contributors
*
* 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 x
import (
"encoding/binary"
"fmt"
"math"
)
const (
// TODO(pawan) - Make this 2 bytes long. Right now ParsedKey has byteType and
// bytePrefix. Change it so that it just has one field which has all the information.
ByteData = byte(0x00)
ByteIndex = byte(0x02)
ByteReverse = byte(0x04)
ByteCount = byte(0x08)
ByteCountRev = ByteCount | ByteReverse
// same prefix for data, index and reverse keys so that relative order of data doesn't change
// keys of same attributes are located together
defaultPrefix = byte(0x00)
byteSchema = byte(0x01)
)
func writeAttr(buf []byte, attr string) []byte {
AssertTrue(len(attr) < math.MaxUint16)
binary.BigEndian.PutUint16(buf[:2], uint16(len(attr)))
rest := buf[2:]
AssertTrue(len(attr) == copy(rest, attr[:]))
return rest[len(attr):]
}
// SchemaKey returns schema key for given attribute,
// schema keys are stored separately with unique prefix,
// since we need to iterate over all schema keys
func SchemaKey(attr string) []byte {
buf := make([]byte, 1+2+len(attr))
buf[0] = byteSchema
rest := buf[1:]
writeAttr(rest, attr)
return buf
}
func DataKey(attr string, uid uint64) []byte {
buf := make([]byte, 2+len(attr)+2+8)
buf[0] = defaultPrefix
rest := buf[1:]
rest = writeAttr(rest, attr)
rest[0] = ByteData
rest = rest[1:]
binary.BigEndian.PutUint64(rest, uid)
return buf
}
func ReverseKey(attr string, uid uint64) []byte {
buf := make([]byte, 2+len(attr)+2+8)
buf[0] = defaultPrefix
rest := buf[1:]
rest = writeAttr(rest, attr)
rest[0] = ByteReverse
rest = rest[1:]
binary.BigEndian.PutUint64(rest, uid)
return buf
}
func IndexKey(attr, term string) []byte {
buf := make([]byte, 2+len(attr)+2+len(term))
buf[0] = defaultPrefix
rest := buf[1:]
rest = writeAttr(rest, attr)
rest[0] = ByteIndex
rest = rest[1:]
AssertTrue(len(term) == copy(rest, term[:]))
return buf
}
func CountKey(attr string, count uint32, reverse bool) []byte {
buf := make([]byte, 1+2+len(attr)+1+4)
buf[0] = defaultPrefix
rest := buf[1:]
rest = writeAttr(rest, attr)
if reverse {
rest[0] = ByteCountRev
} else {
rest[0] = ByteCount
}
rest = rest[1:]
binary.BigEndian.PutUint32(rest, count)
return buf
}
type ParsedKey struct {
byteType byte
Attr string
Uid uint64
Term string
Count uint32
bytePrefix byte
}
func (p ParsedKey) IsData() bool {
return p.byteType == ByteData
}
func (p ParsedKey) IsReverse() bool {
return p.byteType == ByteReverse
}
func (p ParsedKey) IsCount() bool {
return p.byteType == ByteCount ||
p.byteType == ByteCountRev
}
func (p ParsedKey) IsIndex() bool {
return p.byteType == ByteIndex
}
func (p ParsedKey) IsSchema() bool {
return p.bytePrefix == byteSchema
}
func (p ParsedKey) IsType(typ byte) bool {
switch typ {
case ByteCount, ByteCountRev:
return p.IsCount()
case ByteReverse:
return p.IsReverse()
case ByteIndex:
return p.IsIndex()
case ByteData:
return p.IsData()
default:
}
return false
}
func (p ParsedKey) SkipPredicate() []byte {
buf := make([]byte, 2+len(p.Attr)+2)
buf[0] = p.bytePrefix
rest := buf[1:]
k := writeAttr(rest, p.Attr)
AssertTrue(len(k) == 1)
k[0] = 0xFF
return buf
}
func (p ParsedKey) SkipRangeOfSameType() []byte {
buf := make([]byte, 2+len(p.Attr)+2)
buf[0] = p.bytePrefix
rest := buf[1:]
k := writeAttr(rest, p.Attr)
AssertTrue(len(k) == 1)
k[0] = p.byteType + 1
return buf
}
func (p ParsedKey) SkipSchema() []byte {
var buf [1]byte
buf[0] = byteSchema + 1
return buf[:]
}
// DataPrefix returns the prefix for data keys.
func (p ParsedKey) DataPrefix() []byte {
buf := make([]byte, 2+len(p.Attr)+2)
buf[0] = p.bytePrefix
rest := buf[1:]
k := writeAttr(rest, p.Attr)
AssertTrue(len(k) == 1)
k[0] = ByteData
return buf
}
// IndexPrefix returns the prefix for index keys.
func (p ParsedKey) IndexPrefix() []byte {
buf := make([]byte, 2+len(p.Attr)+2)
buf[0] = p.bytePrefix
rest := buf[1:]
k := writeAttr(rest, p.Attr)
AssertTrue(len(k) == 1)
k[0] = ByteIndex
return buf
}
// ReversePrefix returns the prefix for index keys.
func (p ParsedKey) ReversePrefix() []byte {
buf := make([]byte, 2+len(p.Attr)+2)
buf[0] = p.bytePrefix
rest := buf[1:]
k := writeAttr(rest, p.Attr)
AssertTrue(len(k) == 1)
k[0] = ByteReverse
return buf
}
// CountPrefix returns the prefix for count keys.
func (p ParsedKey) CountPrefix(reverse bool) []byte {
buf := make([]byte, 1+2+len(p.Attr)+1)
buf[0] = p.bytePrefix
rest := buf[1:]
k := writeAttr(rest, p.Attr)
AssertTrue(len(k) == 1)
if reverse {
k[0] = ByteCountRev
} else {
k[0] = ByteCount
}
return buf
}
// SchemaPrefix returns the prefix for Schema keys.
func SchemaPrefix() []byte {
var buf [1]byte
buf[0] = byteSchema
return buf[:]
}
// PredicatePrefix returns the prefix for all keys belonging
// to this predicate except schema key.
func PredicatePrefix(predicate string) []byte {
buf := make([]byte, 1+2+len(predicate))
buf[0] = defaultPrefix
k := writeAttr(buf[1:], predicate)
AssertTrue(len(k) == 0)
return buf
}
func Parse(key []byte) *ParsedKey {
p := &ParsedKey{}
p.bytePrefix = key[0]
sz := int(binary.BigEndian.Uint16(key[1:3]))
k := key[3:]
p.Attr = string(k[:sz])
k = k[sz:]
switch p.bytePrefix {
case byteSchema:
return p
default:
}
p.byteType = k[0]
k = k[1:]
switch p.byteType {
case ByteData, ByteReverse:
if len(k) < 8 {
if Config.DebugMode {
fmt.Printf("Error: Uid length < 8 for key: %q, parsed key: %+v\n", key, p)
}
return nil
}
p.Uid = binary.BigEndian.Uint64(k)
case ByteIndex:
p.Term = string(k)
case ByteCount, ByteCountRev:
if len(k) < 4 {
if Config.DebugMode {
fmt.Printf("Error: Count length < 4 for key: %q, parsed key: %+v\n", key, p)
}
return nil
}
p.Count = binary.BigEndian.Uint32(k)
default:
// Some other data type.
return nil
}
return p
}