123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137 |
- // Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
- //
- // This Source Code Form is subject to the terms of the MIT License.
- // If a copy of the MIT was not distributed with this file,
- // You can obtain one at https://github.com/gogf/gf.
- package gredis
- import (
- "context"
- "github.com/gogf/gf/v2/container/gvar"
- "github.com/gogf/gf/v2/errors/gcode"
- "github.com/gogf/gf/v2/errors/gerror"
- "github.com/gogf/gf/v2/text/gstr"
- )
- // Redis client.
- type Redis struct {
- config *Config
- localAdapter
- localGroup
- }
- type (
- localGroup struct {
- localGroupGeneric
- localGroupHash
- localGroupList
- localGroupPubSub
- localGroupScript
- localGroupSet
- localGroupSortedSet
- localGroupString
- }
- localAdapter = Adapter
- localGroupGeneric = IGroupGeneric
- localGroupHash = IGroupHash
- localGroupList = IGroupList
- localGroupPubSub = IGroupPubSub
- localGroupScript = IGroupScript
- localGroupSet = IGroupSet
- localGroupSortedSet = IGroupSortedSet
- localGroupString = IGroupString
- )
- const (
- errorNilRedis = `the Redis object is nil`
- )
- var (
- errorNilAdapter = gstr.Trim(gstr.Replace(`
- redis adapter is not set, missing configuration or adapter register?
- possible reference: https://github.com/gogf/gf/tree/master/contrib/nosql/redis
- `, "\n", ""))
- )
- // initGroup initializes the group object of redis.
- func (r *Redis) initGroup() *Redis {
- r.localGroup = localGroup{
- localGroupGeneric: r.localAdapter.GroupGeneric(),
- localGroupHash: r.localAdapter.GroupHash(),
- localGroupList: r.localAdapter.GroupList(),
- localGroupPubSub: r.localAdapter.GroupPubSub(),
- localGroupScript: r.localAdapter.GroupScript(),
- localGroupSet: r.localAdapter.GroupSet(),
- localGroupSortedSet: r.localAdapter.GroupSortedSet(),
- localGroupString: r.localAdapter.GroupString(),
- }
- return r
- }
- // SetAdapter changes the underlying adapter with custom adapter for current redis client.
- func (r *Redis) SetAdapter(adapter Adapter) {
- if r == nil {
- panic(gerror.NewCode(gcode.CodeInvalidParameter, errorNilRedis))
- }
- r.localAdapter = adapter
- }
- // GetAdapter returns the adapter that is set in current redis client.
- func (r *Redis) GetAdapter() Adapter {
- if r == nil {
- return nil
- }
- return r.localAdapter
- }
- // Conn retrieves and returns a connection object for continuous operations.
- // Note that you should call Close function manually if you do not use this connection any further.
- func (r *Redis) Conn(ctx context.Context) (Conn, error) {
- if r == nil {
- return nil, gerror.NewCode(gcode.CodeInvalidParameter, errorNilRedis)
- }
- if r.localAdapter == nil {
- return nil, gerror.NewCode(gcode.CodeNecessaryPackageNotImport, errorNilAdapter)
- }
- return r.localAdapter.Conn(ctx)
- }
- // Do send a command to the server and returns the received reply.
- // It uses json.Marshal for struct/slice/map type values before committing them to redis.
- func (r *Redis) Do(ctx context.Context, command string, args ...interface{}) (*gvar.Var, error) {
- if r == nil {
- return nil, gerror.NewCode(gcode.CodeInvalidParameter, errorNilRedis)
- }
- if r.localAdapter == nil {
- return nil, gerror.NewCodef(gcode.CodeMissingConfiguration, errorNilAdapter)
- }
- return r.localAdapter.Do(ctx, command, args...)
- }
- // MustConn performs as function Conn, but it panics if any error occurs internally.
- func (r *Redis) MustConn(ctx context.Context) Conn {
- c, err := r.Conn(ctx)
- if err != nil {
- panic(err)
- }
- return c
- }
- // MustDo performs as function Do, but it panics if any error occurs internally.
- func (r *Redis) MustDo(ctx context.Context, command string, args ...interface{}) *gvar.Var {
- v, err := r.Do(ctx, command, args...)
- if err != nil {
- panic(err)
- }
- return v
- }
- // Close closes current redis client, closes its connection pool and releases all its related resources.
- func (r *Redis) Close(ctx context.Context) error {
- if r == nil || r.localAdapter == nil {
- return nil
- }
- return r.localAdapter.Close(ctx)
- }
|