A flexible and extensible JS library to interact with Thunder (WPEframework)
ThunderJS is an isomorphic library, which means it can be used in a browser environment as well as a NodeJS environment.
ThunderJS makes is easy to make API calls to Thunder (WPEframework) over a Websocket connection. ThunderJS can also be used to listen to (and act upon) notifications broadcasted by Thunder.
ThunderJS can be installed into your project via NPM or Yarn, installing directly from GitHub:
npm install github:WebPlatformForEmbedded/ThunderJS
// or
yarn add github:WebPlatformForEmbedded/ThunderJS
Next you can import
or require
the ThunderJS dependency into your own script and start implementing it from there.
import ThunderJS from 'ThunderJS',
// or
const ThunderJS = require('ThunderJS)
This repository contains examples of how to use and implement this library in a browser environment and in a NodeJS environment.
In order to run the examples you should first:
- Clone this repository
- And run
npm install
to install the project's dependencies
Run npm run example:browser
to 1) install the example's dependencies and 2) fire up a local webserver that serves a browser based implementation of ThunderJS
Run npm run example:node
to 1) install the example's dependencies and 2) start a NodeJS / CLI implementatio of ThunderJS
Note: all examples use ES6 syntax. In order to use this syntax, depending on your target environment, you might need to use a Babel and some kind of module bundler.
import ThunderJS from './thunderJS'
const config = {
host: '192.168.1.100', // IP address of the box that runs Thunder (WPEframework) - required
}
const thunderJS = ThunderJS(config)
If your box is running Thunder under a different port than the default port 80, you can specify this in your configuration object (together with some extra properties of the websocket address).
const config = {
host: '192.168.1.100', // defaults to localhost,
port: 2020, // defaults to 80
endpoint: '/api', // defaults to '/jsonrpc'
protocol: 'wss://', // defaults to 'ws://'
}
It is possible to have multiple instances of ThunderJS, with different configuration.
In essence all API calls are made up of the following components:
- plugin (i.e.
Controller
orDeviceInfo
important: plugin names are case sensitive) - method (i.e
activate
orsysteminfo
) - params (i.e.
{callsign: 'Bluetooth'}
, optional)
The library supports 2 ways of making API calls, depending on your coding style preferences.
Option 1 - Argument based
const plugin = 'DeviceInfo'
const method = 'systeminfo'
const params = {
foo: 'bar'
}
thunderJS.call(plugin, method, params)
Option 2 - Object based
const params = {
foo: 'bar'
}
thunderJS.DeviceInfo.systeminfo(params)
Versions
The Thunder API supports different versions of the same methods, with a slightly different implementation depending on the specific box or needs of the project.
By default ThunderJS calls version 1 of all methods, for each plugin. But during the initialization of ThunderJS, you have the option to configure which version(s) to use (per plugin). The configured version will be called for every method call for that plugin (per thunderJS instance).
Configuring versions is done by passsing in a versions
object with a key-value pair for each relevant plugin to the ThunderJS
factory. It is also possible pass in a default
value to overwrite the standard default value of 1.
import ThunderJS from './thunderJS'
const config = {
host: '192.168.1.100',
versions: {
default: 5, // use version 5 if plugin not specified
Controller: 1,
DeviceInfo: 15,
Messenger: 7,
// etc ..
}
}
const thunderJS = ThunderJS(config)
In some cases you might need to call a different version for a specific method. In this case you can pass version
as a param
.
import ThunderJS from './thunderJS'
const config = {
host: '192.168.1.100',
versions: {
default: 5, // use version 5 if plugin not specified
Controller: 1,
DeviceInfo: 15,
Messenger: 7,
// etc ..
}
}
const thunderJS = ThunderJS(config)
// use version 15 as specified in the config
thunderJS.DeviceInfo.systeminfo()
// override config and use version 14
thunderJS.DeviceInfo.systeminfo({
version: 14
})
When an API call to Thunder is made it can return a result
in case of success or an error
, when something goes wrong.
The ThunderJS library supports 2 ways of processing the results of API calls, depending on your coding style preferences.
Option 1 - Promise based
thunderJS.DeviceInfo.systeminfo()
.then(result => {
console.log('Success', result)
}).catch(err => {
console.error('Error', err)
})
Option 2 - Callback based
thunderJS.DeviceInfo.systeminfo((err, result) => {
if(err) {
console.error('Error', err)
}
else {
console.log('Success!', result)
}
})
Note that in these examples the object based style of calling was used. But both ways of processing the result of an API call work with argument based style as well.
Besides calling the available WPE Thunder API methods and returning the result, ThunderJS can also implement extra helper methods.
For example, the WPE Thunder API for the DeviceInfo
plugin currently consists of only 3 methods (systeminfo
, addresses
and socketinfo
).
On top of that the ThunderJS library implements 2 convenience methods to retrieve the version
and freeRam
directly (which ultimately are retrieved from the API by calling the systeminfo
method).
thunderJS.DeviceInfo
.freeRam()
.then(ram => {
console.log('Free ram', ram)
})
.catch(err => {
console.error('Error', err)
})
While it's not necesarry to create a specific plugin for every Thunder plugin (or Nano service) to be able to make API to that plugin, with ThunderJS you can easily implement custom plugins.
You would create a custom plugin only, when you want to enhance the API of the Thunder plugin / Nano service with extra conviniece methods.
A plugin consists of a plain JS object literal, that should be registered under the plugin's namespace.
// register the plugin
thunderJS.registerPlugin('custom', {
method1(bar) {
return this.call('foo', { foo: bar })
},
method2() {
return this.call('bar').then(result => {
return result.bla
})
},
})
// call a method on the plugin
thunderJS.custom.method1('bar')
.then(console.log)
.catch(console.error)
While partially functional, notifications are work in progress.
Thunder (WPEframework) broadcasts notifications when events ocur in the system. However it will only broadcast those events that the client has subscribed to.
ThunderJS makes it easy to subscribe to specific events, and execute a callback-function upon every notification of each event.
Simply define a listener, passing in the plugin
as a first argument and the event
as a second. As a third argument you can pass in the callback function (that receives the notification
as an argument) every time a notification is received.
const listener = thunderJS.on('Controller', 'statechange', (notification) => {
console.log('Execute this callback on every notification', notification)
})
// dispose when done listening
listener.dispose()
In case you want to listen only once, you can use once
instead of on
The
once
method is work in progress!
const listener = thunderJS.once('Controller', 'statechange', (notification) => {
console.log('Execute this callback once', notification)
})
// a once-listener can also be disposed (but you should do so before it's called, of course)
listener.dispose()
As with API calls, you can also use object based style to achieve the same result.
const listener = thunderJS.Controller.on('statechange', (notification) => {
console.log('Execute this callback on every notification', notification)
})
const listener = thunderJS.Controller.once('statechange', (notification) => {
console.log('Execute this callback once', notification)
})
You can attach multiple listeners to the same notification. The callbacks will then be executed in sequence.
const listener1 = thunderJS.Controller.on('statechange', (notification) => {
console.log('First callback!', notification)
})
const listener2 = thunderJS.Controller.on('statechange', (notification) => {
console.log('Second callback!', notification)
})
Proposal / Work in progress!
If you want or need more control over listeners - for example because you need multiple listeners and want to keep track of them individually - you could also create a subscription oject.
const subscription = thunderJS.subscribe('Controller') // or thunderJS.Controller.subscribe()
const listener = subscription.on('statechange', (event) => {
console.log('Execute this callback on every notification', event)
})
const listenerOnce = subscription.once('statechange', (event) => {
console.log('Execute this callback on time', event)
})
// dispose listener when done listening
listener.dispose()
// return all listeners
const listeners = subscription.listeners()
// dispose all listeners
subscription.disposeAll()
// unsubscribe the subscription to stop acting upon incoming notifications (but keep track of the listeners!)
subscription.unsubscribe()
// subscribe to the notifications again (activating all listeners that weren't disposed of)
subscription.subscribe()
// dispose the subscription (together with all listeners)
subscription.dispose()
This library has unit / integration tests, located in the tests
folder.
To run all the tests execute: npm test