redis/tx.go

150 lines
3.8 KiB
Go
Raw Normal View History

package redis
import (
"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"
)
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
2019-12-29 13:06:43 +03:00
hooks
ctx context.Context
}
2019-07-30 12:13:00 +03:00
func (c *Client) newTx(ctx context.Context) *Tx {
tx := Tx{
baseClient: baseClient{
opt: c.opt,
2020-08-15 15:36:02 +03:00
connPool: pool.NewStickyConnPool(c.connPool),
},
hooks: c.hooks.clone(),
2019-12-29 13:06:43 +03:00
ctx: ctx,
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
}
func (c *Tx) Context() context.Context {
2019-07-04 11:18:06 +03:00
return c.ctx
}
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()
clone.hooks.lock()
2019-12-29 13:06:43 +03:00
clone.ctx = ctx
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)
}
// 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 {
2019-07-30 12:13:00 +03:00
tx := c.newTx(ctx)
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
ctx: c.ctx,
exec: func(ctx context.Context, cmds []Cmder) error {
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()
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{
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)
},
}
pipe.init()
return &pipe
}