components-contrib/lock/redis/standalone.go

196 lines
5.7 KiB
Go

/*
Copyright 2021 The Dapr Authors
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 redis
import (
"context"
"fmt"
"strconv"
"strings"
"time"
rediscomponent "github.com/dapr/components-contrib/internal/component/redis"
"github.com/dapr/components-contrib/lock"
"github.com/dapr/kit/logger"
)
const (
unlockScript = "local v = redis.call(\"get\",KEYS[1]); if v==false then return -1 end; if v~=ARGV[1] then return -2 else return redis.call(\"del\",KEYS[1]) end"
connectedSlavesReplicas = "connected_slaves:"
infoReplicationDelimiter = "\r\n"
)
// Standalone Redis lock store.Any fail-over related features are not supported,such as Sentinel and Redis Cluster.
type StandaloneRedisLock struct {
client rediscomponent.RedisClient
clientSettings *rediscomponent.Settings
metadata rediscomponent.Metadata
logger logger.Logger
ctx context.Context
cancel context.CancelFunc
}
// NewStandaloneRedisLock returns a new standalone redis lock.
// Do not use this lock with a redis cluster, which might lead to unexpected lock loss.
func NewStandaloneRedisLock(logger logger.Logger) lock.Store {
s := &StandaloneRedisLock{
logger: logger,
}
return s
}
// Init StandaloneRedisLock.
func (r *StandaloneRedisLock) InitLockStore(metadata lock.Metadata) error {
// 1. parse config
m, err := rediscomponent.ParseRedisMetadata(metadata.Properties)
if err != nil {
return err
}
r.metadata = m
// must have `redisHost`
if metadata.Properties["redisHost"] == "" {
return fmt.Errorf("[standaloneRedisLock]: InitLockStore error. redisHost is empty")
}
// no failover
if needFailover(metadata.Properties) {
return fmt.Errorf("[standaloneRedisLock]: InitLockStore error. Failover is not supported")
}
// 2. construct client
defaultSettings := rediscomponent.Settings{RedisMaxRetries: m.MaxRetries, RedisMaxRetryInterval: rediscomponent.Duration(m.MaxRetryBackoff)}
r.client, r.clientSettings, err = rediscomponent.ParseClientFromProperties(metadata.Properties, &defaultSettings)
if err != nil {
return err
}
r.ctx, r.cancel = context.WithCancel(context.Background())
// 3. connect to redis
if _, err = r.client.PingResult(r.ctx); err != nil {
return fmt.Errorf("[standaloneRedisLock]: error connecting to redis at %s: %s", r.clientSettings.Host, err)
}
// no replica
replicas, err := r.getConnectedSlaves()
// pass the validation if error occurs,
// since some redis versions such as miniredis do not recognize the `INFO` command.
if err == nil && replicas > 0 {
return fmt.Errorf("[standaloneRedisLock]: InitLockStore error. Replication is not supported")
}
return nil
}
func needFailover(properties map[string]string) bool {
if val, ok := properties["failover"]; ok && val != "" {
parsedVal, err := strconv.ParseBool(val)
if err != nil {
return false
}
return parsedVal
}
return false
}
func (r *StandaloneRedisLock) getConnectedSlaves() (int, error) {
res, err := r.client.DoRead(r.ctx, "INFO", "replication")
if err != nil {
return 0, err
}
// Response example: https://redis.io/commands/info#return-value
// # Replication\r\nrole:master\r\nconnected_slaves:1\r\n
s, _ := strconv.Unquote(fmt.Sprintf("%q", res))
if len(s) == 0 {
return 0, nil
}
return r.parseConnectedSlaves(s), nil
}
func (r *StandaloneRedisLock) parseConnectedSlaves(res string) int {
infos := strings.Split(res, infoReplicationDelimiter)
for _, info := range infos {
if strings.Contains(info, connectedSlavesReplicas) {
parsedReplicas, _ := strconv.ParseUint(info[len(connectedSlavesReplicas):], 10, 32)
return int(parsedReplicas)
}
}
return 0
}
// Try to acquire a redis lock.
func (r *StandaloneRedisLock) TryLock(req *lock.TryLockRequest) (*lock.TryLockResponse, error) {
// 1.Setting redis expiration time
nxval, err := r.client.SetNX(r.ctx, req.ResourceID, req.LockOwner, time.Second*time.Duration(req.ExpiryInSeconds))
if nxval == nil {
return &lock.TryLockResponse{}, fmt.Errorf("[standaloneRedisLock]: SetNX returned nil.ResourceID: %s", req.ResourceID)
}
// 2. check error
if err != nil {
return &lock.TryLockResponse{}, err
}
return &lock.TryLockResponse{
Success: *nxval,
}, nil
}
// Try to release a redis lock.
func (r *StandaloneRedisLock) Unlock(req *lock.UnlockRequest) (*lock.UnlockResponse, error) {
// 1. delegate to client.eval lua script
evalInt, parseErr, err := r.client.EvalInt(r.ctx, unlockScript, []string{req.ResourceID}, req.LockOwner)
// 2. check error
if evalInt == nil {
return newInternalErrorUnlockResponse(), fmt.Errorf("[standaloneRedisLock]: Eval unlock script returned nil.ResourceID: %s", req.ResourceID)
}
// 3. parse result
i := *evalInt
status := lock.InternalError
if parseErr != nil {
return &lock.UnlockResponse{
Status: status,
}, err
}
if i >= 0 {
status = lock.Success
} else if i == -1 {
status = lock.LockDoesNotExist
} else if i == -2 {
status = lock.LockBelongsToOthers
}
return &lock.UnlockResponse{
Status: status,
}, nil
}
func newInternalErrorUnlockResponse() *lock.UnlockResponse {
return &lock.UnlockResponse{
Status: lock.InternalError,
}
}
// Close shuts down the client's redis connections.
func (r *StandaloneRedisLock) Close() error {
if r.cancel != nil {
r.cancel()
}
if r.client != nil {
closeErr := r.client.Close()
r.client = nil
return closeErr
}
return nil
}