Files
go-zero/core/stores/redis/redislock.go

95 lines
2.0 KiB
Go
Raw Normal View History

2020-07-26 17:09:05 +08:00
package redis
import (
"math/rand"
"strconv"
2020-07-26 17:09:05 +08:00
"sync/atomic"
"time"
red "github.com/go-redis/redis/v8"
"github.com/zeromicro/go-zero/core/logx"
"github.com/zeromicro/go-zero/core/stringx"
2020-07-26 17:09:05 +08:00
)
const (
randomLen = 16
tolerance = 500 // milliseconds
millisPerSecond = 1000
lockCommand = `if redis.call("GET", KEYS[1]) == ARGV[1] then
redis.call("SET", KEYS[1], ARGV[1], "PX", ARGV[2])
return "OK"
else
return redis.call("SET", KEYS[1], ARGV[1], "NX", "PX", ARGV[2])
end`
2020-07-26 17:09:05 +08:00
delCommand = `if redis.call("GET", KEYS[1]) == ARGV[1] then
return redis.call("DEL", KEYS[1])
else
return 0
end`
)
// A RedisLock is a redis lock.
2020-07-26 17:09:05 +08:00
type RedisLock struct {
store *Redis
seconds uint32
key string
id string
}
func init() {
rand.Seed(time.Now().UnixNano())
}
// NewRedisLock returns a RedisLock.
2020-07-26 17:09:05 +08:00
func NewRedisLock(store *Redis, key string) *RedisLock {
return &RedisLock{
store: store,
key: key,
id: stringx.Randn(randomLen),
2020-07-26 17:09:05 +08:00
}
}
// Acquire acquires the lock.
2020-07-26 17:09:05 +08:00
func (rl *RedisLock) Acquire() (bool, error) {
seconds := atomic.LoadUint32(&rl.seconds)
resp, err := rl.store.Eval(lockCommand, []string{rl.key}, []string{
rl.id, strconv.Itoa(int(seconds)*millisPerSecond + tolerance),
})
2020-07-26 17:09:05 +08:00
if err == red.Nil {
return false, nil
} else if err != nil {
logx.Errorf("Error on acquiring lock for %s, %s", rl.key, err.Error())
return false, err
} else if resp == nil {
2020-07-26 17:09:05 +08:00
return false, nil
}
reply, ok := resp.(string)
if ok && reply == "OK" {
return true, nil
}
logx.Errorf("Unknown reply when acquiring lock for %s: %v", rl.key, resp)
return false, nil
2020-07-26 17:09:05 +08:00
}
// Release releases the lock.
2020-07-26 17:09:05 +08:00
func (rl *RedisLock) Release() (bool, error) {
resp, err := rl.store.Eval(delCommand, []string{rl.key}, []string{rl.id})
if err != nil {
return false, err
}
2021-02-09 13:50:21 +08:00
reply, ok := resp.(int64)
if !ok {
2020-07-26 17:09:05 +08:00
return false, nil
}
2021-02-09 13:50:21 +08:00
return reply == 1, nil
2020-07-26 17:09:05 +08:00
}
2021-12-15 13:43:05 +08:00
// SetExpire sets the expiration.
2020-07-26 17:09:05 +08:00
func (rl *RedisLock) SetExpire(seconds int) {
atomic.StoreUint32(&rl.seconds, uint32(seconds))
}