redis/v2/multi.go

126 lines
2.1 KiB
Go
Raw Normal View History

2013-07-02 15:17:31 +04:00
package redis
import (
2013-09-29 11:17:39 +04:00
"errors"
2013-07-02 15:17:31 +04:00
"fmt"
)
2013-09-29 11:17:39 +04:00
var errDiscard = errors.New("redis: Discard can be used only inside Exec")
// Not thread-safe.
type Multi struct {
2013-07-02 15:17:31 +04:00
*Client
}
2013-09-29 11:17:39 +04:00
func (c *Client) Multi() *Multi {
return &Multi{
2013-07-02 15:17:31 +04:00
Client: &Client{
baseClient: &baseClient{
2013-09-11 20:22:10 +04:00
opt: c.opt,
2013-07-02 15:17:31 +04:00
connPool: newSingleConnPool(c.connPool, nil, true),
},
},
2013-09-29 11:17:39 +04:00
}
2013-07-02 15:17:31 +04:00
}
2013-09-29 11:17:39 +04:00
func (c *Multi) Close() error {
2013-07-02 15:17:31 +04:00
c.Unwatch()
return c.Client.Close()
}
2013-09-29 12:06:49 +04:00
func (c *Multi) Watch(keys ...string) *StatusCmd {
2013-07-02 15:17:31 +04:00
args := append([]string{"WATCH"}, keys...)
2013-09-29 12:06:49 +04:00
cmd := NewStatusCmd(args...)
c.Process(cmd)
return cmd
2013-07-02 15:17:31 +04:00
}
2013-09-29 12:06:49 +04:00
func (c *Multi) Unwatch(keys ...string) *StatusCmd {
2013-07-02 15:17:31 +04:00
args := append([]string{"UNWATCH"}, keys...)
2013-09-29 12:06:49 +04:00
cmd := NewStatusCmd(args...)
c.Process(cmd)
return cmd
2013-07-02 15:17:31 +04:00
}
2013-09-29 11:17:39 +04:00
func (c *Multi) Discard() error {
2013-09-29 12:06:49 +04:00
if c.cmds == nil {
2013-09-29 11:17:39 +04:00
return errDiscard
2013-07-02 15:17:31 +04:00
}
2013-09-29 12:06:49 +04:00
c.cmds = c.cmds[:1]
2013-09-29 11:17:39 +04:00
return nil
2013-07-02 15:17:31 +04:00
}
2013-09-29 12:06:49 +04:00
func (c *Multi) Exec(f func()) ([]Cmder, error) {
c.cmds = []Cmder{NewStatusCmd("MULTI")}
2013-09-29 11:17:39 +04:00
f()
2013-09-29 12:06:49 +04:00
c.cmds = append(c.cmds, NewSliceCmd("EXEC"))
2013-07-02 15:17:31 +04:00
2013-09-29 12:06:49 +04:00
cmds := c.cmds
c.cmds = nil
2013-07-02 15:17:31 +04:00
2013-09-29 12:06:49 +04:00
if len(cmds) == 2 {
return []Cmder{}, nil
2013-07-02 15:17:31 +04:00
}
cn, err := c.conn()
if err != nil {
return nil, err
}
// Synchronize writes and reads to the connection using mutex.
2013-09-29 12:06:49 +04:00
err = c.execCmds(cmds, cn)
2013-07-02 15:17:31 +04:00
if err != nil {
c.removeConn(cn)
return nil, err
}
c.putConn(cn)
2013-09-29 12:06:49 +04:00
return cmds[1 : len(cmds)-1], nil
2013-07-02 15:17:31 +04:00
}
2013-09-29 12:06:49 +04:00
func (c *Multi) execCmds(cmds []Cmder, cn *conn) error {
err := c.writeCmd(cn, cmds...)
2013-07-02 15:17:31 +04:00
if err != nil {
return err
}
2013-09-29 12:06:49 +04:00
statusCmd := NewStatusCmd()
2013-07-02 15:17:31 +04:00
2013-09-29 12:06:49 +04:00
// Omit last cmduest (EXEC).
cmdsLen := len(cmds) - 1
2013-07-02 15:17:31 +04:00
// Parse queued replies.
2013-09-29 12:06:49 +04:00
for i := 0; i < cmdsLen; i++ {
2013-09-29 12:11:18 +04:00
_, err = statusCmd.parseReply(cn.rd)
2013-07-02 15:17:31 +04:00
if err != nil {
return err
}
}
// Parse number of replies.
2013-09-29 12:11:18 +04:00
line, err := readLine(cn.rd)
2013-07-02 15:17:31 +04:00
if err != nil {
return err
}
if line[0] != '*' {
2013-09-29 11:17:39 +04:00
return fmt.Errorf("redis: expected '*', but got line %q", line)
2013-07-02 15:17:31 +04:00
}
if len(line) == 3 && line[1] == '-' && line[2] == '1' {
return Nil
}
// Parse replies.
2013-09-29 12:06:49 +04:00
// Loop starts from 1 to omit first cmduest (MULTI).
for i := 1; i < cmdsLen; i++ {
cmd := cmds[i]
2013-09-29 12:11:18 +04:00
val, err := cmd.parseReply(cn.rd)
2013-07-02 15:17:31 +04:00
if err != nil {
2013-09-29 12:06:49 +04:00
cmd.setErr(err)
2013-07-02 15:17:31 +04:00
} else {
2013-09-29 12:06:49 +04:00
cmd.setVal(val)
2013-07-02 15:17:31 +04:00
}
}
return nil
}