redis/tx.go

192 lines
4.0 KiB
Go
Raw Normal View History

package redis
import (
2014-05-11 11:42:40 +04:00
"errors"
"fmt"
2016-04-09 14:52:01 +03:00
"gopkg.in/redis.v4/internal"
"gopkg.in/redis.v4/internal/pool"
)
2014-05-11 11:42:40 +04:00
var errDiscard = errors.New("redis: Discard can be used only inside Exec")
// 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 {
2015-01-24 15:12:48 +03:00
commandable
base *baseClient
2015-11-04 15:25:48 +03:00
cmds []Cmder
closed bool
}
func (c *Client) newTx() *Tx {
tx := &Tx{
base: &baseClient{
opt: c.opt,
connPool: pool.NewStickyConnPool(c.connPool.(*pool.ConnPool), true),
},
2015-01-24 15:12:48 +03:00
}
tx.commandable.process = tx.process
return tx
}
// Watch creates new transaction and marks the keys to be watched
// for conditional execution of a transaction.
func (c *Client) Watch(keys ...string) (*Tx, error) {
tx := c.newTx()
if len(keys) > 0 {
if err := tx.Watch(keys...).Err(); err != nil {
tx.Close()
return nil, err
}
}
return tx, nil
2015-01-24 15:12:48 +03:00
}
func (tx *Tx) process(cmd Cmder) {
if tx.cmds == nil {
tx.base.process(cmd)
2015-01-24 15:12:48 +03:00
} else {
tx.cmds = append(tx.cmds, cmd)
2014-05-11 11:42:40 +04:00
}
}
// Close closes the transaction, releasing any open resources.
func (tx *Tx) Close() error {
tx.closed = true
if err := tx.Unwatch().Err(); err != nil {
2016-04-09 14:52:01 +03:00
internal.Logf("Unwatch failed: %s", err)
}
return tx.base.Close()
}
2015-11-04 15:25:48 +03:00
// Watch marks the keys to be watched for conditional execution
// of a transaction.
func (tx *Tx) Watch(keys ...string) *StatusCmd {
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...)
tx.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 (tx *Tx) Unwatch(keys ...string) *StatusCmd {
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...)
tx.Process(cmd)
2014-05-11 11:42:40 +04:00
return cmd
}
2015-11-04 15:25:48 +03:00
// Discard discards queued commands.
func (tx *Tx) Discard() error {
if tx.cmds == nil {
2014-05-11 11:42:40 +04:00
return errDiscard
2012-08-25 23:51:42 +04:00
}
tx.cmds = tx.cmds[:1]
2014-05-11 11:42:40 +04:00
return nil
}
2015-11-04 15:25:48 +03:00
// Exec executes all previously queued commands in a transaction
// 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.
func (tx *Tx) Exec(f func() error) ([]Cmder, error) {
if tx.closed {
return nil, pool.ErrClosed
2015-11-04 15:25:48 +03:00
}
tx.cmds = []Cmder{NewStatusCmd("MULTI")}
2014-07-02 17:18:19 +04:00
if err := f(); err != nil {
return nil, err
}
tx.cmds = append(tx.cmds, NewSliceCmd("EXEC"))
2012-08-25 23:51:42 +04:00
cmds := tx.cmds
tx.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
}
// Strip MULTI and EXEC commands.
retCmds := cmds[1 : len(cmds)-1]
cn, err := tx.base.conn()
if err != nil {
setCmdsErr(retCmds, err)
return retCmds, err
}
err = tx.execCmds(cn, cmds)
tx.base.putConn(cn, err, false)
return retCmds, err
}
func (tx *Tx) execCmds(cn *pool.Conn, cmds []Cmder) error {
err := writeCmd(cn, cmds...)
if err != nil {
2014-05-11 11:42:40 +04:00
setCmdsErr(cmds[1:len(cmds)-1], err)
return err
}
2014-05-11 11:42:40 +04:00
statusCmd := NewStatusCmd()
2014-05-11 11:42:40 +04:00
// Omit last command (EXEC).
cmdsLen := len(cmds) - 1
// 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)
return err
}
}
// Parse number of replies.
2015-09-03 17:55:31 +03:00
line, err := readLine(cn)
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)
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
}
2014-05-11 11:42:40 +04:00
var firstCmdErr error
// 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
}
}
}
2014-05-11 11:42:40 +04:00
return firstCmdErr
}