2012-08-11 18:42:10 +04:00
|
|
|
package redis
|
|
|
|
|
|
|
|
import (
|
2019-05-31 16:36:57 +03:00
|
|
|
"context"
|
|
|
|
|
2020-03-11 17:29:16 +03:00
|
|
|
"github.com/go-redis/redis/v8/internal/pool"
|
|
|
|
"github.com/go-redis/redis/v8/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.
|
2015-11-04 15:25:48 +03:00
|
|
|
// If you don't need WATCH it is better to use Pipeline.
|
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
|
2019-12-29 13:06:43 +03:00
|
|
|
hooks
|
2019-05-31 16:36:57 +03:00
|
|
|
ctx context.Context
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
|
2019-07-30 12:13:00 +03:00
|
|
|
func (c *Client) newTx(ctx context.Context) *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
|
|
|
},
|
2020-02-12 14:02:09 +03:00
|
|
|
hooks: c.hooks.clone(),
|
2019-12-29 13:06:43 +03:00
|
|
|
ctx: ctx,
|
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
|
2019-05-31 16:36:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Tx) Context() context.Context {
|
2019-07-04 11:18:06 +03:00
|
|
|
return c.ctx
|
2019-05-31 16:36:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Tx) WithContext(ctx context.Context) *Tx {
|
|
|
|
if ctx == nil {
|
|
|
|
panic("nil context")
|
|
|
|
}
|
|
|
|
clone := *c
|
2019-08-24 12:22:52 +03:00
|
|
|
clone.init()
|
2020-02-12 14:02:09 +03:00
|
|
|
clone.hooks.lock()
|
2019-12-29 13:06:43 +03:00
|
|
|
clone.ctx = ctx
|
2019-05-31 16:36:57 +03:00
|
|
|
return &clone
|
|
|
|
}
|
|
|
|
|
2020-03-11 17:26:42 +03:00
|
|
|
func (c *Tx) Process(ctx context.Context, cmd Cmder) error {
|
2019-12-29 13:06:43 +03:00
|
|
|
return c.hooks.process(ctx, cmd, c.baseClient.process)
|
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 {
|
2019-07-30 12:13:00 +03:00
|
|
|
tx := c.newTx(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 {
|
|
|
|
_ = tx.Close(ctx)
|
2016-05-02 15:54:15 +03:00
|
|
|
return err
|
2016-04-09 11:23:58 +03:00
|
|
|
}
|
|
|
|
}
|
2017-08-31 15:22:47 +03:00
|
|
|
|
|
|
|
err := fn(tx)
|
2020-03-11 17:26:42 +03:00
|
|
|
_ = tx.Close(ctx)
|
2017-08-31 15:22:47 +03:00
|
|
|
return err
|
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
|
|
|
ctx: c.ctx,
|
|
|
|
exec: func(ctx context.Context, cmds []Cmder) error {
|
2020-01-12 15:19:21 +03:00
|
|
|
return c.hooks.processPipeline(ctx, cmds, c.baseClient.processPipeline)
|
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{
|
|
|
|
ctx: c.ctx,
|
|
|
|
exec: func(ctx context.Context, cmds []Cmder) error {
|
2020-02-14 16:37:35 +03:00
|
|
|
return c.hooks.processTxPipeline(ctx, cmds, c.baseClient.processTxPipeline)
|
2020-01-12 15:19:21 +03:00
|
|
|
},
|
|
|
|
}
|
|
|
|
pipe.init()
|
|
|
|
return &pipe
|
2016-10-13 14:36:15 +03:00
|
|
|
}
|