redis/tx.go

152 lines
4.0 KiB
Go
Raw Normal View History

package redis
import (
"context"
2023-01-23 09:48:54 +03:00
"github.com/redis/go-redis/v9/internal/pool"
"github.com/redis/go-redis/v9/internal/proto"
)
2018-01-24 21:38:47 +03:00
// TxFailedErr transaction redis failed.
2018-02-22 15:14:30 +03:00
const TxFailedErr = proto.RedisError("redis: transaction failed")
2016-07-02 15:52:10 +03:00
// Tx implements Redis transactions as described in
2015-11-04 15:25:48 +03:00
// http://redis.io/topics/transactions. It's NOT safe for concurrent use
// by multiple goroutines, because Exec resets list of watched keys.
2021-09-08 15:54:10 +03:00
//
// If you don't need WATCH, use Pipeline instead.
type Tx struct {
2019-08-24 12:22:52 +03:00
baseClient
2019-05-31 17:03:20 +03:00
cmdable
statefulCmdable
2023-01-21 11:30:02 +03:00
hooksMixin
}
func (c *Client) newTx() *Tx {
tx := Tx{
baseClient: baseClient{
opt: c.opt,
2020-08-15 15:36:02 +03:00
connPool: pool.NewStickyConnPool(c.connPool),
},
2023-01-21 11:30:02 +03:00
hooksMixin: c.hooksMixin.clone(),
2015-01-24 15:12:48 +03:00
}
tx.init()
return &tx
}
func (c *Tx) init() {
2019-05-31 17:03:20 +03:00
c.cmdable = c.Process
c.statefulCmdable = c.Process
2023-01-21 11:30:02 +03:00
c.initHooks(hooks{
dial: c.baseClient.dial,
process: c.baseClient.process,
pipeline: c.baseClient.processPipeline,
txPipeline: c.baseClient.processTxPipeline,
})
}
2020-03-11 17:26:42 +03:00
func (c *Tx) Process(ctx context.Context, cmd Cmder) error {
2023-01-21 11:30:02 +03:00
err := c.processHook(ctx, cmd)
cmd.SetErr(err)
return err
}
// Watch prepares a transaction and marks the keys to be watched
2018-07-12 15:57:03 +03:00
// for conditional execution if there are any keys.
//
// The transaction is automatically closed when fn exits.
2020-03-11 17:26:42 +03:00
func (c *Client) Watch(ctx context.Context, fn func(*Tx) error, keys ...string) error {
tx := c.newTx()
defer tx.Close(ctx)
if len(keys) > 0 {
2020-03-11 17:26:42 +03:00
if err := tx.Watch(ctx, keys...).Err(); err != nil {
2016-05-02 15:54:15 +03:00
return err
}
}
return fn(tx)
2015-01-24 15:12:48 +03:00
}
2018-01-24 21:38:47 +03:00
// Close closes the transaction, releasing any open resources.
2020-03-11 17:26:42 +03:00
func (c *Tx) Close(ctx context.Context) error {
_ = c.Unwatch(ctx).Err()
return c.baseClient.Close()
}
2015-11-04 15:25:48 +03:00
// Watch marks the keys to be watched for conditional execution
// of a transaction.
2020-03-11 17:26:42 +03:00
func (c *Tx) Watch(ctx context.Context, keys ...string) *StatusCmd {
args := make([]interface{}, 1+len(keys))
2017-08-31 15:22:47 +03:00
args[0] = "watch"
for i, key := range keys {
args[1+i] = key
}
2020-03-11 17:26:42 +03:00
cmd := NewStatusCmd(ctx, args...)
_ = c.Process(ctx, cmd)
2014-05-11 11:42:40 +04:00
return cmd
}
2015-11-04 15:25:48 +03:00
// Unwatch flushes all the previously watched keys for a transaction.
2020-03-11 17:26:42 +03:00
func (c *Tx) Unwatch(ctx context.Context, keys ...string) *StatusCmd {
args := make([]interface{}, 1+len(keys))
2017-08-31 15:22:47 +03:00
args[0] = "unwatch"
for i, key := range keys {
args[1+i] = key
}
2020-03-11 17:26:42 +03:00
cmd := NewStatusCmd(ctx, args...)
_ = c.Process(ctx, cmd)
2014-05-11 11:42:40 +04:00
return cmd
}
2020-02-13 17:13:33 +03:00
// Pipeline creates a pipeline. Usually it is more convenient to use Pipelined.
2017-05-02 18:00:53 +03:00
func (c *Tx) Pipeline() Pipeliner {
pipe := Pipeline{
2019-12-29 13:06:43 +03:00
exec: func(ctx context.Context, cmds []Cmder) error {
2023-01-21 11:30:02 +03:00
return c.processPipelineHook(ctx, cmds)
2019-12-29 13:06:43 +03:00
},
2012-08-25 23:51:42 +04:00
}
2019-05-31 17:03:20 +03:00
pipe.init()
return &pipe
}
2020-02-13 17:13:33 +03:00
// Pipelined executes commands queued in the fn outside of the transaction.
// Use TxPipelined if you need transactional behavior.
2020-03-11 17:26:42 +03:00
func (c *Tx) Pipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmder, error) {
return c.Pipeline().Pipelined(ctx, fn)
}
2020-02-13 17:13:33 +03:00
// TxPipelined executes commands queued in the fn in the transaction.
2015-11-04 15:25:48 +03:00
//
// When using WATCH, EXEC will execute commands only if the watched keys
// were not modified, allowing for a check-and-set mechanism.
//
2014-05-11 11:42:40 +04:00
// Exec always returns list of commands. If transaction fails
2018-07-12 15:57:03 +03:00
// TxFailedErr is returned. Otherwise Exec returns an error of the first
2014-05-11 11:42:40 +04:00
// failed command or nil.
2020-03-11 17:26:42 +03:00
func (c *Tx) TxPipelined(ctx context.Context, fn func(Pipeliner) error) ([]Cmder, error) {
return c.TxPipeline().Pipelined(ctx, fn)
2017-09-25 11:48:44 +03:00
}
2020-02-13 17:13:33 +03:00
// TxPipeline creates a pipeline. Usually it is more convenient to use TxPipelined.
2017-09-25 11:48:44 +03:00
func (c *Tx) TxPipeline() Pipeliner {
pipe := Pipeline{
exec: func(ctx context.Context, cmds []Cmder) error {
cmds = wrapMultiExec(ctx, cmds)
2023-01-21 11:30:02 +03:00
return c.processTxPipelineHook(ctx, cmds)
},
}
pipe.init()
return &pipe
}
func wrapMultiExec(ctx context.Context, cmds []Cmder) []Cmder {
if len(cmds) == 0 {
panic("not reached")
}
cmdsCopy := make([]Cmder, len(cmds)+2)
cmdsCopy[0] = NewStatusCmd(ctx, "multi")
copy(cmdsCopy[1:], cmds)
cmdsCopy[len(cmdsCopy)-1] = NewSliceCmd(ctx, "exec")
return cmdsCopy
}