resp

package
v0.0.0-...-70285c8 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 25, 2016 License: MIT Imports: 7 Imported by: 0

README

github.com/xiam/resp

RESP encoder/decoder.

Installation

go get -u github.com/xiam/resp

Usage

Encoding
func Marshal(v interface{}) ([]byte, error)
    Marshal returns the RESP encoding of v. At this moment, it only works
    with string, int, []byte, nil and []interface{} types.

Example:

buf, err = resp.Marshal("Foo")
// -> $3\r\nFoo\r\n
Decoding
func Unmarshal(data []byte, v interface{}) error
    Unmarshal parses the RESP-encoded data and stores the result in the
    value pointed to by v. At this moment, it only works with string, int,
    []byte and []interface{} types.

Example:

var dest string
err = resp.Unmarshal([]byte("$3\r\nFoo\r\n"), &dest)
// -> "Foo"

License

Copyright (c) 2014 José Carlos Nieto, https://menteslibres.net/xiam

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Documentation

Overview

RESP decoder. See: http://redis.io/topics/protocol

RESP encoder. See: http://redis.io/topics/protocol

RESP protocol encoder/decoder.

Index

Constants

View Source
const (
	StringHeader  = '+'
	ErrorHeader   = '-'
	IntegerHeader = ':'
	BulkHeader    = '$'
	ArrayHeader   = '*'
)

Variables

View Source
var (
	ErrInvalidInput          = errors.New(`resp: Invalid input.`)
	ErrInvalidDelimiter      = errors.New(`resp: Failed to get limits.`)
	ErrMessageIsTooLarge     = errors.New(`resp: Message is too large.`)
	ErrIncompleteMessage     = errors.New(`resp: Message is incomplete.`)
	ErrExpectingPointer      = errors.New(`resp: Expecting pointer value.`)
	ErrUnsupportedConversion = errors.New(`resp: Unsupported conversion: %s to %s.`)
	ErrMessageIsNil          = errors.New(`resp: Message is nil.`)
)

Functions

func Marshal

func Marshal(v interface{}) ([]byte, error)

Marshal returns the RESP encoding of v. At this moment, it only works with string, int, []byte, nil and []interface{} types.

func Unmarshal

func Unmarshal(data []byte, v interface{}) error

Unmarshal parses the RESP-encoded data and stores the result in the value pointed to by v. At this moment, it only works with string, int, []byte and []interface{} types.

Types

type Message

type Message struct {
	Error   error
	Integer int
	Bytes   []byte
	Status  string
	Array   []*Message
	IsNil   bool
	Type    byte
}

type RESPWriter

type RESPWriter struct {
	*bufio.Writer
}

func NewRESPWriter

func NewRESPWriter(writer io.Writer) *RESPWriter

func (*RESPWriter) WriteCommand

func (w *RESPWriter) WriteCommand(args ...string) (err error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL