redis/tx.go

147 lines
3.4 KiB
Go
Raw Normal View History

package redis
import (
"context"
2017-02-18 17:42:34 +03:00
"github.com/go-redis/redis/internal/pool"
2018-02-22 15:14:30 +03:00
"github.com/go-redis/redis/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.
2015-11-04 15:25:48 +03:00
// If you don't need WATCH it is better to use Pipeline.
type Tx struct {
2019-05-31 17:03:20 +03:00
cmdable
statefulCmdable
baseClient
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,
connPool: pool.NewStickyConnPool(c.connPool.(*pool.ConnPool), true),
},
2019-07-30 12:13:00 +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-05-31 17:03:20 +03:00
clone.ctx = ctx
return &clone
}
func (c *Tx) Process(cmd Cmder) error {
2019-06-04 13:30:47 +03:00
return c.ProcessContext(c.ctx, cmd)
}
func (c *Tx) ProcessContext(ctx context.Context, cmd Cmder) error {
return c.baseClient.process(ctx, cmd)
}
// 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.
2016-05-02 15:54:15 +03:00
func (c *Client) Watch(fn func(*Tx) error, keys ...string) error {
2019-07-30 12:13:00 +03:00
return c.WatchContext(c.ctx, fn, keys...)
}
func (c *Client) WatchContext(ctx context.Context, fn func(*Tx) error, keys ...string) error {
tx := c.newTx(ctx)
if len(keys) > 0 {
if err := tx.Watch(keys...).Err(); err != nil {
2016-12-13 18:28:39 +03:00
_ = tx.Close()
2016-05-02 15:54:15 +03:00
return err
}
}
2017-08-31 15:22:47 +03:00
err := fn(tx)
_ = tx.Close()
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.
2016-12-13 18:28:39 +03:00
func (c *Tx) Close() error {
_ = c.Unwatch().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.
func (c *Tx) Watch(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
}
2014-05-11 11:42:40 +04:00
cmd := NewStatusCmd(args...)
2019-07-25 13:28:15 +03:00
_ = c.Process(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.
func (c *Tx) Unwatch(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
}
2014-05-11 11:42:40 +04:00
cmd := NewStatusCmd(args...)
2019-07-25 13:28:15 +03:00
_ = c.Process(cmd)
2014-05-11 11:42:40 +04:00
return cmd
}
2018-07-12 15:57:03 +03:00
// Pipeline creates a new pipeline. It is more convenient to use Pipelined.
2017-05-02 18:00:53 +03:00
func (c *Tx) Pipeline() Pipeliner {
pipe := Pipeline{
2019-07-25 13:28:15 +03:00
ctx: c.ctx,
2018-01-20 13:26:33 +03:00
exec: c.processTxPipeline,
2012-08-25 23:51:42 +04:00
}
2019-05-31 17:03:20 +03:00
pipe.init()
return &pipe
}
2018-07-12 15:57:03 +03:00
// Pipelined executes commands queued in the fn in a 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.
2017-05-02 18:00:53 +03:00
func (c *Tx) Pipelined(fn func(Pipeliner) error) ([]Cmder, error) {
2017-09-25 11:48:44 +03:00
return c.Pipeline().Pipelined(fn)
}
2018-07-12 15:57:03 +03:00
// TxPipelined is an alias for Pipelined.
2017-09-25 11:48:44 +03:00
func (c *Tx) TxPipelined(fn func(Pipeliner) error) ([]Cmder, error) {
return c.Pipelined(fn)
}
2018-07-12 15:57:03 +03:00
// TxPipeline is an alias for Pipeline.
2017-09-25 11:48:44 +03:00
func (c *Tx) TxPipeline() Pipeliner {
return c.Pipeline()
}