@akiroz/mqtt-json-rpc
v1.1.1
Published
JSON-RPC protocol over MQTT communication
Downloads
7
Readme
MQTT-JSON-RPC
JSON-RPC protocol over MQTT communication.
Installation
$ npm install mqtt mqtt-json-rpc
About
This is a small wrapper around the MQTT.js API of Node.js, for Remote Procedure Call (RPC) communication based on the JSON-RPC protocol. This allows a bi-directional request/response-style communication over the uni-directional message protocol MQTT.
Usage
Server:
const MQTT = require("mqtt")
const RPC = require("mqtt-json-rpc")
const mqtt = MQTT.connect("wss://127.0.0.1:8889", { ... })
const rpc = new RPC(mqtt)
rpc.on("connect", () => {
rpc.register("example/hello", (a1, a2) => {
console.log("example/hello: request: ", a1, a2)
return `${a1}:${a2}`
})
})
Client:
const MQTT = require("mqtt")
const RPC = require("mqtt-json-rpc")
const mqtt = MQTT.connect("wss://127.0.0.1:8889", { ... })
const rpc = new RPC(mqtt)
rpc.on("connect", () => {
rpc.call("example/hello", "world", 42).then((response) => {
console.log("example/hello response: ", response)
rpc.end()
})
})
Application Programming Interface
The API of MQTT-JSON-RPC is a superset of the original MQTT.js API because it is just a wrapper around it with the following additional methods:
constructor(mqtt: MQTT, encoding?: string]): MQTT-JSON-RPC
: Create the MQTT.js API wrapper. Themqtt
is the MQTT.js instance. The optionalencoding
can be eitherjson
(default),msgpack
orcbor
.MQTT-JSON-RPC#register(method: string, callback: (...args: any[]) => any): Promise
: Register a method. Themethod
has to be a valid MQTT topic name. Thecallback
is called with theparams
passed to the remoteMQTT-JSON-RPC#notify()
orMQTT-JSON-RPC#call()
. For a remoteMQTT-JSON-RPC#notify()
, the return value ofcallback
will be ignored. For a remoteMQTT-JSON-RPC#call()
, the return value ofcallback
will resolve the promise returned by the remoteMQTT-JSON-RPC#call()
. Internally, on the MQTT broker the topic${method}/request
is subscribed.MQTT-JSON-RPC#unregister(method: string): Promise
: Unregister a previously registered method. Internally, on the MQTT broker the topic${method}/request
is unsubscribed.MQTT-JSON-RPC#notify(method: string, ...params: any[]): void
: Notify a method. The remoteMQTT-JSON-RPC#register()
callback
is called withparams
and its return value silently ignored.MQTT-JSON-RPC#call(method: string, ...params: any[]): Promise
: Call a method. The remoteMQTT-JSON-RPC#register()
callback
is called withparams
and its return value resolves the returnedPromise
. If the remotecallback
throws an exception, this rejects the returnedPromise
. Internally, on the MQTT broker the topic${method}/response/<cid>
is temporarily subscribed for receiving the response.
Internals
Internally, remote methods are assigned to MQTT topics. When calling a
remote method named example/hello
with parameters "world" and 42 via...
rpc.call("example/hello", "world", 42).then((result) => {
...
})
..the following JSON-RPC 2.0 request message is sent to the permanent MQTT
topic example/hello/request
:
{
"jsonrpc": "2.0",
"id": "d1acc980-0e4e-11e8-98f0-ab5030b47df4:d1db7aa0-0e4e-11e8-b1d9-5f0ab230c0d9",
"method": "example/hello",
"params": [ "world", 42 ]
}
Beforehand, this example/hello
method should have been registered with...
rpc.register("example/hello", (a1, a2) => {
return `${a1}:${a2}`
})
...and then its result, here "world:42"
, is then
sent back as the following JSON-RPC 2.0 success response
message to the temporary (client-specific) MQTT topic
example/hello/response/d1acc980-0e4e-11e8-98f0-ab5030b47df4
:
{
"jsonrpc": "2.0",
"id": "d1acc980-0e4e-11e8-98f0-ab5030b47df4:d1db7aa0-0e4e-11e8-b1d9-5f0ab230c0d9",
"result": "world:42"
}
The JSON-RPC 2.0 id
field always consists of <cid>:<rid>
, where
<cid>
is the UUID v1 of the MQTT-JSON-RPC instance and <rid>
is
the UUID v1 of the particular method request. The <cid>
is used for
sending back the JSON-RPC 2.0 response message to the requestor only.
License
Copyright (c) 2018-2019 Dr. Ralf S. Engelschall (http://engelschall.com/)
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.