redis/redis.go

520 lines
11 KiB
Go
Raw Normal View History

2017-02-18 17:42:34 +03:00
package redis
2012-07-25 17:00:50 +04:00
import (
"context"
2015-05-15 15:21:28 +03:00
"fmt"
2014-07-31 17:01:54 +04:00
"log"
"os"
"time"
2017-02-18 17:42:34 +03:00
"github.com/go-redis/redis/internal"
"github.com/go-redis/redis/internal/pool"
"github.com/go-redis/redis/internal/proto"
2012-08-09 14:12:41 +04:00
)
2012-07-25 17:00:50 +04:00
2018-03-06 15:50:48 +03:00
// Nil reply Redis returns when key does not exist.
2018-02-22 15:14:30 +03:00
const Nil = proto.Nil
2016-07-02 15:52:10 +03:00
func init() {
SetLogger(log.New(os.Stderr, "redis: ", log.LstdFlags|log.Lshortfile))
}
func SetLogger(logger *log.Logger) {
2016-04-09 14:52:01 +03:00
internal.Logger = logger
}
type baseClient struct {
opt *Options
2018-03-07 14:50:14 +03:00
connPool pool.Pooler
process func(Cmder) error
processPipeline func([]Cmder) error
processTxPipeline func([]Cmder) error
onClose func() error // hook called when client is closed
}
2018-01-20 13:26:33 +03:00
func (c *baseClient) init() {
c.process = c.defaultProcess
c.processPipeline = c.defaultProcessPipeline
c.processTxPipeline = c.defaultProcessTxPipeline
}
2015-05-15 15:21:28 +03:00
func (c *baseClient) String() string {
2016-10-05 23:20:05 +03:00
return fmt.Sprintf("Redis<%s db:%d>", c.getAddr(), c.opt.DB)
2015-05-15 15:21:28 +03:00
}
2017-07-09 10:07:20 +03:00
func (c *baseClient) newConn() (*pool.Conn, error) {
cn, err := c.connPool.NewConn()
if err != nil {
return nil, err
}
2018-08-12 10:08:21 +03:00
if cn.InitedAt.IsZero() {
2017-07-09 10:07:20 +03:00
if err := c.initConn(cn); err != nil {
_ = c.connPool.CloseConn(cn)
return nil, err
}
}
return cn, nil
}
2018-05-28 17:27:24 +03:00
func (c *baseClient) getConn() (*pool.Conn, error) {
cn, err := c.connPool.Get()
2016-03-15 15:04:35 +03:00
if err != nil {
2018-05-28 17:27:24 +03:00
return nil, err
2016-03-15 15:04:35 +03:00
}
2018-08-12 10:08:21 +03:00
if cn.InitedAt.IsZero() {
2018-05-28 17:27:24 +03:00
err := c.initConn(cn)
if err != nil {
c.connPool.Remove(cn)
return nil, err
2016-03-12 13:41:02 +03:00
}
}
2017-04-18 13:12:38 +03:00
2018-05-28 17:27:24 +03:00
return cn, nil
2012-07-26 19:16:17 +04:00
}
2017-07-09 10:07:20 +03:00
func (c *baseClient) releaseConn(cn *pool.Conn, err error) bool {
2017-04-24 12:43:15 +03:00
if internal.IsBadConn(err, false) {
2018-05-28 17:27:24 +03:00
c.connPool.Remove(cn)
return false
}
2018-05-28 17:27:24 +03:00
c.connPool.Put(cn)
return true
}
2016-03-12 13:41:02 +03:00
func (c *baseClient) initConn(cn *pool.Conn) error {
2018-08-12 10:08:21 +03:00
cn.InitedAt = time.Now()
2016-03-15 15:04:35 +03:00
2017-05-25 14:16:39 +03:00
if c.opt.Password == "" &&
c.opt.DB == 0 &&
!c.opt.readOnly &&
2017-05-25 14:16:39 +03:00
c.opt.OnConnect == nil {
2016-03-12 13:41:02 +03:00
return nil
}
conn := newConn(c.opt, cn)
2017-05-25 14:16:39 +03:00
_, err := conn.Pipelined(func(pipe Pipeliner) error {
if c.opt.Password != "" {
pipe.Auth(c.opt.Password)
2016-03-12 13:41:02 +03:00
}
if c.opt.DB > 0 {
pipe.Select(c.opt.DB)
2016-03-12 13:41:02 +03:00
}
if c.opt.readOnly {
pipe.ReadOnly()
}
return nil
})
2017-05-25 14:16:39 +03:00
if err != nil {
return err
}
if c.opt.OnConnect != nil {
return c.opt.OnConnect(conn)
}
return nil
2016-03-12 13:41:02 +03:00
}
2018-08-12 11:11:01 +03:00
// Do creates a Cmd from the args and processes the cmd.
func (c *baseClient) Do(args ...interface{}) *Cmd {
cmd := NewCmd(args...)
c.Process(cmd)
return cmd
}
2018-03-06 15:50:48 +03:00
// WrapProcess wraps function that processes Redis commands.
2018-08-12 11:11:01 +03:00
func (c *baseClient) WrapProcess(
fn func(oldProcess func(cmd Cmder) error) func(cmd Cmder) error,
) {
2018-01-20 13:26:33 +03:00
c.process = fn(c.process)
}
2017-07-09 13:10:07 +03:00
func (c *baseClient) Process(cmd Cmder) error {
2018-01-20 13:26:33 +03:00
return c.process(cmd)
2017-07-09 13:10:07 +03:00
}
func (c *baseClient) defaultProcess(cmd Cmder) error {
2017-07-09 13:10:07 +03:00
for attempt := 0; attempt <= c.opt.MaxRetries; attempt++ {
if attempt > 0 {
time.Sleep(c.retryBackoff(attempt))
2017-05-25 08:08:44 +03:00
}
2018-05-28 17:27:24 +03:00
cn, err := c.getConn()
if err != nil {
cmd.setErr(err)
if internal.IsRetryableError(err, true) {
2017-05-25 08:08:44 +03:00
continue
}
2016-06-17 15:09:38 +03:00
return err
}
2012-07-26 22:43:21 +04:00
2018-08-15 11:53:15 +03:00
err = cn.WithWriter(c.opt.WriteTimeout, func(wb *proto.WriteBuffer) error {
return writeCmd(wb, cmd)
})
if err != nil {
2017-07-09 10:07:20 +03:00
c.releaseConn(cn, err)
cmd.setErr(err)
if internal.IsRetryableError(err, true) {
continue
}
2016-06-17 15:09:38 +03:00
return err
}
2018-08-15 11:53:15 +03:00
err = cn.WithReader(c.cmdTimeout(cmd), func(rd proto.Reader) error {
return cmd.readReply(rd)
})
2017-07-09 10:07:20 +03:00
c.releaseConn(cn, err)
if err != nil && internal.IsRetryableError(err, cmd.readTimeout() == nil) {
continue
}
2016-06-17 15:09:38 +03:00
return err
2012-07-26 19:16:17 +04:00
}
2016-06-17 15:09:38 +03:00
return cmd.Err()
2014-05-11 11:42:40 +04:00
}
2017-07-09 13:10:07 +03:00
func (c *baseClient) retryBackoff(attempt int) time.Duration {
return internal.RetryBackoff(attempt, c.opt.MinRetryBackoff, c.opt.MaxRetryBackoff)
}
func (c *baseClient) cmdTimeout(cmd Cmder) time.Duration {
if timeout := cmd.readTimeout(); timeout != nil {
return readTimeout(*timeout)
}
2018-01-24 21:38:47 +03:00
return c.opt.ReadTimeout
}
2014-05-11 11:42:40 +04:00
// Close closes the client, releasing any open resources.
2015-09-12 09:36:03 +03:00
//
// It is rare to Close a Client, as the Client is meant to be
// long-lived and shared between many goroutines.
2014-05-11 11:42:40 +04:00
func (c *baseClient) Close() error {
var firstErr error
if c.onClose != nil {
if err := c.onClose(); err != nil && firstErr == nil {
firstErr = err
}
}
if err := c.connPool.Close(); err != nil && firstErr == nil {
firstErr = err
}
return firstErr
2012-07-26 19:16:17 +04:00
}
2016-10-05 23:20:05 +03:00
func (c *baseClient) getAddr() string {
return c.opt.Addr
}
2018-01-20 13:26:33 +03:00
func (c *baseClient) WrapProcessPipeline(
fn func(oldProcess func([]Cmder) error) func([]Cmder) error,
) {
c.processPipeline = fn(c.processPipeline)
c.processTxPipeline = fn(c.processTxPipeline)
}
func (c *baseClient) defaultProcessPipeline(cmds []Cmder) error {
return c.generalProcessPipeline(cmds, c.pipelineProcessCmds)
}
func (c *baseClient) defaultProcessTxPipeline(cmds []Cmder) error {
return c.generalProcessPipeline(cmds, c.txPipelineProcessCmds)
}
2016-12-13 18:28:39 +03:00
type pipelineProcessor func(*pool.Conn, []Cmder) (bool, error)
2018-01-20 13:26:33 +03:00
func (c *baseClient) generalProcessPipeline(cmds []Cmder, p pipelineProcessor) error {
for attempt := 0; attempt <= c.opt.MaxRetries; attempt++ {
if attempt > 0 {
time.Sleep(c.retryBackoff(attempt))
}
2017-08-31 15:22:47 +03:00
2018-05-28 17:27:24 +03:00
cn, err := c.getConn()
2018-01-20 13:26:33 +03:00
if err != nil {
setCmdsErr(cmds, err)
return err
}
2016-12-13 18:28:39 +03:00
2018-01-20 13:26:33 +03:00
canRetry, err := p(cn, cmds)
2017-08-31 15:22:47 +03:00
2018-01-20 13:26:33 +03:00
if err == nil || internal.IsRedisError(err) {
2018-05-28 17:27:24 +03:00
c.connPool.Put(cn)
2018-01-20 13:26:33 +03:00
break
}
2018-05-28 17:27:24 +03:00
c.connPool.Remove(cn)
2017-08-31 15:22:47 +03:00
2018-01-20 13:26:33 +03:00
if !canRetry || !internal.IsRetryableError(err, true) {
break
2016-12-13 18:28:39 +03:00
}
}
2018-08-12 11:11:01 +03:00
return cmdsFirstErr(cmds)
2016-12-13 18:28:39 +03:00
}
2017-05-25 14:16:39 +03:00
func (c *baseClient) pipelineProcessCmds(cn *pool.Conn, cmds []Cmder) (bool, error) {
2018-08-15 11:53:15 +03:00
err := cn.WithWriter(c.opt.WriteTimeout, func(wb *proto.WriteBuffer) error {
return writeCmd(wb, cmds...)
})
if err != nil {
2016-12-13 18:28:39 +03:00
setCmdsErr(cmds, err)
return true, err
}
2018-08-15 11:53:15 +03:00
err = cn.WithReader(c.opt.ReadTimeout, func(rd proto.Reader) error {
return pipelineReadCmds(rd, cmds)
})
return true, err
2016-12-13 18:28:39 +03:00
}
2018-08-15 09:38:58 +03:00
func pipelineReadCmds(rd proto.Reader, cmds []Cmder) error {
2017-08-31 15:22:47 +03:00
for _, cmd := range cmds {
2018-08-15 09:38:58 +03:00
err := cmd.readReply(rd)
2017-08-31 15:22:47 +03:00
if err != nil && !internal.IsRedisError(err) {
return err
2016-12-13 18:28:39 +03:00
}
}
2017-08-31 15:22:47 +03:00
return nil
2016-12-13 18:28:39 +03:00
}
func (c *baseClient) txPipelineProcessCmds(cn *pool.Conn, cmds []Cmder) (bool, error) {
2018-08-15 11:53:15 +03:00
err := cn.WithWriter(c.opt.WriteTimeout, func(wb *proto.WriteBuffer) error {
return txPipelineWriteMulti(wb, cmds)
})
2018-08-15 09:38:58 +03:00
if err != nil {
2016-12-13 18:28:39 +03:00
setCmdsErr(cmds, err)
return true, err
}
2018-08-15 11:53:15 +03:00
err = cn.WithReader(c.opt.ReadTimeout, func(rd proto.Reader) error {
err := txPipelineReadQueued(rd, cmds)
if err != nil {
setCmdsErr(cmds, err)
return err
}
return pipelineReadCmds(rd, cmds)
})
return false, err
2016-12-13 18:28:39 +03:00
}
2018-08-15 11:53:15 +03:00
func txPipelineWriteMulti(wb *proto.WriteBuffer, cmds []Cmder) error {
2016-12-13 18:28:39 +03:00
multiExec := make([]Cmder, 0, len(cmds)+2)
multiExec = append(multiExec, NewStatusCmd("MULTI"))
multiExec = append(multiExec, cmds...)
multiExec = append(multiExec, NewSliceCmd("EXEC"))
2018-08-15 11:53:15 +03:00
return writeCmd(wb, multiExec...)
2016-12-13 18:28:39 +03:00
}
2018-08-15 11:53:15 +03:00
func txPipelineReadQueued(rd proto.Reader, cmds []Cmder) error {
2016-12-13 18:28:39 +03:00
// Parse queued replies.
var statusCmd StatusCmd
2018-08-15 09:38:58 +03:00
err := statusCmd.readReply(rd)
if err != nil {
2017-08-31 15:22:47 +03:00
return err
2016-12-13 18:28:39 +03:00
}
2017-08-31 15:22:47 +03:00
for _ = range cmds {
2018-08-15 09:38:58 +03:00
err = statusCmd.readReply(rd)
2017-08-31 15:22:47 +03:00
if err != nil && !internal.IsRedisError(err) {
return err
2016-12-13 18:28:39 +03:00
}
}
// Parse number of replies.
2018-08-15 09:38:58 +03:00
line, err := rd.ReadLine()
2016-12-13 18:28:39 +03:00
if err != nil {
if err == Nil {
err = TxFailedErr
}
return err
}
switch line[0] {
case proto.ErrorReply:
return proto.ParseErrorReply(line)
case proto.ArrayReply:
// ok
default:
err := fmt.Errorf("redis: expected '*', but got line %q", line)
return err
}
return nil
}
2014-05-11 11:42:40 +04:00
//------------------------------------------------------------------------------
2015-09-12 09:36:03 +03:00
// Client is a Redis client representing a pool of zero or more
// underlying connections. It's safe for concurrent use by multiple
// goroutines.
type Client struct {
2016-03-09 12:49:05 +03:00
baseClient
cmdable
2018-03-07 14:50:14 +03:00
ctx context.Context
2015-01-24 15:12:48 +03:00
}
// NewClient returns a client to the Redis Server specified by Options.
func NewClient(opt *Options) *Client {
opt.init()
2018-01-20 13:26:33 +03:00
c := Client{
2016-12-30 13:58:04 +03:00
baseClient: baseClient{
opt: opt,
connPool: newConnPool(opt),
2016-12-30 13:58:04 +03:00
},
2015-01-24 15:12:48 +03:00
}
2018-01-20 13:26:33 +03:00
c.baseClient.init()
c.init()
2018-01-20 13:26:33 +03:00
return &c
2012-08-05 16:09:43 +04:00
}
func (c *Client) init() {
c.cmdable.setProcessor(c.Process)
}
2016-01-19 19:36:40 +03:00
func (c *Client) Context() context.Context {
if c.ctx != nil {
return c.ctx
}
return context.Background()
}
func (c *Client) WithContext(ctx context.Context) *Client {
if ctx == nil {
panic("nil context")
}
c2 := c.copy()
c2.ctx = ctx
return c2
}
2017-01-13 07:11:07 +03:00
func (c *Client) copy() *Client {
2018-03-07 14:50:14 +03:00
cp := *c
cp.init()
2018-03-07 14:50:14 +03:00
return &cp
2017-01-11 06:32:10 +03:00
}
2017-05-25 14:16:39 +03:00
// Options returns read-only Options that were used to create the client.
func (c *Client) Options() *Options {
return c.opt
}
2017-09-11 10:12:00 +03:00
type PoolStats pool.Stats
// PoolStats returns connection pool stats.
2016-01-19 19:36:40 +03:00
func (c *Client) PoolStats() *PoolStats {
2017-09-11 10:12:00 +03:00
stats := c.connPool.Stats()
return (*PoolStats)(stats)
2016-01-19 19:36:40 +03:00
}
2017-05-02 18:00:53 +03:00
func (c *Client) Pipelined(fn func(Pipeliner) error) ([]Cmder, error) {
2017-09-25 11:48:44 +03:00
return c.Pipeline().Pipelined(fn)
2016-12-13 18:28:39 +03:00
}
2017-05-02 18:00:53 +03:00
func (c *Client) Pipeline() Pipeliner {
pipe := Pipeline{
2018-01-20 13:26:33 +03:00
exec: c.processPipeline,
}
2018-01-20 13:26:33 +03:00
pipe.statefulCmdable.setProcessor(pipe.Process)
return &pipe
}
2017-05-02 18:00:53 +03:00
func (c *Client) TxPipelined(fn func(Pipeliner) error) ([]Cmder, error) {
2017-09-25 11:48:44 +03:00
return c.TxPipeline().Pipelined(fn)
}
2016-12-16 15:19:53 +03:00
// TxPipeline acts like Pipeline, but wraps queued commands with MULTI/EXEC.
func (c *Client) TxPipeline() Pipeliner {
2016-12-13 18:28:39 +03:00
pipe := Pipeline{
2018-01-20 13:26:33 +03:00
exec: c.processTxPipeline,
}
2018-01-20 13:26:33 +03:00
pipe.statefulCmdable.setProcessor(pipe.Process)
2016-12-13 18:28:39 +03:00
return &pipe
}
func (c *Client) pubSub() *PubSub {
2018-07-23 15:55:13 +03:00
pubsub := &PubSub{
2017-07-09 10:07:20 +03:00
opt: c.opt,
newConn: func(channels []string) (*pool.Conn, error) {
return c.newConn()
},
2017-07-09 10:07:20 +03:00
closeConn: c.connPool.CloseConn,
}
2018-07-23 15:55:13 +03:00
pubsub.init()
return pubsub
}
// Subscribe subscribes the client to the specified channels.
2017-06-17 12:43:19 +03:00
// Channels can be omitted to create empty subscription.
2017-04-11 16:53:55 +03:00
func (c *Client) Subscribe(channels ...string) *PubSub {
pubsub := c.pubSub()
if len(channels) > 0 {
2017-04-11 16:53:55 +03:00
_ = pubsub.Subscribe(channels...)
}
2017-04-11 16:53:55 +03:00
return pubsub
}
// PSubscribe subscribes the client to the given patterns.
2017-06-17 12:43:19 +03:00
// Patterns can be omitted to create empty subscription.
2017-04-11 16:53:55 +03:00
func (c *Client) PSubscribe(channels ...string) *PubSub {
pubsub := c.pubSub()
if len(channels) > 0 {
2017-04-11 16:53:55 +03:00
_ = pubsub.PSubscribe(channels...)
}
2017-04-11 16:53:55 +03:00
return pubsub
}
2017-05-25 14:16:39 +03:00
//------------------------------------------------------------------------------
// Conn is like Client, but its pool contains single connection.
type Conn struct {
baseClient
statefulCmdable
}
func newConn(opt *Options, cn *pool.Conn) *Conn {
c := Conn{
baseClient: baseClient{
opt: opt,
connPool: pool.NewSingleConnPool(cn),
},
}
c.baseClient.init()
c.statefulCmdable.setProcessor(c.Process)
return &c
}
2017-05-25 14:16:39 +03:00
func (c *Conn) Pipelined(fn func(Pipeliner) error) ([]Cmder, error) {
2017-09-25 11:48:44 +03:00
return c.Pipeline().Pipelined(fn)
2017-05-25 14:16:39 +03:00
}
func (c *Conn) Pipeline() Pipeliner {
pipe := Pipeline{
2018-01-20 13:26:33 +03:00
exec: c.processPipeline,
2017-05-25 14:16:39 +03:00
}
2018-01-20 13:26:33 +03:00
pipe.statefulCmdable.setProcessor(pipe.Process)
2017-05-25 14:16:39 +03:00
return &pipe
}
func (c *Conn) TxPipelined(fn func(Pipeliner) error) ([]Cmder, error) {
2017-09-25 11:48:44 +03:00
return c.TxPipeline().Pipelined(fn)
2017-05-25 14:16:39 +03:00
}
// TxPipeline acts like Pipeline, but wraps queued commands with MULTI/EXEC.
func (c *Conn) TxPipeline() Pipeliner {
pipe := Pipeline{
2018-01-20 13:26:33 +03:00
exec: c.processTxPipeline,
2017-05-25 14:16:39 +03:00
}
2018-01-20 13:26:33 +03:00
pipe.statefulCmdable.setProcessor(pipe.Process)
2017-05-25 14:16:39 +03:00
return &pipe
}