Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/hobbyquaker/binrpc

HomeMatic xmlrpc_bin:// protocol server and client
https://github.com/hobbyquaker/binrpc

homegear homematic node-module rpc smarthome

Last synced: 22 days ago
JSON representation

HomeMatic xmlrpc_bin:// protocol server and client

Lists

README

        

binrpc
======

[![npm version](https://badge.fury.io/js/binrpc.svg)](https://badge.fury.io/js/binrpc)
[![dependencies Status](https://david-dm.org/hobbyquaker/binrpc/status.svg)](https://david-dm.org/hobbyquaker/binrpc)
[![Coverage Status](https://coveralls.io/repos/github/hobbyquaker/binrpc/badge.svg?branch=master)](https://coveralls.io/github/hobbyquaker/binrpc?branch=master)
[![Build Status](https://travis-ci.org/hobbyquaker/binrpc.svg?branch=master)](https://travis-ci.org/hobbyquaker/binrpc)
[![XO code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)
[![License][mit-badge]][mit-url]

[mit-badge]: https://img.shields.io/badge/License-MIT-blue.svg?style=flat
[mit-url]: LICENSE

> 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](https://github.com/hobbyquaker/homematic-xmlrpc), these 2 libs
should be a 1:1 drop-in-replacement for each other.

## Changelog

**Breaking Change in v3.0.0:** To be consistent with [homematic-xmlrpc](https://github.com/hobbyquaker/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](https://github.com/hobbyquaker/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](https://github.com/hobbyquaker/homematic-xmlrpc).

## Examples

Switch on the Channel `LEQ0134153:1`
```javascript
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](example.js)

## Further reading

* [HomeMatic RPC Schnittstellen Dokumentation, eQ-3 (German)](http://www.eq-3.de/Downloads/eq3/download%20bereich/hm_web_ui_doku/HM_XmlRpc_API.pdf)
* [BIN-RPC reference by Sathya (with Homegear extensions) (English)](https://www.homegear.eu/index.php/Binary_RPC_Reference)
* [BIN-RPC protocol description by leonsio, homematic-forum (German)](http://homematic-forum.de/forum/viewtopic.php?t=8210&p=57493)

## API Documentation

## Modules


binrpc


client


protocol


server


## Classes


Client


Protocol


Server


## binrpc

* [binrpc](#module_binrpc)
* [.createClient(options)](#module_binrpc.createClient) ⇒ [Client](#Client)
* [.createServer(options, onListening)](#module_binrpc.createServer) ⇒ [Server](#Server)

### binrpc.createClient(options) ⇒ [Client](#Client)
RPC client factory

**Kind**: static method of [binrpc](#module_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](#Server)
RPC server factory

**Kind**: static method of [binrpc](#module_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](#module_client)
* [.queue](#module_client+queue) : Array
* [.queueMaxLength](#module_client+queueMaxLength) : number
* [.queueRetryTimeout](#module_client+queueRetryTimeout) : number
* [.pending](#module_client+pending) : boolean
* [.responseTimeout](#module_client+responseTimeout) : number
* [.connect()](#module_client+connect)
* [.queuePush(buf, cb)](#module_client+queuePush)
* [.queueShift()](#module_client+queueShift)
* [.methodCall(method, params, callback)](#module_client+methodCall)

### client.queue : Array
The request queue. Array elements must be objects with the properties buffer and callback

**Kind**: instance property of [client](#module_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](#module_client)

### client.queueRetryTimeout : number
Time in milliseconds. How long to wait for retry if a request is pending

**Kind**: instance property of [client](#module_client)

### client.pending : boolean
Indicates if there is a request waiting for its response

**Kind**: instance property of [client](#module_client)

### client.responseTimeout : number
Time in milliseconds. How long to wait for a method call response

**Kind**: instance property of [client](#module_client)

### client.connect()
connect

**Kind**: instance method of [client](#module_client)

### client.queuePush(buf, cb)
Push request to the queue

**Kind**: instance method of [client](#module_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](#module_client)

### client.methodCall(method, params, callback)
methodCall

**Kind**: instance method of [client](#module_client)

| Param | Type | Description |
| --- | --- | --- |
| method | string | |
| params | Array | |
| callback | function | optional - if omitted an empty string will be send as response |

## protocol

* [protocol](#module_protocol)
* [.encodeRequest(method, data)](#module_protocol.encodeRequest) ⇒ Buffer
* [.encodeResponse(data)](#module_protocol.encodeResponse) ⇒ Buffer
* [.encodeData(obj)](#module_protocol.encodeData) ⇒ Buffer
* [.encodeStruct(obj)](#module_protocol.encodeStruct) ⇒ Buffer
* [.encodeStructKey(str)](#module_protocol.encodeStructKey) ⇒ Buffer
* [.encodeArray(arr)](#module_protocol.encodeArray) ⇒ Buffer
* [.encodeString(str)](#module_protocol.encodeString) ⇒ Buffer
* [.encodeBool(b)](#module_protocol.encodeBool) ⇒ Buffer
* [.encodeInteger(i)](#module_protocol.encodeInteger) ⇒ Buffer
* [.encodeDouble(d)](#module_protocol.encodeDouble) ⇒ Buffer
* [.decodeDouble(elem)](#module_protocol.decodeDouble) ⇒ object
* [.decodeString(elem)](#module_protocol.decodeString) ⇒ object
* [.decodeBool(elem)](#module_protocol.decodeBool) ⇒ object
* [.decodeInteger(elem)](#module_protocol.decodeInteger) ⇒ object
* [.decodeArray(elem)](#module_protocol.decodeArray) ⇒ object
* [.decodeStruct(elem)](#module_protocol.decodeStruct) ⇒ object
* [.decodeData(data)](#module_protocol.decodeData) ⇒ \*
* [.decodeResponse(data)](#module_protocol.decodeResponse) ⇒ \*
* [.decodeStrangeRequest(data)](#module_protocol.decodeStrangeRequest) ⇒ Array
* [.decodeRequest(data)](#module_protocol.decodeRequest) ⇒ \*

### protocol.encodeRequest(method, data) ⇒ Buffer
encode requests

**Kind**: static method of [protocol](#module_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](#module_protocol)

| Param | Type | Description |
| --- | --- | --- |
| data | \* | optional - defaults to empty string |

### protocol.encodeData(obj) ⇒ Buffer
encode data

**Kind**: static method of [protocol](#module_protocol)

| Param | Type | Description |
| --- | --- | --- |
| obj | \* | throws TypeError if obj is undefined or null |

### protocol.encodeStruct(obj) ⇒ Buffer
encode struct

**Kind**: static method of [protocol](#module_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](#module_protocol)

| Param | Type | Description |
| --- | --- | --- |
| str | string | throws error if not of type string |

### protocol.encodeArray(arr) ⇒ Buffer
encode array

**Kind**: static method of [protocol](#module_protocol)

| Param | Type | Description |
| --- | --- | --- |
| arr | array | throws error if not instance of Array |

### protocol.encodeString(str) ⇒ Buffer
encode string

**Kind**: static method of [protocol](#module_protocol)

| Param | Type | Description |
| --- | --- | --- |
| str | string | throws error if not of type string |

### protocol.encodeBool(b) ⇒ Buffer
encode bool

**Kind**: static method of [protocol](#module_protocol)

| Param | Type | Description |
| --- | --- | --- |
| b | \* | any type |

### protocol.encodeInteger(i) ⇒ Buffer
encode integer

**Kind**: static method of [protocol](#module_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](#module_protocol)

| Param | Type | Description |
| --- | --- | --- |
| d | number | throws error if not a number |

### protocol.decodeDouble(elem) ⇒ object
decode double

**Kind**: static method of [protocol](#module_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](#module_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 double

**Kind**: static method of [protocol](#module_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.decodeInteger(elem) ⇒ object
decode integer

**Kind**: static method of [protocol](#module_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](#module_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](#module_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](#module_protocol)

| Param | Type |
| --- | --- |
| data | Buffer |

### protocol.decodeResponse(data) ⇒ \*
decode response

**Kind**: static method of [protocol](#module_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](#module_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](#module_protocol)

| Param | Type | Description |
| --- | --- | --- |
| data | Buffer | throws TypeError if not instance of Buffer |

## server

## 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 |
| [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

## Server
**Kind**: global class

* [Server](#Server)
* [new Server(options, onListening)](#new_Server_new)
* ["[method]" (error, params, callback)](#Server+event_[method])
* ["NotFound" (method, params)](#Server+event_NotFound)

### 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 |

### "[method]" (error, params, callback)
Fires when RPC method call is received

**Kind**: event emitted by [Server](#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](#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.