binrpc
v4.3.0
Published
HomeMatic binary RPC protocol - xmlrpc_bin://
Maintainers
Readme
binrpc
HomeMatic xmlrpc_bin:// protocol server and client
For use with CCU1/2 (rfd, hs485d, Rega), Homegear and CUxD
Implements the same interface as homematic-xmlrpc, these 2 libs should be a 1:1 drop-in-replacement for each other.
Changelog
See CHANGELOG.md for recent releases.
Breaking Change in v4.0.0: Requires Node.js >= 20. The library itself is unchanged and stays
CommonJS; tooling was modernized (GitHub Actions CI/release, eslint + prettier, node --test).
Breaking Change in v3.0.0: To be consistent with homematic-xmlrpc the RPC client isn't an event emitter anymore. All errors have to be handled through the methodCall callback.
Change in v2.1.0 To be consistent with homematic-xmlrpc you don't have to wait for the client connect event before using methodCall.
Breaking change in v2.0.0: system.multicall isn't resolved in single calls anymore. This should be
done by the application itself and was removed to be consistent with
homematic-xmlrpc.
Examples
Switch on the Channel LEQ0134153:1
var rpc = require('binrpc');
var rpcClient = rpc.createClient({host: '192.168.1.100', port: '2001'});
rpcClient.methodCall('setValue', ['LEQ0134153:1', 'STATE', true], function (err, res) {
console.log('response', err, JSON.stringify(res));
});For a full example on how to subscribe to CCU events see example.js
Further reading
- HomeMatic RPC Schnittstellen Dokumentation, eQ-3 (German)
- BIN-RPC reference by Sathya (with Homegear extensions) (English)
- BIN-RPC protocol description by leonsio, homematic-forum (German)
API Documentation
Modules
Classes
binrpc
binrpc.createClient(options) ⇒ Client
RPC client factory
Kind: static method of binrpc
| Param | Type | Default | Description | | --- | --- | --- | --- | | options | object | | | | options.host | string | | the hostname or ip address to connect to | | options.port | number | | the port to connect to | | [options.reconnectTimeout] | number | 2500 | wait milliseconds until trying to reconnect after the socket was closed | | [options.responseTimeout] | number | 5000 | wait milliseconds for method call response | | [options.queueMaxLength] | number | 15 | maximum number of methodCalls that are allowed in the queue |
binrpc.createServer(options, onListening) ⇒ Server
RPC server factory
Kind: static method of binrpc
| Param | Type | Description |
| --- | --- | --- |
| options | object | |
| options.host | string | ip address on which the server should listen |
| options.port | number | port on which the server should listen |
| onListening | function | function to be invoked in the server's listening callback |
client
- client
- .reconnectTimer : object | null
- .reconnectAttempts : number
- .closed : boolean
- .queue : Array
- .queueMaxLength : number
- .queueRetryTimeout : number
- .pending : boolean
- .responseTimeout : number
- .scheduleReconnect()
- .connect()
- .close()
- .queuePush(buf, cb)
- .queueShift()
- .methodCall(method, params, callback)
client.reconnectTimer : object | null
The pending reconnect timer, if any. There is never more than one: a
refused connect emits error and close, a dropped connection end
and close, and every one of those used to arm its own timer, so the
number of connection attempts doubled with each round (a client whose
peer was gone for a while drove the process to 100 % CPU).
Kind: instance property of client
client.reconnectAttempts : number
Consecutive failed attempts since the last successful connect; drives the backoff.
Kind: instance property of client
client.closed : boolean
Set by close(): no further connection attempts.
Kind: instance property of client
client.queue : Array
The request queue. Array elements must be objects with the properties buffer and callback
Kind: instance property of client
client.queueMaxLength : number
Maximum queue length. If queue length is greater than this a methodCall will return error 'You are sending too fast'
Kind: instance property of client
client.queueRetryTimeout : number
Time in milliseconds. How long to wait for retry if a request is pending
Kind: instance property of client
client.pending : boolean
Indicates if there is a request waiting for its response
Kind: instance property of client
client.responseTimeout : number
Time in milliseconds. How long to wait for a method call response
Kind: instance property of client
client.scheduleReconnect()
Arm the single reconnect timer unless one is pending, reconnecting is disabled or the client was closed. The delay starts at reconnectTimeout and doubles per failed attempt up to reconnectTimeoutMax.
Kind: instance method of client
client.connect()
connect - also called for every reconnect; re-opens a closed client
Kind: instance method of client
client.close()
close - destroy the socket and stop reconnecting. A pending method call gets an error, queued ones fail on their write. connect() re-opens the client.
Kind: instance method of client
client.queuePush(buf, cb)
Push request to the queue
Kind: instance method of client
| Param | Type | | --- | --- | | buf | buffer | | cb | function |
client.queueShift()
Shift request from the queue and write it to the socket.
Kind: instance method of client
client.methodCall(method, params, callback)
methodCall
Kind: instance method of client
| Param | Type | Description | | --- | --- | --- | | method | string | | | params | Array | | | callback | function | optional - if omitted an empty string will be send as response |
server
server.close([callback]) ⇒ Promise
Close the server. Stops accepting new connections and destroys open connections so the returned promise settles.
Kind: instance method of server
| Param | Type | Description | | --- | --- | --- | | [callback] | function | optional - invoked with (error) when closed |
Client
Kind: global class
new Client(options)
| Param | Type | Default | Description | | --- | --- | --- | --- | | options | object | | | | options.host | string | | the hostname or ip address to connect to | | options.port | number | | the port to connect to | | [options.reconnectTimeout] | number | 2500 | wait milliseconds until trying to reconnect after the socket was closed; 0 disables reconnecting | | [options.reconnectTimeoutMax] | number | 30000 | upper bound of the reconnect delay: every failed attempt doubles the delay until this value, a successful connect resets it | | [options.responseTimeout] | number | 5000 | wait milliseconds for method call response | | [options.queueMaxLength] | number | 15 | maximum number of methodCalls that are allowed in the queue |
Protocol
Kind: global class
- Protocol
- .encodeRequest(method, data) ⇒ Buffer
- .encodeResponse(data) ⇒ Buffer
- .encodeData(obj) ⇒ Buffer
- .encodeStruct(obj) ⇒ Buffer
- .encodeStructKey(str) ⇒ Buffer
- .encodeArray(arr) ⇒ Buffer
- .encodeString(str) ⇒ Buffer
- .encodeBool(b) ⇒ Buffer
- .encodeInteger(i) ⇒ Buffer
- .encodeDouble(d) ⇒ Buffer
- .decodeDouble(elem) ⇒ object
- .decodeString(elem) ⇒ object
- .decodeBool(elem) ⇒ object
- .decodeInteger(elem) ⇒ object
- .decodeArray(elem) ⇒ object
- .decodeStruct(elem) ⇒ object
- .decodeData(data) ⇒ *
- .decodeResponse(data) ⇒ *
- .decodeStrangeRequest(data) ⇒ Array
- .decodeRequest(data) ⇒ *
Protocol.encodeRequest(method, data) ⇒ Buffer
encode requests
Kind: static method of Protocol
| Param | Type | Description | | --- | --- | --- | | method | string | throws error if not type string or if string is empty | | data | * | optional - defaults to an empty array |
Protocol.encodeResponse(data) ⇒ Buffer
encode response
Kind: static method of Protocol
| Param | Type | Description | | --- | --- | --- | | data | * | optional - defaults to empty string |
Protocol.encodeData(obj) ⇒ Buffer
encode data
Kind: static method of Protocol
| Param | Type | Description | | --- | --- | --- | | obj | * | throws TypeError if obj is undefined or null |
Protocol.encodeStruct(obj) ⇒ Buffer
encode struct
Kind: static method of Protocol
| Param | Type | Description | | --- | --- | --- | | obj | object | throws error if not of type object |
Protocol.encodeStructKey(str) ⇒ Buffer
encode struct key
Kind: static method of Protocol
| Param | Type | Description | | --- | --- | --- | | str | string | throws error if not of type string |
Protocol.encodeArray(arr) ⇒ Buffer
encode array
Kind: static method of Protocol
| Param | Type | Description | | --- | --- | --- | | arr | array | throws error if not instance of Array |
Protocol.encodeString(str) ⇒ Buffer
encode string
Kind: static method of Protocol
| Param | Type | Description | | --- | --- | --- | | str | string | throws error if not of type string |
Protocol.encodeBool(b) ⇒ Buffer
encode bool
Kind: static method of Protocol
| Param | Type | Description | | --- | --- | --- | | b | * | any type |
Protocol.encodeInteger(i) ⇒ Buffer
encode integer
Kind: static method of Protocol
| Param | Type | Description | | --- | --- | --- | | i | number | throws error if not a number or if out of range (min=-2147483648 max=2147483647) |
Protocol.encodeDouble(d) ⇒ Buffer
encode double
Kind: static method of Protocol
| Param | Type | Description | | --- | --- | --- | | d | number | throws error if not a number |
Protocol.decodeDouble(elem) ⇒ object
decode double
Kind: static method of Protocol
Returns: object - properties content and rest
| Param | Type | Description | | --- | --- | --- | | elem | Buffer | throws error if not an instance of Buffer or if length <8 |
Protocol.decodeString(elem) ⇒ object
decode string
Kind: static method of Protocol
Returns: object - properties content and rest
| Param | Type | Description | | --- | --- | --- | | elem | Buffer | throws error if not an instance of Buffer or if length <4 |
Protocol.decodeBool(elem) ⇒ object
decode bool
Kind: static method of Protocol
Returns: object - properties content and rest
| Param | Type | Description | | --- | --- | --- | | elem | Buffer | throws error if not an instance of Buffer or if length <1 |
Protocol.decodeInteger(elem) ⇒ object
decode integer
Kind: static method of Protocol
Returns: object - properties content and rest
| Param | Type | Description | | --- | --- | --- | | elem | Buffer | throws error if not an instance of Buffer or if length <4 |
Protocol.decodeArray(elem) ⇒ object
decode array
Kind: static method of Protocol
Returns: object - properties content and rest
| Param | Type | Description | | --- | --- | --- | | elem | Buffer | throws error if not an instance of Buffer or if length <4 |
Protocol.decodeStruct(elem) ⇒ object
decode struct
Kind: static method of Protocol
Returns: object - properties content and rest
| Param | Type | Description | | --- | --- | --- | | elem | Buffer | throws error if not an instance of Buffer or if length <4 |
Protocol.decodeData(data) ⇒ *
decodes binary data
Kind: static method of Protocol
| Param | Type | | --- | --- | | data | Buffer |
Protocol.decodeResponse(data) ⇒ *
decode response
Kind: static method of Protocol
| Param | Type | Description | | --- | --- | --- | | data | Buffer | throws TypeError if data is no instance of Buffer |
Protocol.decodeStrangeRequest(data) ⇒ Array
decode "strange" request
Kind: static method of Protocol
| Param | Type | Description | | --- | --- | --- | | data | Buffer | throws TypeError if data is no instance of Buffer |
Protocol.decodeRequest(data) ⇒ *
decode request
Kind: static method of Protocol
| Param | Type | Description | | --- | --- | --- | | data | Buffer | throws TypeError if not instance of Buffer |
Server
Kind: global class
new Server(options, onListening)
| Param | Type | Description |
| --- | --- | --- |
| options | object | |
| options.host | string | ip address on which the server should listen |
| options.port | number | port on which the server should listen |
| onListening | function | function to be invoked in the server's listening callback |
"error" (error)
Re-emitted from the underlying net server (e.g. EADDRINUSE). Without an error listener this throws, as usual for EventEmitters.
Kind: event emitted by Server
| Param | Type | | --- | --- | | error | Error |
"listening"
Fires when the server is listening
Kind: event emitted by Server
"[method]" (error, params, callback)
Fires when RPC method call is received
Kind: event emitted by Server
| Param | Type | Description | | --- | --- | --- | | error | * | | | params | array | | | callback | function | callback awaits params err and response |
"NotFound" (method, params)
Fires if a RPC method call has no event handler. RPC response is always an empty string.
Kind: event emitted by Server
| Param | Type | | --- | --- | | method | string | | params | array |
License
The MIT License (MIT)
Copyright (c) 2014-2018 Sebastian 'hobbyquaker' Raff and Contributors
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.
