You are looking at historical revision 40024 of this page. It may differ significantly from its current revision.

json-rpc

Description

An implementation of the JSON-RPC for Scheme.

The JSON-RPC allows calling procedures on remote servers by exchanging JSON objects. It's specification can be found at [https://www.jsonrpc.org/specification|https://www.jsonrpc.org/specification].

Author

Ricardo G. Herdt

Repository

https://gitlab.com/rgherdt/scheme-json-rpc.git

Requirements

Documentation

High-level API

[parameter] (json-rpc-handler-table)

An association list mapping method names (*strings*) to functions that get an (unmarshalled) scheme object as input. These handlers must return a scheme object that is *mappable* to a JSON string. See medea.

[procedure] (json-rpc-call in-port out-port method params)
[procedure] (json-rpc-call/tcp tcp-address tcp-port method params)

Call the remote procedure method (string) with the JSON-mappable scheme object params. See medea.

[procedure] (json-rpc-start-server/tcp tcp-port)

Listen on tcp-port and loop over input connections, answering requests according to json-rpc-handler-table.

Low-level API

[procedure] (json-rpc-read input-port)

Read from input-port and return a Scheme object based on the provided json-string->scheme parameter.

[procedure] (json-rpc-write scm output-port)

Convert the scheme object scm to a JSON string using the provided paramter scheme->json-string and writes the result to output-port.

[procedure] (json-rpc-loop input-port output-port)

JSON-RPC 2.0 demands that all requests are answered. This functions loops over input-port and answers to the requests through output-port using the handlers defined in json-rpc-handler-table.

Examples

 ;; server.scm
 (import (json-rpc))
 (parameterize
   ((json-rpc-handler-table
      `(("hello" . ,(lambda (params)
                      (let ((name (cdr (assoc 'name params))))
                        (string-append "Hello " name))))
        ("exit" . ,(lambda (params)
                     (json-rpc-exit)
                     #f)))))
  (json-rpc-start-server/tcp 4242))
 ;; client.scm
 (import (json-rpc))
 (json-rpc-call/tcp "localhost" 4242 "hello" '((name . "World!")))

License

MIT License

Copyright (c) 2021 Ricardo G. Herdt

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.

Version History