2019-07-03 17:39:07 +00:00
|
|
|
package jsonrpc
|
2019-06-28 09:03:28 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2019-07-12 17:12:38 +00:00
|
|
|
"context"
|
2019-06-28 09:03:28 +00:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2019-07-12 17:12:38 +00:00
|
|
|
"io"
|
2019-06-28 09:03:28 +00:00
|
|
|
"reflect"
|
|
|
|
)
|
|
|
|
|
|
|
|
type rpcHandler struct {
|
|
|
|
paramReceivers []reflect.Type
|
|
|
|
nParams int
|
|
|
|
|
|
|
|
receiver reflect.Value
|
|
|
|
handlerFunc reflect.Value
|
|
|
|
|
2019-06-28 14:53:01 +00:00
|
|
|
hasCtx int
|
|
|
|
|
2019-06-28 09:03:28 +00:00
|
|
|
errOut int
|
|
|
|
valOut int
|
|
|
|
}
|
|
|
|
|
2019-07-12 17:12:38 +00:00
|
|
|
type handlers map[string]rpcHandler
|
2019-06-28 13:49:34 +00:00
|
|
|
|
2019-07-12 17:12:38 +00:00
|
|
|
// Request / response
|
2019-06-28 13:49:34 +00:00
|
|
|
|
2019-06-28 09:03:28 +00:00
|
|
|
type request struct {
|
|
|
|
Jsonrpc string `json:"jsonrpc"`
|
2019-07-02 19:08:30 +00:00
|
|
|
ID *int64 `json:"id,omitempty"`
|
2019-06-28 09:03:28 +00:00
|
|
|
Method string `json:"method"`
|
|
|
|
Params []param `json:"params"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type respError struct {
|
|
|
|
Code int `json:"code"`
|
|
|
|
Message string `json:"message"`
|
|
|
|
}
|
|
|
|
|
2019-07-02 13:49:10 +00:00
|
|
|
func (e *respError) Error() string {
|
|
|
|
if e.Code >= -32768 && e.Code <= -32000 {
|
|
|
|
return fmt.Sprintf("RPC error (%d): %s", e.Code, e.Message)
|
|
|
|
}
|
|
|
|
return e.Message
|
|
|
|
}
|
|
|
|
|
2019-06-28 09:03:28 +00:00
|
|
|
type response struct {
|
|
|
|
Jsonrpc string `json:"jsonrpc"`
|
2019-06-28 13:49:34 +00:00
|
|
|
Result interface{} `json:"result,omitempty"`
|
2019-07-02 19:08:30 +00:00
|
|
|
ID int64 `json:"id"`
|
2019-06-28 09:03:28 +00:00
|
|
|
Error *respError `json:"error,omitempty"`
|
|
|
|
}
|
|
|
|
|
2019-07-12 17:12:38 +00:00
|
|
|
// Register
|
|
|
|
|
|
|
|
func (h handlers) register(namespace string, r interface{}) {
|
|
|
|
val := reflect.ValueOf(r)
|
|
|
|
//TODO: expect ptr
|
|
|
|
|
|
|
|
for i := 0; i < val.NumMethod(); i++ {
|
|
|
|
method := val.Type().Method(i)
|
|
|
|
|
|
|
|
funcType := method.Func.Type()
|
|
|
|
hasCtx := 0
|
|
|
|
if funcType.NumIn() >= 2 && funcType.In(1) == contextType {
|
|
|
|
hasCtx = 1
|
|
|
|
}
|
|
|
|
|
|
|
|
ins := funcType.NumIn() - 1 - hasCtx
|
|
|
|
recvs := make([]reflect.Type, ins)
|
|
|
|
for i := 0; i < ins; i++ {
|
|
|
|
recvs[i] = method.Type.In(i + 1 + hasCtx)
|
|
|
|
}
|
|
|
|
|
|
|
|
valOut, errOut, _ := processFuncOut(funcType)
|
|
|
|
|
|
|
|
h[namespace+"."+method.Name] = rpcHandler{
|
|
|
|
paramReceivers: recvs,
|
|
|
|
nParams: ins,
|
|
|
|
|
|
|
|
handlerFunc: method.Func,
|
|
|
|
receiver: val,
|
|
|
|
|
|
|
|
hasCtx: hasCtx,
|
|
|
|
|
|
|
|
errOut: errOut,
|
|
|
|
valOut: valOut,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handle
|
|
|
|
|
2019-07-15 16:21:48 +00:00
|
|
|
type rpcErrFunc func(w func(func(io.Writer)), req *request, code int, err error)
|
2019-07-12 17:12:38 +00:00
|
|
|
|
|
|
|
func (h handlers) handleReader(ctx context.Context, r io.Reader, w io.Writer, rpcError rpcErrFunc) {
|
2019-07-15 16:21:48 +00:00
|
|
|
wf := func(cb func(io.Writer)) {
|
|
|
|
cb(w)
|
|
|
|
}
|
|
|
|
|
2019-06-28 09:03:28 +00:00
|
|
|
var req request
|
2019-07-12 17:12:38 +00:00
|
|
|
if err := json.NewDecoder(r).Decode(&req); err != nil {
|
2019-07-15 16:21:48 +00:00
|
|
|
rpcError(wf, &req, rpcParseError, err)
|
2019-06-28 09:03:28 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-07-15 16:21:48 +00:00
|
|
|
h.handle(ctx, req, wf, rpcError, func() {})
|
2019-07-12 17:12:38 +00:00
|
|
|
}
|
|
|
|
|
2019-07-15 16:21:48 +00:00
|
|
|
func (h handlers) handle(ctx context.Context, req request, w func(func(io.Writer)), rpcError rpcErrFunc, done func()) {
|
|
|
|
defer done()
|
|
|
|
|
2019-07-12 17:12:38 +00:00
|
|
|
handler, ok := h[req.Method]
|
2019-06-28 09:03:28 +00:00
|
|
|
if !ok {
|
2019-07-12 17:12:38 +00:00
|
|
|
rpcError(w, &req, rpcMethodNotFound, fmt.Errorf("method '%s' not found", req.Method))
|
2019-06-28 09:03:28 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-06-28 13:49:34 +00:00
|
|
|
if len(req.Params) != handler.nParams {
|
2019-07-12 17:12:38 +00:00
|
|
|
rpcError(w, &req, rpcInvalidParams, fmt.Errorf("wrong param count"))
|
2019-06-28 13:49:34 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-06-28 14:53:01 +00:00
|
|
|
callParams := make([]reflect.Value, 1+handler.hasCtx+handler.nParams)
|
2019-06-28 09:03:28 +00:00
|
|
|
callParams[0] = handler.receiver
|
2019-06-28 14:53:01 +00:00
|
|
|
if handler.hasCtx == 1 {
|
2019-07-12 17:12:38 +00:00
|
|
|
callParams[1] = reflect.ValueOf(ctx)
|
2019-06-28 14:53:01 +00:00
|
|
|
}
|
|
|
|
|
2019-06-28 09:03:28 +00:00
|
|
|
for i := 0; i < handler.nParams; i++ {
|
|
|
|
rp := reflect.New(handler.paramReceivers[i])
|
|
|
|
if err := json.NewDecoder(bytes.NewReader(req.Params[i].data)).Decode(rp.Interface()); err != nil {
|
2019-07-12 17:12:38 +00:00
|
|
|
rpcError(w, &req, rpcParseError, err)
|
2019-06-28 09:03:28 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-06-28 14:53:01 +00:00
|
|
|
callParams[i+1+handler.hasCtx] = reflect.ValueOf(rp.Elem().Interface())
|
2019-06-28 09:03:28 +00:00
|
|
|
}
|
|
|
|
|
2019-07-12 17:12:38 +00:00
|
|
|
///////////////////
|
|
|
|
|
2019-06-28 09:03:28 +00:00
|
|
|
callResult := handler.handlerFunc.Call(callParams)
|
2019-07-02 19:08:30 +00:00
|
|
|
if req.ID == nil {
|
2019-06-28 09:03:28 +00:00
|
|
|
return // notification
|
|
|
|
}
|
|
|
|
|
2019-07-12 17:12:38 +00:00
|
|
|
///////////////////
|
|
|
|
|
2019-06-28 09:03:28 +00:00
|
|
|
resp := response{
|
|
|
|
Jsonrpc: "2.0",
|
2019-07-02 19:08:30 +00:00
|
|
|
ID: *req.ID,
|
2019-06-28 09:03:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if handler.errOut != -1 {
|
|
|
|
err := callResult[handler.errOut].Interface()
|
|
|
|
if err != nil {
|
|
|
|
resp.Error = &respError{
|
|
|
|
Code: 1,
|
|
|
|
Message: err.(error).Error(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if handler.valOut != -1 {
|
|
|
|
resp.Result = callResult[handler.valOut].Interface()
|
|
|
|
}
|
|
|
|
|
2019-07-15 16:21:48 +00:00
|
|
|
w(func(w io.Writer) {
|
|
|
|
if err := json.NewEncoder(w).Encode(resp); err != nil {
|
|
|
|
fmt.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
})
|
2019-06-28 09:03:28 +00:00
|
|
|
}
|