2012-08-11 18:42:10 +04:00
|
|
|
package redis
|
|
|
|
|
|
|
|
import (
|
2017-02-18 17:42:34 +03:00
|
|
|
"github.com/go-redis/redis/internal"
|
|
|
|
"github.com/go-redis/redis/internal/pool"
|
2012-08-11 18:42:10 +04:00
|
|
|
)
|
|
|
|
|
2016-07-02 15:52:10 +03:00
|
|
|
// Redis transaction failed.
|
2016-10-09 14:38:31 +03:00
|
|
|
const TxFailedErr = internal.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 {
|
2016-06-05 12:45:39 +03:00
|
|
|
statefulCmdable
|
|
|
|
baseClient
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
|
2016-04-09 11:23:58 +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,
|
2016-03-12 11:52:13 +03:00
|
|
|
connPool: pool.NewStickyConnPool(c.connPool.(*pool.ConnPool), true),
|
2015-06-03 16:45:46 +03:00
|
|
|
},
|
2015-01-24 15:12:48 +03:00
|
|
|
}
|
2017-05-25 13:38:04 +03:00
|
|
|
tx.setProcessor(tx.Process)
|
2016-06-05 12:45:39 +03:00
|
|
|
return &tx
|
2016-04-09 11:23:58 +03:00
|
|
|
}
|
|
|
|
|
2016-05-02 15:54:15 +03:00
|
|
|
func (c *Client) Watch(fn func(*Tx) error, keys ...string) error {
|
2016-04-09 11:23:58 +03:00
|
|
|
tx := c.newTx()
|
|
|
|
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
|
2016-04-09 11:23:58 +03:00
|
|
|
}
|
|
|
|
}
|
2017-08-31 15:22:47 +03:00
|
|
|
|
|
|
|
err := fn(tx)
|
|
|
|
_ = tx.Close()
|
|
|
|
return err
|
2015-01-24 15:12:48 +03:00
|
|
|
}
|
|
|
|
|
2016-05-02 15:54:15 +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()
|
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.
|
2016-07-01 15:25:28 +03:00
|
|
|
func (c *Tx) Watch(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
|
|
|
|
}
|
2014-05-11 11:42:40 +04:00
|
|
|
cmd := NewStatusCmd(args...)
|
2016-07-01 15:25:28 +03:00
|
|
|
c.Process(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.
|
2016-07-01 15:25:28 +03:00
|
|
|
func (c *Tx) Unwatch(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
|
|
|
|
}
|
2014-05-11 11:42:40 +04:00
|
|
|
cmd := NewStatusCmd(args...)
|
2016-07-01 15:25:28 +03:00
|
|
|
c.Process(cmd)
|
2014-05-11 11:42:40 +04:00
|
|
|
return cmd
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
|
2017-05-02 18:00:53 +03:00
|
|
|
func (c *Tx) Pipeline() Pipeliner {
|
2016-10-13 14:36:15 +03:00
|
|
|
pipe := Pipeline{
|
2016-12-13 18:28:39 +03:00
|
|
|
exec: c.pipelineExecer(c.txPipelineProcessCmds),
|
2012-08-25 23:51:42 +04:00
|
|
|
}
|
2017-05-25 13:38:04 +03:00
|
|
|
pipe.setProcessor(pipe.Process)
|
2016-10-13 14:36:15 +03:00
|
|
|
return &pipe
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
|
2016-10-13 14:36:15 +03:00
|
|
|
// Pipelined executes commands queued in the fn in a transaction
|
2015-11-04 15:25:48 +03:00
|
|
|
// and restores the connection state to normal.
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
// TxFailedErr is returned. Otherwise Exec returns error of the first
|
|
|
|
// 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)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Tx) TxPipelined(fn func(Pipeliner) error) ([]Cmder, error) {
|
|
|
|
return c.Pipelined(fn)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Tx) TxPipeline() Pipeliner {
|
|
|
|
return c.Pipeline()
|
2016-10-13 14:36:15 +03:00
|
|
|
}
|