mirror of
https://github.com/HDT3213/godis.git
synced 2025-10-04 08:26:34 +08:00
175 lines
3.8 KiB
Go
175 lines
3.8 KiB
Go
package database
|
|
|
|
import (
|
|
"github.com/hdt3213/godis/aof"
|
|
"github.com/hdt3213/godis/lib/utils"
|
|
"strconv"
|
|
)
|
|
|
|
func readFirstKey(args [][]byte) ([]string, []string) {
|
|
// assert len(args) > 0
|
|
key := string(args[0])
|
|
return nil, []string{key}
|
|
}
|
|
|
|
func writeFirstKey(args [][]byte) ([]string, []string) {
|
|
key := string(args[0])
|
|
return []string{key}, nil
|
|
}
|
|
|
|
func writeAllKeys(args [][]byte) ([]string, []string) {
|
|
keys := make([]string, len(args))
|
|
for i, v := range args {
|
|
keys[i] = string(v)
|
|
}
|
|
return keys, nil
|
|
}
|
|
|
|
func readAllKeys(args [][]byte) ([]string, []string) {
|
|
keys := make([]string, len(args))
|
|
for i, v := range args {
|
|
keys[i] = string(v)
|
|
}
|
|
return nil, keys
|
|
}
|
|
|
|
func noPrepare(args [][]byte) ([]string, []string) {
|
|
return nil, nil
|
|
}
|
|
|
|
func rollbackFirstKey(db *DB, args [][]byte) []CmdLine {
|
|
key := string(args[0])
|
|
return rollbackGivenKeys(db, key)
|
|
}
|
|
|
|
func rollbackGivenKeys(db *DB, keys ...string) []CmdLine {
|
|
var undoCmdLines [][][]byte
|
|
for _, key := range keys {
|
|
entity, ok := db.GetEntity(key)
|
|
if !ok {
|
|
undoCmdLines = append(undoCmdLines,
|
|
utils.ToCmdLine("DEL", key),
|
|
)
|
|
} else {
|
|
undoCmdLines = append(undoCmdLines,
|
|
utils.ToCmdLine("DEL", key), // clean existed first
|
|
aof.EntityToCmd(key, entity).Args,
|
|
toTTLCmd(db, key).Args,
|
|
)
|
|
}
|
|
}
|
|
return undoCmdLines
|
|
}
|
|
|
|
func rollbackHashFields(db *DB, key string, fields ...string) []CmdLine {
|
|
var undoCmdLines [][][]byte
|
|
dict, errReply := db.getAsDict(key)
|
|
if errReply != nil {
|
|
return nil
|
|
}
|
|
if dict == nil {
|
|
undoCmdLines = append(undoCmdLines,
|
|
utils.ToCmdLine("DEL", key),
|
|
)
|
|
return undoCmdLines
|
|
}
|
|
for _, field := range fields {
|
|
entity, ok := dict.Get(field)
|
|
if !ok {
|
|
undoCmdLines = append(undoCmdLines,
|
|
utils.ToCmdLine("HDEL", key, field),
|
|
)
|
|
} else {
|
|
value, _ := entity.([]byte)
|
|
undoCmdLines = append(undoCmdLines,
|
|
utils.ToCmdLine("HSET", key, field, string(value)),
|
|
)
|
|
}
|
|
}
|
|
return undoCmdLines
|
|
}
|
|
|
|
func prepareSetCalculate(args [][]byte) ([]string, []string) {
|
|
keys := make([]string, len(args))
|
|
for i, arg := range args {
|
|
keys[i] = string(arg)
|
|
}
|
|
return nil, keys
|
|
}
|
|
|
|
func prepareSetCalculateStore(args [][]byte) ([]string, []string) {
|
|
dest := string(args[0])
|
|
keys := make([]string, len(args)-1)
|
|
keyArgs := args[1:]
|
|
for i, arg := range keyArgs {
|
|
keys[i] = string(arg)
|
|
}
|
|
return []string{dest}, keys
|
|
}
|
|
|
|
func rollbackSetMembers(db *DB, key string, members ...string) []CmdLine {
|
|
var undoCmdLines [][][]byte
|
|
set, errReply := db.getAsSet(key)
|
|
if errReply != nil {
|
|
return nil
|
|
}
|
|
if set == nil {
|
|
undoCmdLines = append(undoCmdLines,
|
|
utils.ToCmdLine("DEL", key),
|
|
)
|
|
return undoCmdLines
|
|
}
|
|
for _, member := range members {
|
|
ok := set.Has(member)
|
|
if !ok {
|
|
undoCmdLines = append(undoCmdLines,
|
|
utils.ToCmdLine("SREM", key, member),
|
|
)
|
|
} else {
|
|
undoCmdLines = append(undoCmdLines,
|
|
utils.ToCmdLine("SADD", key, member),
|
|
)
|
|
}
|
|
}
|
|
return undoCmdLines
|
|
}
|
|
|
|
// undoSetChange rollbacks SADD and SREM command
|
|
func undoSetChange(db *DB, args [][]byte) []CmdLine {
|
|
key := string(args[0])
|
|
memberArgs := args[1:]
|
|
members := make([]string, len(memberArgs))
|
|
for i, mem := range memberArgs {
|
|
members[i] = string(mem)
|
|
}
|
|
return rollbackSetMembers(db, key, members...)
|
|
}
|
|
|
|
func rollbackZSetFields(db *DB, key string, fields ...string) []CmdLine {
|
|
var undoCmdLines [][][]byte
|
|
zset, errReply := db.getAsSortedSet(key)
|
|
if errReply != nil {
|
|
return nil
|
|
}
|
|
if zset == nil {
|
|
undoCmdLines = append(undoCmdLines,
|
|
utils.ToCmdLine("DEL", key),
|
|
)
|
|
return undoCmdLines
|
|
}
|
|
for _, field := range fields {
|
|
elem, ok := zset.Get(field)
|
|
if !ok {
|
|
undoCmdLines = append(undoCmdLines,
|
|
utils.ToCmdLine("ZREM", key, field),
|
|
)
|
|
} else {
|
|
score := strconv.FormatFloat(elem.Score, 'f', -1, 64)
|
|
undoCmdLines = append(undoCmdLines,
|
|
utils.ToCmdLine("ZADD", key, score, field),
|
|
)
|
|
}
|
|
}
|
|
return undoCmdLines
|
|
}
|