forked from rosedblabs/rosedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hash.go
438 lines (393 loc) · 11.8 KB
/
hash.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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
package rosedb
import (
"bytes"
"errors"
"github.com/flower-corp/rosedb/ds/art"
"github.com/flower-corp/rosedb/logfile"
"github.com/flower-corp/rosedb/logger"
"github.com/flower-corp/rosedb/util"
"math"
"math/rand"
"regexp"
"strconv"
"time"
)
// HSet sets field in the hash stored at key to value. If key does not exist, a new key holding a hash is created.
// If field already exists in the hash, it is overwritten.
// Return num of elements in hash of the specified key.
// Multiple field-value pair is accepted. Parameter order should be like "key", "field", "value", "field", "value"...
func (db *RoseDB) HSet(key []byte, args ...[]byte) error {
db.hashIndex.mu.Lock()
defer db.hashIndex.mu.Unlock()
if len(args) == 0 || len(args)&1 == 1 {
return ErrWrongNumberOfArgs
}
if db.hashIndex.trees[string(key)] == nil {
db.hashIndex.trees[string(key)] = art.NewART()
}
idxTree := db.hashIndex.trees[string(key)]
// add multiple field value pairs
for i := 0; i < len(args); i += 2 {
field, value := args[i], args[i+1]
hashKey := db.encodeKey(key, field)
entry := &logfile.LogEntry{Key: hashKey, Value: value}
valuePos, err := db.writeLogEntry(entry, Hash)
if err != nil {
return err
}
ent := &logfile.LogEntry{Key: field, Value: value}
_, size := logfile.EncodeEntry(entry)
valuePos.entrySize = size
err = db.updateIndexTree(idxTree, ent, valuePos, true, Hash)
if err != nil {
return err
}
}
return nil
}
// HSetNX sets the given value only if the field doesn't exist.
// If the key doesn't exist, new hash is created.
// If field already exist, HSetNX doesn't have side effect.
func (db *RoseDB) HSetNX(key, field, value []byte) (bool, error) {
db.hashIndex.mu.Lock()
defer db.hashIndex.mu.Unlock()
if db.hashIndex.trees[string(key)] == nil {
db.hashIndex.trees[string(key)] = art.NewART()
}
idxTree := db.hashIndex.trees[string(key)]
val, err := db.getVal(idxTree, field, Hash)
// field exists in db
if val != nil {
return false, nil
}
hashKey := db.encodeKey(key, field)
ent := &logfile.LogEntry{Key: hashKey, Value: value}
valuePos, err := db.writeLogEntry(ent, Hash)
if err != nil {
return false, err
}
entry := &logfile.LogEntry{Key: field, Value: value}
_, size := logfile.EncodeEntry(ent)
valuePos.entrySize = size
err = db.updateIndexTree(idxTree, entry, valuePos, true, Hash)
if err != nil {
return false, err
}
return true, nil
}
// HGet returns the value associated with field in the hash stored at key.
func (db *RoseDB) HGet(key, field []byte) ([]byte, error) {
db.hashIndex.mu.RLock()
defer db.hashIndex.mu.RUnlock()
if db.hashIndex.trees[string(key)] == nil {
return nil, nil
}
idxTree := db.hashIndex.trees[string(key)]
val, err := db.getVal(idxTree, field, Hash)
if err == ErrKeyNotFound {
return nil, nil
}
return val, err
}
// HMGet returns the values associated with the specified fields in the hash stored at the key.
// For every field that does not exist in the hash, a nil value is returned.
// Because non-existing keys are treated as empty hashes,
// running HMGET against a non-existing key will return a list of nil values.
func (db *RoseDB) HMGet(key []byte, fields ...[]byte) (vals [][]byte, err error) {
db.hashIndex.mu.RLock()
defer db.hashIndex.mu.RUnlock()
length := len(fields)
// key not exist
if db.hashIndex.trees[string(key)] == nil {
for i := 0; i < length; i++ {
vals = append(vals, nil)
}
return vals, nil
}
// key exist
idxTree := db.hashIndex.trees[string(key)]
for _, field := range fields {
val, err := db.getVal(idxTree, field, Hash)
if err == ErrKeyNotFound {
vals = append(vals, nil)
} else {
vals = append(vals, val)
}
}
return
}
// HDel removes the specified fields from the hash stored at key.
// Specified fields that do not exist within this hash are ignored.
// If key does not exist, it is treated as an empty hash and this command returns false.
func (db *RoseDB) HDel(key []byte, fields ...[]byte) (int, error) {
db.hashIndex.mu.Lock()
defer db.hashIndex.mu.Unlock()
if db.hashIndex.trees[string(key)] == nil {
return 0, nil
}
idxTree := db.hashIndex.trees[string(key)]
var count int
for _, field := range fields {
hashKey := db.encodeKey(key, field)
entry := &logfile.LogEntry{Key: hashKey, Type: logfile.TypeDelete}
valuePos, err := db.writeLogEntry(entry, Hash)
if err != nil {
return 0, err
}
val, updated := idxTree.Delete(field)
if updated {
count++
}
db.sendDiscard(val, updated, Hash)
// The deleted entry itself is also invalid.
_, size := logfile.EncodeEntry(entry)
node := &indexNode{fid: valuePos.fid, entrySize: size}
select {
case db.discards[Hash].valChan <- node:
default:
logger.Warn("send to discard chan fail")
}
}
return count, nil
}
// HExists returns whether the field exists in the hash stored at key.
// If the hash contains field, it returns true.
// If the hash does not contain field, or key does not exist, it returns false.
func (db *RoseDB) HExists(key, field []byte) (bool, error) {
db.hashIndex.mu.RLock()
defer db.hashIndex.mu.RUnlock()
if db.hashIndex.trees[string(key)] == nil {
return false, nil
}
idxTree := db.hashIndex.trees[string(key)]
val, err := db.getVal(idxTree, field, Hash)
if err != nil && err != ErrKeyNotFound {
return false, err
}
return val != nil, nil
}
// HLen returns the number of fields contained in the hash stored at key.
func (db *RoseDB) HLen(key []byte) int {
db.hashIndex.mu.RLock()
defer db.hashIndex.mu.RUnlock()
if db.hashIndex.trees[string(key)] == nil {
return 0
}
idxTree := db.hashIndex.trees[string(key)]
return idxTree.Size()
}
// HKeys returns all field names in the hash stored at key.
func (db *RoseDB) HKeys(key []byte) ([][]byte, error) {
db.hashIndex.mu.RLock()
defer db.hashIndex.mu.RUnlock()
var keys [][]byte
tree, ok := db.hashIndex.trees[string(key)]
if !ok {
return keys, nil
}
iter := tree.Iterator()
for iter.HasNext() {
node, err := iter.Next()
if err != nil {
return nil, err
}
keys = append(keys, node.Key())
}
return keys, nil
}
// HVals return all values in the hash stored at key.
func (db *RoseDB) HVals(key []byte) ([][]byte, error) {
db.hashIndex.mu.RLock()
defer db.hashIndex.mu.RUnlock()
var values [][]byte
tree, ok := db.hashIndex.trees[string(key)]
if !ok {
return values, nil
}
iter := tree.Iterator()
for iter.HasNext() {
node, err := iter.Next()
if err != nil {
return nil, err
}
val, err := db.getVal(tree, node.Key(), Hash)
if err != nil && err != ErrKeyNotFound {
return nil, err
}
values = append(values, val)
}
return values, nil
}
// HGetAll return all fields and values of the hash stored at key.
func (db *RoseDB) HGetAll(key []byte) ([][]byte, error) {
db.hashIndex.mu.RLock()
defer db.hashIndex.mu.RUnlock()
tree, ok := db.hashIndex.trees[string(key)]
if !ok {
return [][]byte{}, nil
}
var index int
pairs := make([][]byte, tree.Size()*2)
iter := tree.Iterator()
for iter.HasNext() {
node, err := iter.Next()
if err != nil {
return nil, err
}
field := node.Key()
val, err := db.getVal(tree, field, Hash)
if err != nil && err != ErrKeyNotFound {
return nil, err
}
pairs[index], pairs[index+1] = field, val
index += 2
}
return pairs[:index], nil
}
// HStrLen returns the string length of the value associated with field in the hash stored at key.
// If the key or the field do not exist, 0 is returned.
func (db *RoseDB) HStrLen(key, field []byte) int {
db.hashIndex.mu.RLock()
defer db.hashIndex.mu.RUnlock()
if db.hashIndex.trees[string(key)] == nil {
return 0
}
idxTree := db.hashIndex.trees[string(key)]
val, err := db.getVal(idxTree, field, Hash)
if err == ErrKeyNotFound {
return 0
}
return len(val)
}
// HScan iterates over a specified key of type Hash and finds its fields and values.
// Parameter prefix will match field`s prefix, and pattern is a regular expression that also matchs the field.
// Parameter count limits the number of keys, a nil slice will be returned if count is not a positive number.
// The returned values will be a mixed data of fields and values, like [field1, value1, field2, value2, etc...].
func (db *RoseDB) HScan(key []byte, prefix []byte, pattern string, count int) ([][]byte, error) {
if count <= 0 {
return nil, nil
}
db.hashIndex.mu.RLock()
defer db.hashIndex.mu.RUnlock()
if db.hashIndex.trees[string(key)] == nil {
return nil, nil
}
idxTree := db.hashIndex.trees[string(key)]
fields := idxTree.PrefixScan(prefix, count)
if len(fields) == 0 {
return nil, nil
}
var reg *regexp.Regexp
if pattern != "" {
var err error
if reg, err = regexp.Compile(pattern); err != nil {
return nil, err
}
}
values := make([][]byte, 2*len(fields))
var index int
for _, field := range fields {
if reg != nil && !reg.Match(field) {
continue
}
val, err := db.getVal(idxTree, field, Hash)
if err != nil && err != ErrKeyNotFound {
return nil, err
}
values[index], values[index+1] = field, val
index += 2
}
return values, nil
}
// HIncrBy increments the number stored at field in the hash stored at key by increment.
// If key does not exist, a new key holding a hash is created. If field does not exist
// the value is set to 0 before the operation is performed. The range of values supported
// by HINCRBY is limited to 64bit signed integers.
func (db *RoseDB) HIncrBy(key, field []byte, incr int64) (int64, error) {
db.hashIndex.mu.Lock()
defer db.hashIndex.mu.Unlock()
if db.hashIndex.trees[string(key)] == nil {
db.hashIndex.trees[string(key)] = art.NewART()
}
idxTree := db.hashIndex.trees[string(key)]
val, err := db.getVal(idxTree, field, Hash)
if err != nil && !errors.Is(err, ErrKeyNotFound) {
return 0, err
}
if bytes.Equal(val, nil) {
val = []byte("0")
}
valInt64, err := util.StrToInt64(string(val))
if err != nil {
return 0, ErrWrongValueType
}
if (incr < 0 && valInt64 < 0 && incr < (math.MinInt64-valInt64)) ||
(incr > 0 && valInt64 > 0 && incr > (math.MaxInt64-valInt64)) {
return 0, ErrIntegerOverflow
}
valInt64 += incr
val = []byte(strconv.FormatInt(valInt64, 10))
hashKey := db.encodeKey(key, field)
ent := &logfile.LogEntry{Key: hashKey, Value: val}
valuePos, err := db.writeLogEntry(ent, Hash)
if err != nil {
return 0, err
}
entry := &logfile.LogEntry{Key: field, Value: val}
_, size := logfile.EncodeEntry(ent)
valuePos.entrySize = size
err = db.updateIndexTree(idxTree, entry, valuePos, true, Hash)
if err != nil {
return 0, err
}
return valInt64, nil
}
// HRandField returns a random field from the hash value stored at key, when called with just
// the key argument. If the provided count argument is positive, return an array of distinct
// fields. If called with a negative count, the behavior changes and the command is allowed
// to return the same field multiple times.
func (db *RoseDB) HRandField(key []byte, count int, withValues bool) ([][]byte, error) {
if count == 0 {
return [][]byte{}, nil
}
var values [][]byte
var err error
var pairLength = 1
if !withValues {
values, err = db.HKeys(key)
} else {
pairLength = 2
values, err = db.HGetAll(key)
}
if err != nil {
return [][]byte{}, err
}
if len(values) == 0 {
return [][]byte{}, nil
}
rnd := rand.New(rand.NewSource(time.Now().UnixNano()))
pairCount := len(values) / pairLength
// return an array of distinct fields
if count > 0 {
// return all fields
if count >= pairCount {
return values, nil
}
// reduce diff count to avoid creating duplicates
var noDupValues = values
diff := pairCount - count
for i := 0; i < diff; i++ {
rndIdx := rnd.Intn(len(noDupValues)/pairLength) * pairLength
noDupValues = append(noDupValues[:rndIdx], noDupValues[rndIdx+pairLength:]...)
}
return noDupValues, nil
}
// return the same field multiple times
count = -count
var dupValues [][]byte
for i := 0; i < count; i++ {
rndIdx := rnd.Intn(pairCount) * pairLength
dupValues = append(dupValues, values[rndIdx:rndIdx+pairLength]...)
}
return dupValues, nil
}