2012-08-11 18:42:10 +04:00
|
|
|
package redis
|
|
|
|
|
|
|
|
import (
|
2019-05-31 16:36:57 +03:00
|
|
|
"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"
|
2012-08-11 18:42:10 +04:00
|
|
|
)
|
|
|
|
|
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
|
|
|
|
2016-04-09 11:23:58 +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
|
2015-11-14 15:44:16 +03:00
|
|
|
// 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.
|
2016-04-09 11:23:58 +03:00
|
|
|
type Tx struct {
|
2019-08-24 12:22:52 +03:00
|
|
|
baseClient
|
2019-05-31 17:03:20 +03:00
|
|
|
cmdable
|
2016-06-05 12:45:39 +03:00
|
|
|
statefulCmdable
|
2023-01-21 11:30:02 +03:00
|
|
|
hooksMixin
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
|
2022-07-14 13:43:42 +03:00
|
|
|
func (c *Client) newTx() *Tx {
|
2016-06-05 12:45:39 +03:00
|
|
|
tx := Tx{
|
|
|
|
baseClient: baseClient{
|
2015-06-03 16:45:46 +03:00
|
|
|
opt: c.opt,
|
2020-08-15 15:36:02 +03:00
|
|
|
connPool: pool.NewStickyConnPool(c.connPool),
|
2015-06-03 16:45:46 +03:00
|
|
|
},
|
2023-01-21 11:30:02 +03:00
|
|
|
hooksMixin: c.hooksMixin.clone(),
|
2015-01-24 15:12:48 +03:00
|
|
|
}
|
2019-05-31 16:36:57 +03:00
|
|
|
tx.init()
|
2016-06-05 12:45:39 +03:00
|
|
|
return &tx
|
2016-04-09 11:23:58 +03:00
|
|
|
}
|
|
|
|
|
2019-05-31 16:36:57 +03:00
|
|
|
func (c *Tx) init() {
|
2019-05-31 17:03:20 +03:00
|
|
|
c.cmdable = c.Process
|
|
|
|
c.statefulCmdable = c.Process
|
2022-10-11 15:37:34 +03:00
|
|
|
|
2023-01-21 11:30:02 +03:00
|
|
|
c.initHooks(hooks{
|
2023-01-20 18:19:49 +03:00
|
|
|
dial: c.baseClient.dial,
|
|
|
|
process: c.baseClient.process,
|
|
|
|
pipeline: c.baseClient.processPipeline,
|
|
|
|
txPipeline: c.baseClient.processTxPipeline,
|
|
|
|
})
|
2019-05-31 16:36:57 +03:00
|
|
|
}
|
|
|
|
|
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)
|
2022-10-11 15:37:34 +03:00
|
|
|
cmd.SetErr(err)
|
|
|
|
return err
|
2019-05-31 16:36:57 +03:00
|
|
|
}
|
|
|
|
|
2019-02-13 13:51:16 +03:00
|
|
|
// 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.
|
|
|
|
//
|
2019-02-13 13:51:16 +03:00
|
|
|
// 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 {
|
2022-07-14 13:43:42 +03:00
|
|
|
tx := c.newTx()
|
2021-01-21 20:29:28 +03:00
|
|
|
defer tx.Close(ctx)
|
2016-04-09 11:23:58 +03:00
|
|
|
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
|
2016-04-09 11:23:58 +03:00
|
|
|
}
|
|
|
|
}
|
2021-01-21 20:29:28 +03:00
|
|
|
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()
|
2016-07-01 15:25:28 +03:00
|
|
|
return c.baseClient.Close()
|
2012-08-20 00:59:52 +04:00
|
|
|
}
|
|
|
|
|
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 {
|
2015-05-28 15:51:19 +03:00
|
|
|
args := make([]interface{}, 1+len(keys))
|
2017-08-31 15:22:47 +03:00
|
|
|
args[0] = "watch"
|
2015-05-28 15:51:19 +03:00
|
|
|
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
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
|
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 {
|
2015-05-28 15:51:19 +03:00
|
|
|
args := make([]interface{}, 1+len(keys))
|
2017-08-31 15:22:47 +03:00
|
|
|
args[0] = "unwatch"
|
2015-05-28 15:51:19 +03:00
|
|
|
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
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
|
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 {
|
2016-10-13 14:36:15 +03:00
|
|
|
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()
|
2016-10-13 14:36:15 +03:00
|
|
|
return &pipe
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
|
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-01-12 15:19:21 +03:00
|
|
|
}
|
|
|
|
|
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 {
|
2020-01-12 15:19:21 +03:00
|
|
|
pipe := Pipeline{
|
|
|
|
exec: func(ctx context.Context, cmds []Cmder) error {
|
2022-10-11 15:37:34 +03:00
|
|
|
cmds = wrapMultiExec(ctx, cmds)
|
2023-01-21 11:30:02 +03:00
|
|
|
return c.processTxPipelineHook(ctx, cmds)
|
2020-01-12 15:19:21 +03:00
|
|
|
},
|
|
|
|
}
|
|
|
|
pipe.init()
|
|
|
|
return &pipe
|
2016-10-13 14:36:15 +03:00
|
|
|
}
|
2022-10-11 15:37:34 +03:00
|
|
|
|
|
|
|
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
|
|
|
|
}
|