2018-07-10 09:39:09 +00:00
|
|
|
import
|
2021-03-26 12:17:00 +00:00
|
|
|
std/[macros, options, strutils, tables],
|
2020-03-18 16:14:29 +00:00
|
|
|
chronicles, chronos, json_serialization/writer,
|
2021-02-15 12:45:51 +00:00
|
|
|
./jsonmarshal
|
2020-03-18 16:14:29 +00:00
|
|
|
|
|
|
|
export
|
2021-03-26 12:17:00 +00:00
|
|
|
chronos, jsonmarshal
|
2018-07-06 16:47:43 +00:00
|
|
|
|
|
|
|
type
|
2020-03-18 16:14:29 +00:00
|
|
|
StringOfJson* = JsonString
|
2020-03-17 18:36:23 +00:00
|
|
|
|
2018-07-06 16:47:43 +00:00
|
|
|
# Procedure signature accepted as an RPC call by server
|
2021-03-26 10:53:03 +00:00
|
|
|
RpcProc* = proc(input: JsonNode): Future[StringOfJson] {.gcsafe, raises: [Defect, CatchableError].}
|
2019-02-06 17:27:58 +00:00
|
|
|
|
2018-07-06 16:47:43 +00:00
|
|
|
RpcRouter* = object
|
2021-02-15 12:45:51 +00:00
|
|
|
procs*: Table[string, RpcProc]
|
2018-07-10 09:39:09 +00:00
|
|
|
|
2018-07-06 16:47:43 +00:00
|
|
|
const
|
|
|
|
methodField = "method"
|
|
|
|
paramsField = "params"
|
2018-07-10 09:39:09 +00:00
|
|
|
|
|
|
|
JSON_PARSE_ERROR* = -32700
|
|
|
|
INVALID_REQUEST* = -32600
|
|
|
|
METHOD_NOT_FOUND* = -32601
|
|
|
|
INVALID_PARAMS* = -32602
|
|
|
|
INTERNAL_ERROR* = -32603
|
|
|
|
SERVER_ERROR* = -32000
|
|
|
|
|
|
|
|
defaultMaxRequestLength* = 1024 * 128
|
2021-02-15 12:45:51 +00:00
|
|
|
|
|
|
|
proc init*(T: type RpcRouter): T = discard
|
|
|
|
|
|
|
|
proc newRpcRouter*: RpcRouter {.deprecated.} =
|
|
|
|
RpcRouter.init()
|
2018-07-06 16:47:43 +00:00
|
|
|
|
|
|
|
proc register*(router: var RpcRouter, path: string, call: RpcProc) =
|
|
|
|
router.procs.add(path, call)
|
|
|
|
|
2021-06-29 15:13:31 +00:00
|
|
|
proc clear*(router: var RpcRouter) =
|
|
|
|
router.procs.clear
|
2018-07-06 16:47:43 +00:00
|
|
|
|
|
|
|
proc hasMethod*(router: RpcRouter, methodName: string): bool = router.procs.hasKey(methodName)
|
|
|
|
|
2018-08-29 12:44:30 +00:00
|
|
|
func isEmpty(node: JsonNode): bool = node.isNil or node.kind == JNull
|
2018-07-06 16:47:43 +00:00
|
|
|
|
2018-07-10 09:39:09 +00:00
|
|
|
# Json reply wrappers
|
|
|
|
|
2021-02-15 12:45:51 +00:00
|
|
|
# https://www.jsonrpc.org/specification#response_object
|
|
|
|
proc wrapReply*(id: JsonNode, value: StringOfJson): StringOfJson =
|
|
|
|
# Success response carries version, id and result fields only
|
|
|
|
StringOfJson(
|
|
|
|
"""{"jsonrpc":"2.0","id":$1,"result":$2}""" % [$id, string(value)] & "\r\n")
|
|
|
|
|
|
|
|
proc wrapError*(code: int, msg: string, id: JsonNode = newJNull(),
|
|
|
|
data: JsonNode = newJNull()): StringOfJson =
|
|
|
|
# Error reply that carries version, id and error object only
|
|
|
|
StringOfJson(
|
|
|
|
"""{"jsonrpc":"2.0","id":$1,"error":{"code":$2,"message":$3,"data":$4}}""" % [
|
|
|
|
$id, $code, escapeJson(msg), $data
|
|
|
|
] & "\r\n")
|
2018-07-10 09:39:09 +00:00
|
|
|
|
2020-03-17 18:36:23 +00:00
|
|
|
proc route*(router: RpcRouter, node: JsonNode): Future[StringOfJson] {.async, gcsafe.} =
|
2021-02-15 12:45:51 +00:00
|
|
|
if node{"jsonrpc"}.getStr() != "2.0":
|
|
|
|
return wrapError(INVALID_REQUEST, "'jsonrpc' missing or invalid")
|
|
|
|
|
|
|
|
let id = node{"id"}
|
|
|
|
if id == nil:
|
|
|
|
return wrapError(INVALID_REQUEST, "'id' missing or invalid")
|
|
|
|
|
|
|
|
let methodName = node{"method"}.getStr()
|
|
|
|
if methodName.len == 0:
|
|
|
|
return wrapError(INVALID_REQUEST, "'method' missing or invalid")
|
|
|
|
|
|
|
|
let rpcProc = router.procs.getOrDefault(methodName)
|
2021-06-29 15:13:31 +00:00
|
|
|
let params = node.getOrDefault("params")
|
|
|
|
|
2021-02-15 12:45:51 +00:00
|
|
|
if rpcProc == nil:
|
|
|
|
return wrapError(METHOD_NOT_FOUND, "'" & methodName & "' is not a registered RPC method", id)
|
2021-06-29 15:13:31 +00:00
|
|
|
else:
|
|
|
|
try:
|
|
|
|
let res = await rpcProc(if params == nil: newJArray() else: params)
|
|
|
|
return wrapReply(id, res)
|
2021-02-15 12:45:51 +00:00
|
|
|
|
2021-06-29 15:13:31 +00:00
|
|
|
except CatchableError as err:
|
|
|
|
debug "Error occurred within RPC", methodName = methodName, err = err.msg
|
|
|
|
return wrapError(
|
|
|
|
SERVER_ERROR, methodName & " raised an exception", id, newJString(err.msg))
|
2018-07-10 15:07:47 +00:00
|
|
|
|
2018-07-10 09:39:09 +00:00
|
|
|
proc route*(router: RpcRouter, data: string): Future[string] {.async, gcsafe.} =
|
2018-07-10 15:07:47 +00:00
|
|
|
## Route to RPC from string data. Data is expected to be able to be converted to Json.
|
|
|
|
## Returns string of Json from RPC result/error node
|
2021-02-15 12:45:51 +00:00
|
|
|
let node =
|
|
|
|
try: parseJson(data)
|
|
|
|
except CatchableError as err:
|
|
|
|
return string(wrapError(JSON_PARSE_ERROR, err.msg))
|
2021-03-26 10:53:03 +00:00
|
|
|
except Exception as err:
|
|
|
|
# TODO https://github.com/status-im/nimbus-eth2/issues/2430
|
|
|
|
return string(wrapError(JSON_PARSE_ERROR, err.msg))
|
2021-02-15 12:45:51 +00:00
|
|
|
|
|
|
|
return string(await router.route(node))
|
2018-07-06 16:47:43 +00:00
|
|
|
|
2020-03-17 18:36:23 +00:00
|
|
|
proc tryRoute*(router: RpcRouter, data: JsonNode, fut: var Future[StringOfJson]): bool =
|
2018-07-10 09:39:09 +00:00
|
|
|
## Route to RPC, returns false if the method or params cannot be found.
|
|
|
|
## Expects json input and returns json output.
|
2018-07-06 16:47:43 +00:00
|
|
|
let
|
2018-07-12 08:23:38 +00:00
|
|
|
jPath = data.getOrDefault(methodField)
|
|
|
|
jParams = data.getOrDefault(paramsField)
|
2018-07-06 16:47:43 +00:00
|
|
|
if jPath.isEmpty or jParams.isEmpty:
|
|
|
|
return false
|
|
|
|
|
|
|
|
let
|
|
|
|
path = jPath.getStr
|
|
|
|
rpc = router.procs.getOrDefault(path)
|
|
|
|
if rpc != nil:
|
|
|
|
fut = rpc(jParams)
|
|
|
|
return true
|
|
|
|
|
|
|
|
proc makeProcName(s: string): string =
|
|
|
|
result = ""
|
|
|
|
for c in s:
|
|
|
|
if c.isAlphaNumeric: result.add c
|
|
|
|
|
|
|
|
proc hasReturnType(params: NimNode): bool =
|
|
|
|
if params != nil and params.len > 0 and params[0] != nil and
|
|
|
|
params[0].kind != nnkEmpty:
|
|
|
|
result = true
|
|
|
|
|
|
|
|
macro rpc*(server: RpcRouter, path: string, body: untyped): untyped =
|
|
|
|
## Define a remote procedure call.
|
|
|
|
## Input and return parameters are defined using the ``do`` notation.
|
|
|
|
## For example:
|
|
|
|
## .. code-block:: nim
|
|
|
|
## myServer.rpc("path") do(param1: int, param2: float) -> string:
|
|
|
|
## result = $param1 & " " & $param2
|
|
|
|
## ```
|
|
|
|
## Input parameters are automatically marshalled from json to Nim types,
|
|
|
|
## and output parameters are automatically marshalled to json for transport.
|
|
|
|
result = newStmtList()
|
|
|
|
let
|
|
|
|
parameters = body.findChild(it.kind == nnkFormalParams)
|
|
|
|
# all remote calls have a single parameter: `params: JsonNode`
|
|
|
|
paramsIdent = newIdentNode"params"
|
|
|
|
# procs are generated from the stripped path
|
|
|
|
pathStr = $path
|
|
|
|
# strip non alphanumeric
|
|
|
|
procNameStr = pathStr.makeProcName
|
|
|
|
# public rpc proc
|
|
|
|
procName = newIdentNode(procNameStr)
|
|
|
|
# when parameters present: proc that contains our rpc body
|
|
|
|
doMain = newIdentNode(procNameStr & "DoMain")
|
|
|
|
var
|
|
|
|
setup = jsonToNim(parameters, paramsIdent)
|
|
|
|
procBody = if body.kind == nnkStmtList: body else: body.body
|
2018-07-11 20:49:08 +00:00
|
|
|
|
2020-03-17 20:05:42 +00:00
|
|
|
let ReturnType = if parameters.hasReturnType: parameters[0]
|
|
|
|
else: ident "JsonNode"
|
2018-07-06 16:47:43 +00:00
|
|
|
|
2020-03-17 20:05:42 +00:00
|
|
|
# delegate async proc allows return and setting of result as native type
|
|
|
|
result.add quote do:
|
|
|
|
proc `doMain`(`paramsIdent`: JsonNode): Future[`ReturnType`] {.async.} =
|
|
|
|
`setup`
|
|
|
|
`procBody`
|
|
|
|
|
|
|
|
if ReturnType == ident"JsonNode":
|
|
|
|
# `JsonNode` results don't need conversion
|
2020-01-21 16:49:52 +00:00
|
|
|
result.add quote do:
|
2020-03-17 20:05:42 +00:00
|
|
|
proc `procName`(`paramsIdent`: JsonNode): Future[StringOfJson] {.async, gcsafe.} =
|
|
|
|
return StringOfJson($(await `doMain`(`paramsIdent`)))
|
|
|
|
elif ReturnType == ident"StringOfJson":
|
|
|
|
result.add quote do:
|
|
|
|
proc `procName`(`paramsIdent`: JsonNode): Future[StringOfJson] {.async, gcsafe.} =
|
|
|
|
return await `doMain`(`paramsIdent`)
|
2018-07-06 16:47:43 +00:00
|
|
|
else:
|
2020-01-21 16:49:52 +00:00
|
|
|
result.add quote do:
|
2020-03-17 18:36:23 +00:00
|
|
|
proc `procName`(`paramsIdent`: JsonNode): Future[StringOfJson] {.async, gcsafe.} =
|
2020-03-17 20:05:42 +00:00
|
|
|
return StringOfJson($(%(await `doMain`(`paramsIdent`))))
|
2020-01-21 16:49:52 +00:00
|
|
|
|
|
|
|
result.add quote do:
|
2018-07-06 16:47:43 +00:00
|
|
|
`server`.register(`path`, `procName`)
|
|
|
|
|
|
|
|
when defined(nimDumpRpcs):
|
|
|
|
echo "\n", pathStr, ": ", result.repr
|