forked from HDT3213/godis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhash.go
414 lines (366 loc) · 9.54 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
package godis
import (
Dict "github.com/hdt3213/godis/datastruct/dict"
"github.com/hdt3213/godis/interface/redis"
"github.com/hdt3213/godis/redis/reply"
"github.com/shopspring/decimal"
"strconv"
)
func (db *DB) getAsDict(key string) (Dict.Dict, reply.ErrorReply) {
entity, exists := db.GetEntity(key)
if !exists {
return nil, nil
}
dict, ok := entity.Data.(Dict.Dict)
if !ok {
return nil, &reply.WrongTypeErrReply{}
}
return dict, nil
}
func (db *DB) getOrInitDict(key string) (dict Dict.Dict, inited bool, errReply reply.ErrorReply) {
dict, errReply = db.getAsDict(key)
if errReply != nil {
return nil, false, errReply
}
inited = false
if dict == nil {
dict = Dict.MakeSimple()
db.PutEntity(key, &DataEntity{
Data: dict,
})
inited = true
}
return dict, inited, nil
}
// execHSet sets field in hash table
func execHSet(db *DB, args [][]byte) redis.Reply {
// parse args
key := string(args[0])
field := string(args[1])
value := args[2]
// get or init entity
dict, _, errReply := db.getOrInitDict(key)
if errReply != nil {
return errReply
}
result := dict.Put(field, value)
db.AddAof(makeAofCmd("hset", args))
return reply.MakeIntReply(int64(result))
}
func undoHSet(db *DB, args [][]byte) []CmdLine {
key := string(args[0])
field := string(args[1])
return rollbackHashFields(db, key, field)
}
// execHSetNX sets field in hash table only if field not exists
func execHSetNX(db *DB, args [][]byte) redis.Reply {
// parse args
key := string(args[0])
field := string(args[1])
value := args[2]
dict, _, errReply := db.getOrInitDict(key)
if errReply != nil {
return errReply
}
result := dict.PutIfAbsent(field, value)
if result > 0 {
db.AddAof(makeAofCmd("hsetnx", args))
}
return reply.MakeIntReply(int64(result))
}
// execHGet gets field value of hash table
func execHGet(db *DB, args [][]byte) redis.Reply {
// parse args
key := string(args[0])
field := string(args[1])
// get entity
dict, errReply := db.getAsDict(key)
if errReply != nil {
return errReply
}
if dict == nil {
return &reply.NullBulkReply{}
}
raw, exists := dict.Get(field)
if !exists {
return &reply.NullBulkReply{}
}
value, _ := raw.([]byte)
return reply.MakeBulkReply(value)
}
// execHExists checks if a hash field exists
func execHExists(db *DB, args [][]byte) redis.Reply {
// parse args
key := string(args[0])
field := string(args[1])
// get entity
dict, errReply := db.getAsDict(key)
if errReply != nil {
return errReply
}
if dict == nil {
return reply.MakeIntReply(0)
}
_, exists := dict.Get(field)
if exists {
return reply.MakeIntReply(1)
}
return reply.MakeIntReply(0)
}
// execHDel deletes a hash field
func execHDel(db *DB, args [][]byte) redis.Reply {
// parse args
key := string(args[0])
fields := make([]string, len(args)-1)
fieldArgs := args[1:]
for i, v := range fieldArgs {
fields[i] = string(v)
}
// get entity
dict, errReply := db.getAsDict(key)
if errReply != nil {
return errReply
}
if dict == nil {
return reply.MakeIntReply(0)
}
deleted := 0
for _, field := range fields {
result := dict.Remove(field)
deleted += result
}
if dict.Len() == 0 {
db.Remove(key)
}
if deleted > 0 {
db.AddAof(makeAofCmd("hdel", args))
}
return reply.MakeIntReply(int64(deleted))
}
func undoHDel(db *DB, args [][]byte) []CmdLine {
key := string(args[0])
fields := make([]string, len(args)-1)
fieldArgs := args[1:]
for i, v := range fieldArgs {
fields[i] = string(v)
}
return rollbackHashFields(db, key, fields...)
}
// execHLen gets number of fields in hash table
func execHLen(db *DB, args [][]byte) redis.Reply {
// parse args
key := string(args[0])
dict, errReply := db.getAsDict(key)
if errReply != nil {
return errReply
}
if dict == nil {
return reply.MakeIntReply(0)
}
return reply.MakeIntReply(int64(dict.Len()))
}
// execHMSet sets multi fields in hash table
func execHMSet(db *DB, args [][]byte) redis.Reply {
// parse args
if len(args)%2 != 1 {
return reply.MakeSyntaxErrReply()
}
key := string(args[0])
size := (len(args) - 1) / 2
fields := make([]string, size)
values := make([][]byte, size)
for i := 0; i < size; i++ {
fields[i] = string(args[2*i+1])
values[i] = args[2*i+2]
}
// get or init entity
dict, _, errReply := db.getOrInitDict(key)
if errReply != nil {
return errReply
}
// put data
for i, field := range fields {
value := values[i]
dict.Put(field, value)
}
db.AddAof(makeAofCmd("hmset", args))
return &reply.OkReply{}
}
func undoHMSet(db *DB, args [][]byte) []CmdLine {
key := string(args[0])
size := (len(args) - 1) / 2
fields := make([]string, size)
for i := 0; i < size; i++ {
fields[i] = string(args[2*i+1])
}
return rollbackHashFields(db, key, fields...)
}
// execHMGet gets multi fields in hash table
func execHMGet(db *DB, args [][]byte) redis.Reply {
key := string(args[0])
size := len(args) - 1
fields := make([]string, size)
for i := 0; i < size; i++ {
fields[i] = string(args[i+1])
}
// get entity
result := make([][]byte, size)
dict, errReply := db.getAsDict(key)
if errReply != nil {
return errReply
}
if dict == nil {
return reply.MakeMultiBulkReply(result)
}
for i, field := range fields {
value, ok := dict.Get(field)
if !ok {
result[i] = nil
} else {
bytes, _ := value.([]byte)
result[i] = bytes
}
}
return reply.MakeMultiBulkReply(result)
}
// execHKeys gets all field names in hash table
func execHKeys(db *DB, args [][]byte) redis.Reply {
key := string(args[0])
dict, errReply := db.getAsDict(key)
if errReply != nil {
return errReply
}
if dict == nil {
return &reply.EmptyMultiBulkReply{}
}
fields := make([][]byte, dict.Len())
i := 0
dict.ForEach(func(key string, val interface{}) bool {
fields[i] = []byte(key)
i++
return true
})
return reply.MakeMultiBulkReply(fields[:i])
}
// execHVals gets all field value in hash table
func execHVals(db *DB, args [][]byte) redis.Reply {
key := string(args[0])
// get entity
dict, errReply := db.getAsDict(key)
if errReply != nil {
return errReply
}
if dict == nil {
return &reply.EmptyMultiBulkReply{}
}
values := make([][]byte, dict.Len())
i := 0
dict.ForEach(func(key string, val interface{}) bool {
values[i], _ = val.([]byte)
i++
return true
})
return reply.MakeMultiBulkReply(values[:i])
}
// execHGetAll gets all key-value entries in hash table
func execHGetAll(db *DB, args [][]byte) redis.Reply {
key := string(args[0])
// get entity
dict, errReply := db.getAsDict(key)
if errReply != nil {
return errReply
}
if dict == nil {
return &reply.EmptyMultiBulkReply{}
}
size := dict.Len()
result := make([][]byte, size*2)
i := 0
dict.ForEach(func(key string, val interface{}) bool {
result[i] = []byte(key)
i++
result[i], _ = val.([]byte)
i++
return true
})
return reply.MakeMultiBulkReply(result[:i])
}
// execHIncrBy increments the integer value of a hash field by the given number
func execHIncrBy(db *DB, args [][]byte) redis.Reply {
key := string(args[0])
field := string(args[1])
rawDelta := string(args[2])
delta, err := strconv.ParseInt(rawDelta, 10, 64)
if err != nil {
return reply.MakeErrReply("ERR value is not an integer or out of range")
}
dict, _, errReply := db.getOrInitDict(key)
if errReply != nil {
return errReply
}
value, exists := dict.Get(field)
if !exists {
dict.Put(field, args[2])
db.AddAof(makeAofCmd("hincrby", args))
return reply.MakeBulkReply(args[2])
}
val, err := strconv.ParseInt(string(value.([]byte)), 10, 64)
if err != nil {
return reply.MakeErrReply("ERR hash value is not an integer")
}
val += delta
bytes := []byte(strconv.FormatInt(val, 10))
dict.Put(field, bytes)
db.AddAof(makeAofCmd("hincrby", args))
return reply.MakeBulkReply(bytes)
}
func undoHIncr(db *DB, args [][]byte) []CmdLine {
key := string(args[0])
field := string(args[1])
return rollbackHashFields(db, key, field)
}
// execHIncrByFloat increments the float value of a hash field by the given number
func execHIncrByFloat(db *DB, args [][]byte) redis.Reply {
key := string(args[0])
field := string(args[1])
rawDelta := string(args[2])
delta, err := decimal.NewFromString(rawDelta)
if err != nil {
return reply.MakeErrReply("ERR value is not a valid float")
}
// get or init entity
dict, _, errReply := db.getOrInitDict(key)
if errReply != nil {
return errReply
}
value, exists := dict.Get(field)
if !exists {
dict.Put(field, args[2])
return reply.MakeBulkReply(args[2])
}
val, err := decimal.NewFromString(string(value.([]byte)))
if err != nil {
return reply.MakeErrReply("ERR hash value is not a float")
}
result := val.Add(delta)
resultBytes := []byte(result.String())
dict.Put(field, resultBytes)
db.AddAof(makeAofCmd("hincrbyfloat", args))
return reply.MakeBulkReply(resultBytes)
}
func init() {
RegisterCommand("HSet", execHSet, writeFirstKey, undoHSet, 4)
RegisterCommand("HSetNX", execHSetNX, writeFirstKey, undoHSet, 4)
RegisterCommand("HGet", execHGet, readFirstKey, nil, 3)
RegisterCommand("HExists", execHExists, readFirstKey, nil, 3)
RegisterCommand("HDel", execHDel, writeFirstKey, undoHDel, -3)
RegisterCommand("HLen", execHLen, readFirstKey, nil, 2)
RegisterCommand("HMSet", execHMSet, writeFirstKey, undoHMSet, -4)
RegisterCommand("HMGet", execHMGet, readFirstKey, nil, -3)
RegisterCommand("HGet", execHGet, readFirstKey, nil, -3)
RegisterCommand("HKeys", execHKeys, readFirstKey, nil, 2)
RegisterCommand("HVals", execHVals, readFirstKey, nil, 2)
RegisterCommand("HGetAll", execHGetAll, readFirstKey, nil, 2)
RegisterCommand("HIncrBy", execHIncrBy, writeFirstKey, undoHIncr, 4)
RegisterCommand("HIncrByFloat", execHIncrByFloat, writeFirstKey, undoHIncr, 4)
}