redis/request.go

196 lines
3.2 KiB
Go
Raw Normal View History

2012-07-25 17:00:50 +04:00
package redis
import (
"strconv"
)
type Req interface {
2012-08-14 19:20:22 +04:00
Args() []string
ParseReply(ReadLiner) (interface{}, error)
2012-07-25 17:00:50 +04:00
SetErr(error)
2012-08-05 16:09:43 +04:00
Err() error
2012-07-26 22:43:21 +04:00
SetVal(interface{})
2012-08-06 16:09:48 +04:00
InterfaceVal() interface{}
2012-07-25 17:00:50 +04:00
}
//------------------------------------------------------------------------------
type BaseReq struct {
args []string
2012-07-29 13:42:00 +04:00
val interface{}
err error
2012-07-25 17:00:50 +04:00
}
func NewBaseReq(args ...string) *BaseReq {
return &BaseReq{
args: args,
}
}
2012-08-14 19:20:22 +04:00
func (r *BaseReq) Args() []string {
return r.args
2012-07-25 17:00:50 +04:00
}
func (r *BaseReq) SetErr(err error) {
2012-07-26 22:43:21 +04:00
if err == nil {
panic("non-nil value expected")
}
2012-07-25 17:00:50 +04:00
r.err = err
}
2012-08-05 16:09:43 +04:00
func (r *BaseReq) Err() error {
2012-08-06 16:09:48 +04:00
if r.err != nil {
return r.err
}
if r.val == nil {
return errValNotSet
2012-08-06 16:09:48 +04:00
}
return nil
2012-08-05 16:09:43 +04:00
}
2012-07-26 22:43:21 +04:00
func (r *BaseReq) SetVal(val interface{}) {
if val == nil {
panic("non-nil value expected")
}
r.val = val
}
2012-08-06 16:09:48 +04:00
func (r *BaseReq) InterfaceVal() interface{} {
2012-08-05 16:09:43 +04:00
return r.val
}
func (r *BaseReq) ParseReply(rd ReadLiner) (interface{}, error) {
return ParseReply(rd)
2012-07-25 17:00:50 +04:00
}
//------------------------------------------------------------------------------
type StatusReq struct {
*BaseReq
}
func NewStatusReq(args ...string) *StatusReq {
return &StatusReq{
BaseReq: NewBaseReq(args...),
}
}
2012-08-06 16:09:48 +04:00
func (r *StatusReq) Val() string {
if r.val == nil {
return ""
2012-07-26 22:43:21 +04:00
}
2012-08-06 16:09:48 +04:00
return r.val.(string)
2012-07-25 17:00:50 +04:00
}
//------------------------------------------------------------------------------
type IntReq struct {
*BaseReq
}
func NewIntReq(args ...string) *IntReq {
return &IntReq{
BaseReq: NewBaseReq(args...),
}
}
2012-08-06 16:09:48 +04:00
func (r *IntReq) Val() int64 {
if r.val == nil {
return 0
2012-07-26 22:43:21 +04:00
}
2012-08-06 16:09:48 +04:00
return r.val.(int64)
2012-07-25 17:00:50 +04:00
}
//------------------------------------------------------------------------------
type BoolReq struct {
*BaseReq
}
func NewBoolReq(args ...string) *BoolReq {
return &BoolReq{
BaseReq: NewBaseReq(args...),
}
}
func (r *BoolReq) ParseReply(rd ReadLiner) (interface{}, error) {
v, err := ParseReply(rd)
2012-07-26 22:43:21 +04:00
if err != nil {
return nil, err
2012-07-25 17:00:50 +04:00
}
return v.(int64) == 1, nil
2012-07-25 17:00:50 +04:00
}
2012-08-06 16:09:48 +04:00
func (r *BoolReq) Val() bool {
if r.val == nil {
return false
2012-07-26 22:43:21 +04:00
}
2012-08-06 16:09:48 +04:00
return r.val.(bool)
2012-07-25 17:00:50 +04:00
}
//------------------------------------------------------------------------------
type BulkReq struct {
*BaseReq
}
func NewBulkReq(args ...string) *BulkReq {
return &BulkReq{
BaseReq: NewBaseReq(args...),
}
}
2012-08-06 16:09:48 +04:00
func (r *BulkReq) Val() string {
if r.val == nil {
return ""
2012-07-26 22:43:21 +04:00
}
2012-08-06 16:09:48 +04:00
return r.val.(string)
2012-07-25 17:00:50 +04:00
}
//------------------------------------------------------------------------------
2012-07-27 18:21:50 +04:00
type FloatReq struct {
*BaseReq
}
func NewFloatReq(args ...string) *FloatReq {
return &FloatReq{
BaseReq: NewBaseReq(args...),
}
}
func (r *FloatReq) ParseReply(rd ReadLiner) (interface{}, error) {
v, err := ParseReply(rd)
2012-07-27 18:21:50 +04:00
if err != nil {
return nil, err
}
return strconv.ParseFloat(v.(string), 64)
2012-07-27 18:21:50 +04:00
}
2012-08-06 16:09:48 +04:00
func (r *FloatReq) Val() float64 {
if r.val == nil {
return 0
2012-07-27 18:21:50 +04:00
}
2012-08-06 16:09:48 +04:00
return r.val.(float64)
2012-07-27 18:21:50 +04:00
}
//------------------------------------------------------------------------------
2012-07-25 17:00:50 +04:00
type MultiBulkReq struct {
*BaseReq
}
func NewMultiBulkReq(args ...string) *MultiBulkReq {
return &MultiBulkReq{
BaseReq: NewBaseReq(args...),
}
}
2012-08-06 16:09:48 +04:00
func (r *MultiBulkReq) Val() []interface{} {
if r.val == nil {
return nil
2012-07-26 22:43:21 +04:00
}
2012-08-06 16:09:48 +04:00
return r.val.([]interface{})
2012-07-25 17:00:50 +04:00
}