jsonrpc2

package
v0.0.0-...-6326644 Latest Latest
Warning

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

Go to latest
Published: Mar 18, 2019 License: BSD-3-Clause Imports: 6 Imported by: 0

Documentation

Overview

Package terryding77/rpc is a foundation for RPC over HTTP services, providing access to the exported methods of an object through HTTP requests.

This package derives from the standard net/rpc package but uses a single HTTP request per call instead of persistent connections. Other differences compared to net/rpc:

  • Multiple codecs can be registered in the same server.
  • A codec is chosen based on the "Content-Type" header from the request.
  • Service methods also receive http.Request as parameter.
  • This package can be used on Google App Engine.

Let's setup a server and register a codec and service:

	import (
		"net/http"
		"github.com/terryding77/rpc"
		"github.com/terryding77/rpc/jsonrpc"
	)

	func main() {
		s := rpc.NewServer()
		s.RegisterCodec(jsonrpc.NewCodec(), "application/json")
		s.RegisterService(new(HelloService), "")
        http.Handle("/rpc", s)
        log.Print("start server")
        log.Fatal(http.ListenAndServe(":8080", nil))
	}

This server handles requests to the "/rpc" path using a JSON codec. A codec is tied to a content type. In the example above, the JSON codec is registered to serve requests with "application/json" as the value for the "Content-Type" header. If the header includes a charset definition, it is ignored; only the media-type part is taken into account.

A service can be registered using a name. If the name is empty, like in the example above, it will be inferred from the service type.

That's all about the server setup. Now let's define a simple service:

type HelloArgs struct {
	Who string
}

type HelloReply struct {
	Message string
}

type HelloService struct {}

func (h *HelloService) Say(r *http.Request, args *HelloArgs, reply *HelloReply) error {
	reply.Message = "Hello, " + args.Who + "!"
	return nil
}

The example above defines a service with a method "HelloService.Say" and the arguments and reply related to that method.

Use curl to test this:

curl -H "Content-Type:application/json" -X POST --data '{"jsonrpc":"2.0","method":"HelloService.Say","params":{"Who":"terry"},"id":1}' http://localhost:8080/rpc

The service must be exported (begin with an upper case letter) or local (defined in the package registering the service).

When a service is registered, the server inspects the service methods and make available the ones that follow these rules:

  • The method name is exported.
  • The method has three arguments: *http.Request, *args, *reply.
  • All three arguments are pointers.
  • The second and third arguments are exported or local.
  • The method has return type error.

All other methods are ignored.

Index

Constants

This section is empty.

Variables

View Source
var ErrNullResult = errors.New("result is null")
View Source
var Version = "2.0"

Version means this is json-rpc 2.0 protocol

Functions

func DecodeClientResponse

func DecodeClientResponse(r io.Reader, reply interface{}) error

DecodeClientResponse decodes the response body of a client request into the interface reply.

func EncodeClientRequest

func EncodeClientRequest(method string, args interface{}) ([]byte, error)

EncodeClientRequest encodes parameters for a JSON-RPC client request.

Types

type Codec

type Codec struct {
	// contains filtered or unexported fields
}

Codec creates a CodecRequest to process each request.

func NewCodec

func NewCodec() *Codec

NewCodec returns a new JSON Codec.

func NewCustomCodec

func NewCustomCodec(encSel rpc.EncoderSelector) *Codec

NewCustomCodec returns a new JSON Codec based on passed encoder selector.

func (*Codec) NewRequest

func (c *Codec) NewRequest(r *http.Request) rpc.CodecRequest

NewRequest returns a CodecRequest.

type Error

type Error struct {
	// A Number that indicates the error type that occurred.
	Code ErrorCode `json:"code"` /* required */

	// A String providing a short description of the error.
	// The message SHOULD be limited to a concise single sentence.
	Message string `json:"message"` /* required */

	// A Primitive or Structured value that contains additional information about the error.
	Data interface{} `json:"data"` /* optional */
}

func (*Error) Error

func (e *Error) Error() string

type ErrorCode

type ErrorCode int
const (
	E_PARSE       ErrorCode = -32700
	E_INVALID_REQ ErrorCode = -32600
	E_NO_METHOD   ErrorCode = -32601
	E_BAD_PARAMS  ErrorCode = -32602
	E_INTERNAL    ErrorCode = -32603
	E_SERVER      ErrorCode = -32000
)

type HTTPCodecRequest

type HTTPCodecRequest struct {
	// contains filtered or unexported fields
}

HTTPCodecRequest decodes and encodes a single request.

func (*HTTPCodecRequest) Method

func (c *HTTPCodecRequest) Method() (string, error)

Method returns the RPC method for the current request.

The method uses a dotted notation as in "Service.Method".

func (*HTTPCodecRequest) ReadRequest

func (c *HTTPCodecRequest) ReadRequest(args interface{}) error

ReadRequest fills the request object for the RPC method.

ReadRequest parses request parameters in two supported forms in accordance with http://www.jsonrpc.org/specification#parameter_structures

by-position: params MUST be an Array, containing the values in the Server expected order.

by-name: params MUST be an Object, with member names that match the Server expected parameter names. The absence of expected names MAY result in an error being generated. The names MUST match exactly, including case, to the method's expected parameters.

func (*HTTPCodecRequest) WriteError

func (c *HTTPCodecRequest) WriteError(w http.ResponseWriter, status int, err error)

WriteError encodes the error response and writes it to the ResponseWriter

func (*HTTPCodecRequest) WriteResponse

func (c *HTTPCodecRequest) WriteResponse(w http.ResponseWriter, reply interface{})

WriteResponse encodes the response and writes it to the ResponseWriter.

Directories

Path Synopsis

Jump to

Keyboard shortcuts

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