rpc/protocol/json/server.go

294 lines
7.9 KiB
Go
Raw Normal View History

2017-10-25 14:52:47 +00:00
package json
import (
"encoding/json"
2017-10-26 07:21:35 +00:00
"io"
2017-10-31 09:25:44 +00:00
"sync"
2017-10-26 07:21:35 +00:00
"git.loafle.net/commons_go/rpc/encode"
"git.loafle.net/commons_go/rpc/protocol"
2017-10-25 14:52:47 +00:00
)
var null = json.RawMessage([]byte("null"))
// ----------------------------------------------------------------------------
// Request and Response
// ----------------------------------------------------------------------------
// serverRequest represents a JSON-RPC request received by the server.
type serverRequest struct {
// JSON-RPC protocol.
Version string `json:"jsonrpc"`
// A String containing the name of the method to be invoked.
Method string `json:"method"`
// A Structured value to pass as arguments to the method.
Params *json.RawMessage `json:"params"`
// The request id. MUST be a string, number or null.
// Our implementation will not do type checking for id.
// It will be copied as it is.
ID *json.RawMessage `json:"id"`
}
// serverResponse represents a JSON-RPC response returned by the server.
type serverResponse struct {
// JSON-RPC protocol.
Version string `json:"jsonrpc"`
// The Object that was returned by the invoked method. This must be null
// in case there was an error invoking the method.
// As per spec the member will be omitted if there was an error.
Result interface{} `json:"result,omitempty"`
// An Error object if there was an error invoking the method. It must be
// null if there was no error.
// As per spec the member will be omitted if there was no error.
Error *Error `json:"error,omitempty"`
// This must be the same id as the request it is responding to.
ID *json.RawMessage `json:"id"`
}
// ----------------------------------------------------------------------------
// Codec
// ----------------------------------------------------------------------------
2017-10-31 09:25:44 +00:00
// NewCustomServerCodec returns a new JSON Codec based on passed encoder selector.
func NewCustomServerCodec(encSel encode.EncoderSelector) *ServerCodec {
return &ServerCodec{encSel: encSel}
2017-10-25 14:52:47 +00:00
}
2017-10-31 09:25:44 +00:00
// NewServerCodec returns a new JSON Codec.
func NewServerCodec() *ServerCodec {
return NewCustomServerCodec(encode.DefaultEncoderSelector)
2017-10-25 14:52:47 +00:00
}
2017-10-31 09:25:44 +00:00
// ServerCodec creates a ServerCodecRequest to process each request.
type ServerCodec struct {
encSel encode.EncoderSelector
notifyMtx sync.Mutex
notify clientRequest
2017-10-25 14:52:47 +00:00
}
2017-10-31 09:25:44 +00:00
// NewRequest returns a ServerCodecRequest.
func (sc *ServerCodec) NewRequest(r io.Reader) (protocol.ServerCodecRequest, error) {
return newServerCodecRequest(r, sc.encSel.SelectByReader(r))
}
// WriteNotify send a notification from server to client.
func (sc *ServerCodec) WriteNotify(w io.Writer, method string, args interface{}) error {
sc.notifyMtx.Lock()
sc.notify.Version = Version
sc.notify.Method = method
sc.notify.Params = args
encoder := json.NewEncoder(sc.encSel.SelectByWriter(w).Encode(w))
err := encoder.Encode(&sc.notify)
sc.notifyMtx.Unlock()
// Not sure in which case will this happen. But seems harmless.
if err != nil {
return err
}
return nil
2017-10-25 14:52:47 +00:00
}
// ----------------------------------------------------------------------------
2017-10-31 09:25:44 +00:00
// ServerCodecRequest
2017-10-25 14:52:47 +00:00
// ----------------------------------------------------------------------------
2017-10-31 09:25:44 +00:00
// newCodecRequest returns a new ServerCodecRequest.
func newServerCodecRequest(r io.Reader, encoder encode.Encoder) (protocol.ServerCodecRequest, error) {
2017-10-25 14:52:47 +00:00
// Decode the request body and check if RPC method is valid.
2017-10-31 09:25:44 +00:00
req := retainServerRequest()
2017-10-26 07:21:35 +00:00
err := json.NewDecoder(r).Decode(req)
2017-10-27 05:11:50 +00:00
if err == io.ErrUnexpectedEOF || err == io.EOF {
2017-10-27 05:18:11 +00:00
return nil, err
2017-10-27 05:11:50 +00:00
}
2017-10-25 14:52:47 +00:00
if err != nil {
err = &Error{
Code: E_PARSE,
Message: err.Error(),
Data: req,
}
}
if req.Version != Version {
err = &Error{
Code: E_INVALID_REQ,
Message: "jsonrpc must be " + Version,
Data: req,
}
}
2017-10-26 07:21:35 +00:00
2017-10-31 09:25:44 +00:00
return retainServerCodecRequest(req, err, encoder), nil
2017-10-25 14:52:47 +00:00
}
// CodecRequest decodes and encodes a single request.
2017-10-31 09:25:44 +00:00
type ServerCodecRequest struct {
2017-10-25 14:52:47 +00:00
request *serverRequest
err error
2017-10-26 07:21:35 +00:00
encoder encode.Encoder
2017-10-25 14:52:47 +00:00
}
2017-10-31 09:25:44 +00:00
// Complete is callback function that end of request.
func (scr *ServerCodecRequest) Complete() {
if nil != scr.request {
releaseServerRequest(scr.request)
}
releaseServerCodecRequest(scr)
}
2017-10-25 14:52:47 +00:00
// Method returns the RPC method for the current request.
//
// The method uses a dotted notation as in "Service.Method".
2017-10-31 09:25:44 +00:00
func (scr *ServerCodecRequest) Method() string {
return scr.request.Method
2017-10-25 14:52:47 +00:00
}
// 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.
2017-11-02 06:39:30 +00:00
func (scr *ServerCodecRequest) ReadParams(args []interface{}) error {
2017-10-31 09:25:44 +00:00
if scr.err == nil && scr.request.Params != nil {
// Note: if scr.request.Params is nil it's not an error, it's an optional member.
2017-10-25 14:52:47 +00:00
// JSON params structured object. Unmarshal to the args object.
2017-11-02 11:03:35 +00:00
if err := json.Unmarshal(*scr.request.Params, &args); err != nil {
2017-10-25 14:52:47 +00:00
// Clearly JSON params is not a structured object,
// fallback and attempt an unmarshal with JSON params as
// array value and RPC params is struct. Unmarshal into
// array containing the request struct.
2017-11-02 06:39:30 +00:00
scr.err = &Error{
Code: E_INVALID_REQ,
Message: err.Error(),
Data: scr.request.Params,
2017-10-25 14:52:47 +00:00
}
}
}
2017-10-31 09:25:44 +00:00
return scr.err
2017-10-25 14:52:47 +00:00
}
// WriteResponse encodes the response and writes it to the ResponseWriter.
2017-10-31 09:25:44 +00:00
func (scr *ServerCodecRequest) WriteResponse(w io.Writer, reply interface{}) error {
res := retainServerResponse(Version, reply, nil, scr.request.ID)
return scr.writeServerResponse(w, res)
2017-10-25 14:52:47 +00:00
}
2017-10-26 07:21:35 +00:00
// WriteError encodes the response and writes it to the ResponseWriter.
2017-10-31 09:25:44 +00:00
func (scr *ServerCodecRequest) WriteError(w io.Writer, status int, err error) error {
2017-10-25 14:52:47 +00:00
jsonErr, ok := err.(*Error)
if !ok {
jsonErr = &Error{
Code: E_SERVER,
Message: err.Error(),
}
}
2017-10-31 09:25:44 +00:00
res := retainServerResponse(Version, nil, jsonErr, scr.request.ID)
return scr.writeServerResponse(w, res)
2017-10-25 14:52:47 +00:00
}
2017-10-31 09:25:44 +00:00
func (scr *ServerCodecRequest) writeServerResponse(w io.Writer, res *serverResponse) error {
defer func() {
if nil != res {
releaseServerResponse(res)
}
}()
2017-10-26 07:21:35 +00:00
// ID is null for notifications and they don't have a response.
2017-10-31 09:25:44 +00:00
if scr.request.ID != nil {
encoder := json.NewEncoder(scr.encoder.Encode(w))
2017-10-25 14:52:47 +00:00
err := encoder.Encode(res)
// Not sure in which case will this happen. But seems harmless.
if err != nil {
2017-10-26 07:21:35 +00:00
return err
2017-10-25 14:52:47 +00:00
}
}
2017-10-26 07:21:35 +00:00
return nil
2017-10-25 14:52:47 +00:00
}
type EmptyResponse struct {
}
2017-10-31 09:25:44 +00:00
var serverCodecRequestPool sync.Pool
func retainServerCodecRequest(request *serverRequest, err error, encoder encode.Encoder) *ServerCodecRequest {
2017-11-01 07:55:51 +00:00
var scr *ServerCodecRequest
2017-10-31 09:25:44 +00:00
v := serverCodecRequestPool.Get()
if v == nil {
2017-11-01 07:55:51 +00:00
scr = &ServerCodecRequest{}
} else {
scr = v.(*ServerCodecRequest)
2017-10-31 09:25:44 +00:00
}
scr.request = request
scr.err = err
scr.encoder = encoder
return scr
}
func releaseServerCodecRequest(scr *ServerCodecRequest) {
scr.request = nil
scr.err = nil
scr.encoder = nil
serverCodecRequestPool.Put(scr)
}
var serverRequestPool sync.Pool
func retainServerRequest() *serverRequest {
v := serverRequestPool.Get()
if v == nil {
return &serverRequest{}
}
return v.(*serverRequest)
}
func releaseServerRequest(sr *serverRequest) {
sr.Method = ""
sr.Params = nil
sr.ID = nil
serverRequestPool.Put(sr)
}
var serverResponsePool sync.Pool
func retainServerResponse(version string, result interface{}, err *Error, id *json.RawMessage) *serverResponse {
2017-11-01 07:55:51 +00:00
var sr *serverResponse
2017-10-31 09:25:44 +00:00
v := serverResponsePool.Get()
if v == nil {
2017-11-01 07:55:51 +00:00
sr = &serverResponse{}
} else {
sr = v.(*serverResponse)
2017-10-31 09:25:44 +00:00
}
2017-11-01 07:55:51 +00:00
2017-10-31 09:25:44 +00:00
sr.Version = version
sr.Result = result
sr.Error = err
sr.ID = id
return sr
}
func releaseServerResponse(sr *serverResponse) {
sr.Version = ""
sr.Result = nil
sr.Error = nil
sr.ID = nil
serverResponsePool.Put(sr)
}