redis/tx.go

184 lines
4.0 KiB
Go
Raw Normal View History

package redis
import (
"fmt"
2016-10-09 13:49:28 +03:00
"gopkg.in/redis.v5/internal"
"gopkg.in/redis.v5/internal/pool"
"gopkg.in/redis.v5/internal/proto"
)
2016-07-02 15:52:10 +03:00
// Redis transaction failed.
const TxFailedErr = internal.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 {
cmdable
statefulCmdable
baseClient
2015-11-04 15:25:48 +03:00
closed bool
}
var _ Cmdable = (*Tx)(nil)
func (c *Client) newTx() *Tx {
tx := Tx{
baseClient: baseClient{
opt: c.opt,
connPool: pool.NewStickyConnPool(c.connPool.(*pool.ConnPool), true),
},
2015-01-24 15:12:48 +03:00
}
tx.cmdable.process = tx.Process
tx.statefulCmdable.process = tx.Process
return &tx
}
2016-05-02 15:54:15 +03:00
func (c *Client) Watch(fn func(*Tx) error, keys ...string) error {
tx := c.newTx()
if len(keys) > 0 {
if err := tx.Watch(keys...).Err(); err != nil {
_ = tx.close()
2016-05-02 15:54:15 +03:00
return err
}
}
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-05-02 15:54:15 +03:00
// close closes the transaction, releasing any open resources.
func (c *Tx) close() error {
if c.closed {
2016-05-02 15:54:15 +03:00
return nil
}
c.closed = true
if err := c.Unwatch().Err(); err != nil {
2016-04-09 14:52:01 +03:00
internal.Logf("Unwatch failed: %s", 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))
args[0] = "WATCH"
for i, key := range keys {
args[1+i] = key
}
2014-05-11 11:42:40 +04:00
cmd := NewStatusCmd(args...)
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))
args[0] = "UNWATCH"
for i, key := range keys {
args[1+i] = key
}
2014-05-11 11:42:40 +04:00
cmd := NewStatusCmd(args...)
c.Process(cmd)
2014-05-11 11:42:40 +04:00
return cmd
}
func (c *Tx) Pipeline() *Pipeline {
pipe := Pipeline{
exec: c.exec,
2012-08-25 23:51:42 +04:00
}
pipe.cmdable.process = pipe.Process
pipe.statefulCmdable.process = pipe.Process
return &pipe
}
// 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.
func (c *Tx) Pipelined(fn func(*Pipeline) error) ([]Cmder, error) {
return c.Pipeline().pipelined(fn)
}
2012-08-13 15:45:32 +04:00
func (c *Tx) exec(cmds []Cmder) error {
if c.closed {
return pool.ErrClosed
}
2016-09-29 15:07:04 +03:00
cn, _, err := c.conn()
if err != nil {
setCmdsErr(cmds, err)
return err
}
multiExec := make([]Cmder, 0, len(cmds)+2)
multiExec = append(multiExec, NewStatusCmd("MULTI"))
multiExec = append(multiExec, cmds...)
multiExec = append(multiExec, NewSliceCmd("EXEC"))
err = c.execCmds(cn, multiExec)
c.putConn(cn, err, false)
return err
}
func (c *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
// Omit last command (EXEC).
cmdsLen := len(cmds) - 1
// Parse queued replies.
statusCmd := cmds[0]
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.
2016-07-02 15:52:10 +03:00
line, err := cn.Rd.ReadLine()
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
}
2016-07-02 15:52:10 +03:00
if line[0] != proto.ArrayReply {
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
}
var firstErr error
2014-05-11 11:42:40 +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 {
if firstErr == nil {
firstErr = err
2014-05-11 11:42:40 +04:00
}
}
}
return firstErr
}