2012-08-11 18:42:10 +04:00
|
|
|
package redis
|
|
|
|
|
|
|
|
import (
|
2014-05-11 11:42:40 +04:00
|
|
|
"errors"
|
2012-08-11 18:42:10 +04:00
|
|
|
"fmt"
|
2016-03-12 11:52:13 +03:00
|
|
|
|
2016-04-09 14:52:01 +03:00
|
|
|
"gopkg.in/redis.v4/internal"
|
2016-04-09 13:27:16 +03:00
|
|
|
"gopkg.in/redis.v4/internal/pool"
|
2012-08-11 18:42:10 +04:00
|
|
|
)
|
|
|
|
|
2014-05-11 11:42:40 +04:00
|
|
|
var errDiscard = errors.New("redis: Discard can be used only inside Exec")
|
|
|
|
|
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
|
|
|
cmdable
|
|
|
|
statefulCmdable
|
|
|
|
baseClient
|
2015-11-04 15:25:48 +03:00
|
|
|
|
|
|
|
cmds []Cmder
|
|
|
|
closed bool
|
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
|
|
|
}
|
2016-06-05 12:45:39 +03:00
|
|
|
tx.cmdable.process = tx.Process
|
|
|
|
tx.statefulCmdable.process = tx.Process
|
|
|
|
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-07-01 15:25:28 +03:00
|
|
|
_ = tx.close()
|
2016-05-02 15:54:15 +03:00
|
|
|
return err
|
2016-04-09 11:23:58 +03:00
|
|
|
}
|
|
|
|
}
|
2016-05-02 15:54:15 +03:00
|
|
|
retErr := fn(tx)
|
|
|
|
if err := tx.close(); err != nil && retErr == nil {
|
|
|
|
retErr = err
|
|
|
|
}
|
|
|
|
return retErr
|
2015-01-24 15:12:48 +03:00
|
|
|
}
|
|
|
|
|
2016-07-01 15:25:28 +03:00
|
|
|
func (c *Tx) Process(cmd Cmder) error {
|
|
|
|
if c.cmds == nil {
|
|
|
|
return c.baseClient.Process(cmd)
|
2014-05-11 11:42:40 +04:00
|
|
|
}
|
2016-07-01 15:25:28 +03:00
|
|
|
c.cmds = append(c.cmds, cmd)
|
2016-06-17 15:09:38 +03:00
|
|
|
return nil
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
|
2016-05-02 15:54:15 +03:00
|
|
|
// close closes the transaction, releasing any open resources.
|
2016-07-01 15:25:28 +03:00
|
|
|
func (c *Tx) close() error {
|
|
|
|
if c.closed {
|
2016-05-02 15:54:15 +03:00
|
|
|
return nil
|
|
|
|
}
|
2016-07-01 15:25:28 +03:00
|
|
|
c.closed = true
|
|
|
|
if err := c.Unwatch().Err(); err != nil {
|
2016-04-09 14:52:01 +03:00
|
|
|
internal.Logf("Unwatch failed: %s", err)
|
2014-05-15 15:21:37 +04:00
|
|
|
}
|
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))
|
|
|
|
args[0] = "WATCH"
|
|
|
|
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))
|
|
|
|
args[0] = "UNWATCH"
|
|
|
|
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
|
|
|
// Discard discards queued commands.
|
2016-07-01 15:25:28 +03:00
|
|
|
func (c *Tx) Discard() error {
|
|
|
|
if c.cmds == nil {
|
2014-05-11 11:42:40 +04:00
|
|
|
return errDiscard
|
2012-08-25 23:51:42 +04:00
|
|
|
}
|
2016-07-01 15:25:28 +03:00
|
|
|
c.cmds = c.cmds[:1]
|
2014-05-11 11:42:40 +04:00
|
|
|
return nil
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
|
2016-05-02 15:54:15 +03:00
|
|
|
// MultiExec executes all previously queued commands 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.
|
2016-07-01 15:25:28 +03:00
|
|
|
func (c *Tx) MultiExec(fn func() error) ([]Cmder, error) {
|
|
|
|
if c.closed {
|
2016-03-14 14:17:33 +03:00
|
|
|
return nil, pool.ErrClosed
|
2015-11-04 15:25:48 +03:00
|
|
|
}
|
|
|
|
|
2016-07-01 15:25:28 +03:00
|
|
|
c.cmds = []Cmder{NewStatusCmd("MULTI")}
|
2016-05-02 15:54:15 +03:00
|
|
|
if err := fn(); err != nil {
|
2014-07-02 17:18:19 +04:00
|
|
|
return nil, err
|
|
|
|
}
|
2016-07-01 15:25:28 +03:00
|
|
|
c.cmds = append(c.cmds, NewSliceCmd("EXEC"))
|
2012-08-25 23:51:42 +04:00
|
|
|
|
2016-07-01 15:25:28 +03:00
|
|
|
cmds := c.cmds
|
|
|
|
c.cmds = nil
|
2012-08-13 15:45:32 +04:00
|
|
|
|
2014-05-11 11:42:40 +04:00
|
|
|
if len(cmds) == 2 {
|
|
|
|
return []Cmder{}, nil
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
|
2015-11-14 15:44:16 +03:00
|
|
|
// Strip MULTI and EXEC commands.
|
|
|
|
retCmds := cmds[1 : len(cmds)-1]
|
|
|
|
|
2016-07-01 15:25:28 +03:00
|
|
|
cn, err := c.conn()
|
2012-08-11 18:42:10 +04:00
|
|
|
if err != nil {
|
2015-11-14 15:44:16 +03:00
|
|
|
setCmdsErr(retCmds, err)
|
|
|
|
return retCmds, err
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
|
2016-07-01 15:25:28 +03:00
|
|
|
err = c.execCmds(cn, cmds)
|
|
|
|
c.putConn(cn, err, false)
|
2015-11-14 15:44:16 +03:00
|
|
|
return retCmds, err
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
|
2016-07-01 15:25:28 +03:00
|
|
|
func (c *Tx) execCmds(cn *pool.Conn, cmds []Cmder) error {
|
2016-03-12 11:52:13 +03:00
|
|
|
err := writeCmd(cn, cmds...)
|
2012-08-11 18:42:10 +04:00
|
|
|
if err != nil {
|
2014-05-11 11:42:40 +04:00
|
|
|
setCmdsErr(cmds[1:len(cmds)-1], err)
|
2012-08-11 18:42:10 +04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2014-05-11 11:42:40 +04:00
|
|
|
statusCmd := NewStatusCmd()
|
2012-08-11 18:42:10 +04:00
|
|
|
|
2014-05-11 11:42:40 +04:00
|
|
|
// Omit last command (EXEC).
|
|
|
|
cmdsLen := len(cmds) - 1
|
2012-08-11 18:42:10 +04:00
|
|
|
|
|
|
|
// Parse queued replies.
|
2014-05-11 11:42:40 +04:00
|
|
|
for i := 0; i < cmdsLen; i++ {
|
2015-10-07 17:09:20 +03:00
|
|
|
if err := statusCmd.readReply(cn); err != nil {
|
2014-05-11 11:42:40 +04:00
|
|
|
setCmdsErr(cmds[1:len(cmds)-1], err)
|
2012-08-11 18:42:10 +04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Parse number of replies.
|
2015-09-03 17:55:31 +03:00
|
|
|
line, err := readLine(cn)
|
2012-08-11 18:42:10 +04:00
|
|
|
if err != nil {
|
2015-12-22 12:02:18 +03:00
|
|
|
if err == Nil {
|
|
|
|
err = TxFailedErr
|
|
|
|
}
|
2014-05-11 11:42:40 +04:00
|
|
|
setCmdsErr(cmds[1:len(cmds)-1], err)
|
2012-08-11 18:42:10 +04:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if line[0] != '*' {
|
2014-05-11 11:42:40 +04:00
|
|
|
err := fmt.Errorf("redis: expected '*', but got line %q", line)
|
|
|
|
setCmdsErr(cmds[1:len(cmds)-1], err)
|
|
|
|
return err
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
|
2014-05-11 11:42:40 +04:00
|
|
|
var firstCmdErr error
|
|
|
|
|
2012-08-11 18:42:10 +04:00
|
|
|
// Parse replies.
|
2014-05-11 11:42:40 +04:00
|
|
|
// Loop starts from 1 to omit MULTI cmd.
|
|
|
|
for i := 1; i < cmdsLen; i++ {
|
|
|
|
cmd := cmds[i]
|
2015-10-07 17:09:20 +03:00
|
|
|
if err := cmd.readReply(cn); err != nil {
|
2014-05-11 11:42:40 +04:00
|
|
|
if firstCmdErr == nil {
|
|
|
|
firstCmdErr = err
|
|
|
|
}
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-11 11:42:40 +04:00
|
|
|
return firstCmdErr
|
2012-08-11 18:42:10 +04:00
|
|
|
}
|