0.3.1 major refactor of interrupts vs interrupt
interrupt class can be added multiple times to interrupts with just emitter via new dynamic extends if used one off can still use uci-base Both classes will only will only push on interrupt and bother create a socket listener There is special 'interrupt' log level for easier watching of interrupt events Added a much imporved multi example that reads in a yaml file of options added yalc support on remote. run yalcu in terminal to have syncd ~/.yalc be updated to package while devlopingmaster
parent
3868505d3e
commit
62f747d992
|
@ -1,33 +1,87 @@
|
||||||
import Interrupts from '../src/interrupts'
|
import { readFile as read } from 'fs-read-data'
|
||||||
|
import onDeath from 'ondeath'
|
||||||
|
|
||||||
const PINS = [9,10]
|
import { Interrupts } from '../src'
|
||||||
|
|
||||||
const EDGE = process.env.EDGE || 'both'
|
let options = {}
|
||||||
const REMOTE_HOST = process.env.REMOTE_HOST || 'sbc'
|
|
||||||
const REMOTE_PORT = process.env.REMOTE_PORT || 9001
|
|
||||||
|
|
||||||
let interrupts = new Interrupts(PINS, { id:'multi-interrupt', cmd:'interrupt.find', resetCmd:'interrupt.reset', resetInterval:0, edge:EDGE })
|
;
|
||||||
|
|
||||||
interrupts.amendConsumerCommands( {reply:() => {}} )
|
|
||||||
|
|
||||||
interrupts.on('log', ev => {
|
|
||||||
if (ev.level !== 'debug' && ev.level !== 'trace') console.log(`LOG:'--${ev.level}-- ${ev.msg}`)
|
|
||||||
// console.log(`LOG:'--${ev.level}-- ${ev.msg}`)
|
|
||||||
})
|
|
||||||
|
|
||||||
interrupts.on('connection:socket', ev => {
|
|
||||||
console.log(`remote socket connection event ${ev.socketName}: ${ev.state}`)
|
|
||||||
})
|
|
||||||
|
|
||||||
;
|
|
||||||
(async () => {
|
(async () => {
|
||||||
|
|
||||||
interrupts.registerSocket('interrupt','c','t',{host:REMOTE_HOST, port:REMOTE_PORT, name:'interrupt', data:{pins:PINS, type:'interrupt'}})
|
options = await read('./examples/multi.yaml')
|
||||||
// interrupts.registerSocket('listen','s','t',{port:1777})
|
|
||||||
|
options.id = options.id || options.name || 'switches'
|
||||||
|
|
||||||
|
console.log('----------------interrupt start options--------\n',options,'\n---------------------------------')
|
||||||
|
|
||||||
|
let interrupts = new Interrupts(options.pins,options)
|
||||||
|
|
||||||
|
// Uncomment to listen to local events
|
||||||
|
// interrupts.on('interrupt', packet => {
|
||||||
|
// console.log(packet.pin, 'has tripped \n interupt has been pushed \n but could take extra action here as well')
|
||||||
|
// })
|
||||||
|
// //
|
||||||
|
// interrupts.on('ready:24', ready => {
|
||||||
|
// console.log(ready, 'pin 24, ready:<pin number> is emitted every time status is checked')
|
||||||
|
// })
|
||||||
|
|
||||||
|
if ((process.env.UCI_ENV || '').includes('dev')) {
|
||||||
|
interrupts.on('log',ev => {
|
||||||
|
switch (ev.level) {
|
||||||
|
// case 'warning':
|
||||||
|
// case 'error':
|
||||||
|
// case 'info':
|
||||||
|
// case 'testing':
|
||||||
|
case 'interrupt':
|
||||||
|
case 'fatal':
|
||||||
|
console.log(ev.level.toUpperCase(),'\n',ev)
|
||||||
|
break
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
process.once('SIGUSR2', async () => {
|
||||||
|
shutdown.call(interrupts)
|
||||||
|
process.kill(process.pid, 'SIGUSR2')
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
|
||||||
|
onDeath( async () => {
|
||||||
|
console.log('\ninterrupt plugin device, \nHe\'s dead Jim')
|
||||||
|
shutdown.call(interrupts)
|
||||||
|
console.log('shutdown done')
|
||||||
|
})
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
await interrupts.init()
|
await interrupts.init()
|
||||||
await interrupts.socketsInit()
|
|
||||||
|
console.log('after init',interrupts.ready.observers,interrupts.ready.state)
|
||||||
|
|
||||||
|
interrupts.ready.all.subscribe(
|
||||||
|
(ready) => {
|
||||||
|
if (!ready) {
|
||||||
|
console.log(options.name, 'YIKES! some observer is still not reporting ready')
|
||||||
|
let failed = interrupts.ready.state.filter(obs=> obs[1]===false).map(obs=>[obs[0],interrupts.ready.getObserverDetails(obs)])
|
||||||
|
console.log('those that have failed\n',failed)
|
||||||
|
// notifiy here
|
||||||
|
} else {
|
||||||
|
console.log(options.name, ': This GPIO Interrupt Hardware is ONLINE!!!!')
|
||||||
|
interrupts.send({cmd:'interrupt.find', stuff:'some info'})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
})().catch(err => {
|
})().catch(err => {
|
||||||
console.error('FATAL: UNABLE TO START SYSTEM!\n',err)
|
console.log('FATAL: UNABLE TO START SYSTEM!\n',err)
|
||||||
// process.kill(process.pid, 'SIGTERM')
|
process.kill(process.pid, 'SIGTERM')
|
||||||
})
|
})
|
||||||
|
|
||||||
|
async function shutdown (){
|
||||||
|
let names = Object.keys(this.getSocket())
|
||||||
|
console.log(names)
|
||||||
|
for (let name of names) {
|
||||||
|
console.log(name)
|
||||||
|
console.log(await this.removeSocket(name))
|
||||||
|
console.log('after remove', name)
|
||||||
|
}
|
||||||
|
this.removeAllListeners()
|
||||||
|
}
|
||||||
|
|
|
@ -5,8 +5,8 @@ const delay = time => new Promise(res=>setTimeout(()=>res(),time))
|
||||||
const IPIN = process.env.IPIN || 4
|
const IPIN = process.env.IPIN || 4
|
||||||
|
|
||||||
const EDGE = process.env.EDGE || 'both'
|
const EDGE = process.env.EDGE || 'both'
|
||||||
const REMOTE_HOST = process.env.REMOTE_HOST || 'sbc'
|
// const REMOTE_HOST = process.env.REMOTE_HOST || 'sbc'
|
||||||
const REMOTE_PORT = process.env.REMOTE_PORT || 9000
|
// const REMOTE_PORT = process.env.REMOTE_PORT || 9000
|
||||||
const PORT = process.env.PORT || 9000 + IPIN
|
const PORT = process.env.PORT || 9000 + IPIN
|
||||||
|
|
||||||
let interrupt = new Interrupt(IPIN,{id:'test-interrupt', wait:0, edge:EDGE, resetInterval:1, reset:true})
|
let interrupt = new Interrupt(IPIN,{id:'test-interrupt', wait:0, edge:EDGE, resetInterval:1, reset:true})
|
||||||
|
@ -30,7 +30,7 @@ interrupt.on('interrupt.reset', packet => {
|
||||||
return packet
|
return packet
|
||||||
})
|
})
|
||||||
await interrupt.init()
|
await interrupt.init()
|
||||||
interrupt.addSocket('inter','c','t',{host:REMOTE_HOST, port:REMOTE_PORT})
|
// interrupt.addSocket('inter','c','t',{host:REMOTE_HOST, port:REMOTE_PORT})
|
||||||
interrupt.addSocket('inters','s','t',{port:PORT})
|
interrupt.addSocket('inters','s','t',{port:PORT})
|
||||||
console.log(await interrupt.socketsInit())
|
console.log(await interrupt.socketsInit())
|
||||||
console.log('interrupt ready and waiting')
|
console.log('interrupt ready and waiting')
|
||||||
|
|
13
package.json
13
package.json
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@uci/interrupt",
|
"name": "@uci/interrupt",
|
||||||
"main": "src",
|
"main": "src",
|
||||||
"version": "0.3.0",
|
"version": "0.3.1",
|
||||||
"description": "a class for adding interrupt processesing for gpio pins on Raspberry Pi and Similar SBCs",
|
"description": "a class for adding interrupt processesing for gpio pins on Raspberry Pi and Similar SBCs",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"single": "node -r esm examples/single",
|
"single": "node -r esm examples/single",
|
||||||
|
@ -12,7 +12,8 @@
|
||||||
"multi:debug": "UCI_LOG_LEVEL=debug npm run multi:dev",
|
"multi:debug": "UCI_LOG_LEVEL=debug npm run multi:dev",
|
||||||
"remote": "node -r esm examples/remote",
|
"remote": "node -r esm examples/remote",
|
||||||
"remote:dev": "UCI_ENV=dev ./node_modules/.bin/nodemon -r esm --preserve-symlinks examples/remote",
|
"remote:dev": "UCI_ENV=dev ./node_modules/.bin/nodemon -r esm --preserve-symlinks examples/remote",
|
||||||
"remote:debug": "UCI_LOG_LEVEL=debug npm run remote:dev"
|
"remote:debug": "UCI_LOG_LEVEL=debug npm run remote:dev",
|
||||||
|
"yalcu": "./node_modules/.bin/nodemon --watch /home/sysadmin/.yalc/**/*.js --exec /opt/node-global-apps/bin/yalc update"
|
||||||
},
|
},
|
||||||
"author": "David Kebler",
|
"author": "David Kebler",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
@ -33,14 +34,16 @@
|
||||||
"homepage": "https://github.com/uCOMmandIt/uci-interrrupt#readme",
|
"homepage": "https://github.com/uCOMmandIt/uci-interrrupt#readme",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@uci-utils/logger": "^0.0.16",
|
"@uci-utils/logger": "^0.0.16",
|
||||||
"@uci/base": "^0.5.0",
|
"@uci/base": "^0.5.1",
|
||||||
"death": "^1.1.0",
|
"death": "^1.1.0",
|
||||||
"onoff": "^5.0.1"
|
"onoff": "^5.0.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"chai": "^4.2.0",
|
"chai": "^4.2.0",
|
||||||
"esm": "^3.2.25",
|
"esm": "^3.2.25",
|
||||||
"mocha": "^7.1.0",
|
"fs-read-data": "^1.0.4",
|
||||||
"nodemon": "^2.0.2"
|
"mocha": "^7.1.1",
|
||||||
|
"nodemon": "^2.0.2",
|
||||||
|
"ondeath": "^1.0.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,15 +1,25 @@
|
||||||
import Base from '@uci/base'
|
import Base from '@uci/base'
|
||||||
|
import EventEmitter from 'events'
|
||||||
import DeadJim from 'death'
|
import DeadJim from 'death'
|
||||||
import { Gpio } from 'onoff'
|
import { Gpio } from 'onoff'
|
||||||
|
|
||||||
import logger from '@uci-utils/logger'
|
import logger from '@uci-utils/logger'
|
||||||
let log = logger({package:'@uci/interrupt', file:'/src/interrupt.js'})
|
let log = logger({package:'@uci/interrupt', file:'/src/interrupt.js'})
|
||||||
// a pin makes a socket (server/listner) for each pin to which a consumer can be connected
|
|
||||||
// if opts .port/.path/.topic/.wport are base number/name to which pin number is added/appended (default being 9000,9100,'interrupt')
|
|
||||||
// for specific port number pass itrt.port,itrn.path,itrm.topic,itrw.port which override it if present
|
|
||||||
// conPacket is for connecting consumers. This will send this conPacket command on connect, which may needed to initilize something on related hardware
|
|
||||||
class Interrupt extends Base {
|
|
||||||
|
|
||||||
|
function ExtendsInterrupt (pin,opts= {}) {
|
||||||
|
|
||||||
|
if (!new.target) {
|
||||||
|
throw new Error('Uncaught TypeError: Class constructor Interrupt cannot be invoked without \'new\'')
|
||||||
|
}
|
||||||
|
|
||||||
|
if (isNaN(pin)) {
|
||||||
|
throw new Error('supplied pin argument is not a number')
|
||||||
|
}
|
||||||
|
|
||||||
|
const SuperClass = opts.multiple ? EventEmitter : Base
|
||||||
|
|
||||||
|
// this always emits local events but will also send if any consumers are created/online
|
||||||
|
class Interrupt extends SuperClass {
|
||||||
constructor(pin, opts = {}) {
|
constructor(pin, opts = {}) {
|
||||||
pin = Number(pin) // make sure pin is a number!
|
pin = Number(pin) // make sure pin is a number!
|
||||||
super(opts)
|
super(opts)
|
||||||
|
@ -33,6 +43,12 @@ class Interrupt extends Base {
|
||||||
this.packet.pin = this.pin_num
|
this.packet.pin = this.pin_num
|
||||||
this.packet.cmd = this.packet.cmd || opts.cmd || opts.interruptCmd || 'interrupt'
|
this.packet.cmd = this.packet.cmd || opts.cmd || opts.interruptCmd || 'interrupt'
|
||||||
this.packet.count = this.count
|
this.packet.count = this.count
|
||||||
|
this.multiple = opts.multiple // multiple means that this is one of multiple interrupt pins thus it only emits, no direct socket communication
|
||||||
|
if (opts.multiple) {
|
||||||
|
this.send = ()=>{} // if not using uci-base then ignore the send and push methods
|
||||||
|
this.push = ()=>{}
|
||||||
|
}
|
||||||
|
else {
|
||||||
this.amendConsumerCommands({reset:this.reset.bind(this)})
|
this.amendConsumerCommands({reset:this.reset.bind(this)})
|
||||||
this.amendSocketCommands({
|
this.amendSocketCommands({
|
||||||
reset:this.reset.bind(this),
|
reset:this.reset.bind(this),
|
||||||
|
@ -40,7 +56,9 @@ class Interrupt extends Base {
|
||||||
fire:this.fire.bind(this),
|
fire:this.fire.bind(this),
|
||||||
intervalReset:this.intervalReset.bind(this)
|
intervalReset:this.intervalReset.bind(this)
|
||||||
})
|
})
|
||||||
} // end constructor
|
}
|
||||||
|
|
||||||
|
} // end construtor
|
||||||
|
|
||||||
async init() {
|
async init() {
|
||||||
|
|
||||||
|
@ -62,10 +80,11 @@ class Interrupt extends Base {
|
||||||
}.bind(this))
|
}.bind(this))
|
||||||
|
|
||||||
await this.intervalReset(this.resetInterval)
|
await this.intervalReset(this.resetInterval)
|
||||||
|
const state = await this.status()
|
||||||
|
|
||||||
this.emit('log',{level:'info', msg:`new interrupt pin ${this.pin_num} created and watching`, state:await this.status(), edge:this.edge,debounce:this.wait})
|
this.emit('log',{level:'interrupt', msg:`new interrupt pin ${this.pin_num} created and watching`, state:state, edge:this.edge,debounce:this.wait})
|
||||||
|
|
||||||
super.init()
|
if (super.init) super.init() // only call if superclass has init (i.e. uci base)
|
||||||
|
|
||||||
} // end init
|
} // end init
|
||||||
|
|
||||||
|
@ -81,14 +100,15 @@ class Interrupt extends Base {
|
||||||
// returns true if pin is ready and waiting to trigger interrupt
|
// returns true if pin is ready and waiting to trigger interrupt
|
||||||
async status(packet) {
|
async status(packet) {
|
||||||
let state = await this.pin.read()
|
let state = await this.pin.read()
|
||||||
let ready = this.pull==='down' ? !state : !!state // ready is always true for 'both'
|
let ready = this.edge==='both' ? true : this.pull==='down' ? !state : !!state // ready is always true for 'both'
|
||||||
|
this.emit('ready',ready)
|
||||||
if (packet) {
|
if (packet) {
|
||||||
packet.pin = this.pin_num
|
packet.pin = this.pin_num
|
||||||
packet.state = state
|
packet.state = state
|
||||||
if (this.edge !=='both') packet.ready = ready
|
if (this.edge !=='both') packet.ready = ready
|
||||||
return packet
|
return packet
|
||||||
}
|
}
|
||||||
return this.edge ==='both' ? state : ready
|
return ready
|
||||||
}
|
}
|
||||||
|
|
||||||
async intervalReset(packet) {
|
async intervalReset(packet) {
|
||||||
|
@ -103,6 +123,7 @@ class Interrupt extends Base {
|
||||||
return this._intervalReset ? true : false
|
return this._intervalReset ? true : false
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// remote reset
|
||||||
async reset(packet={}) {
|
async reset(packet={}) {
|
||||||
let res = {}
|
let res = {}
|
||||||
this.emit('log',{level:'info', msg:`interrupt reset request for pin ${this.pin_num}`})
|
this.emit('log',{level:'info', msg:`interrupt reset request for pin ${this.pin_num}`})
|
||||||
|
@ -110,7 +131,7 @@ class Interrupt extends Base {
|
||||||
else {
|
else {
|
||||||
if(!await this.status()) {
|
if(!await this.status()) {
|
||||||
delete packet._header
|
delete packet._header
|
||||||
this.emit('reset',packet) // emit locally
|
this.emit('reset',packet) // emit locally, then instance can listen and take custome action (e.g. send reset to mcp)
|
||||||
packet.cmd = this.resetCmd
|
packet.cmd = this.resetCmd
|
||||||
let state = await this.status()
|
let state = await this.status()
|
||||||
res = {level:state?'debug':'error', msg:`attempted interrupt reset of pin ${this.pin_num} ${state ? 'succeeded' : 'failed'}`, reset:true, ready:state}
|
res = {level:state?'debug':'error', msg:`attempted interrupt reset of pin ${this.pin_num} ${state ? 'succeeded' : 'failed'}`, reset:true, ready:state}
|
||||||
|
@ -120,7 +141,7 @@ class Interrupt extends Base {
|
||||||
this.emit('log',res)
|
this.emit('log',res)
|
||||||
return res
|
return res
|
||||||
}
|
}
|
||||||
|
// creates an interrupt event packet and emits/sends it
|
||||||
// use hook to do more processing
|
// use hook to do more processing
|
||||||
async _interruptProcess(value,err) {
|
async _interruptProcess(value,err) {
|
||||||
let packet = Object.assign({},this.packet)
|
let packet = Object.assign({},this.packet)
|
||||||
|
@ -132,9 +153,9 @@ class Interrupt extends Base {
|
||||||
packet.timeStamp = Date.now()
|
packet.timeStamp = Date.now()
|
||||||
packet.dateTime = new Date().toString()
|
packet.dateTime = new Date().toString()
|
||||||
if (this._hookFunc) packet = await this._hookFunc.call(this,packet)
|
if (this._hookFunc) packet = await this._hookFunc.call(this,packet)
|
||||||
this.emit('log',{packet: packet, msg:`interrupt tripped for pin ${this.pin_num}, emit/send packet to all listening`})
|
this.emit('log',{level:'interrupt', packet: packet, msg:`interrupt tripped for pin ${this.pin_num}`})
|
||||||
this.emit('interrupt',packet) // emit locally
|
this.emit('interrupt',packet) // emit locally
|
||||||
this.send(packet) // no need to await reply
|
this.push(packet) // no need to await reply, push to any connected consumer by default
|
||||||
}
|
}
|
||||||
|
|
||||||
// replace default processor function arguments are value of pin and any error
|
// replace default processor function arguments are value of pin and any error
|
||||||
|
@ -147,9 +168,13 @@ class Interrupt extends Base {
|
||||||
else this._hookFunc=defaultHook
|
else this._hookFunc=defaultHook
|
||||||
}
|
}
|
||||||
|
|
||||||
} // end Class
|
} // end Class
|
||||||
|
|
||||||
export default Interrupt
|
return new Interrupt(pin,opts)
|
||||||
|
}
|
||||||
|
|
||||||
|
export default ExtendsInterrupt
|
||||||
|
export { ExtendsInterrupt as Interrupt }
|
||||||
|
|
||||||
|
|
||||||
//default hook
|
//default hook
|
||||||
|
|
|
@ -26,6 +26,7 @@ class Interrupts extends Base {
|
||||||
// remove per pin opts and store
|
// remove per pin opts and store
|
||||||
pinopts[pin] = Object.assign({}, opts[pin])
|
pinopts[pin] = Object.assign({}, opts[pin])
|
||||||
delete opts[pin]
|
delete opts[pin]
|
||||||
|
pinopts[pin].multiple=true // each pin will only extend a simple emitter, uci-base
|
||||||
})
|
})
|
||||||
pins.forEach(pin => {
|
pins.forEach(pin => {
|
||||||
pinopts[pin] = Object.assign({}, opts, pinopts[pin])
|
pinopts[pin] = Object.assign({}, opts, pinopts[pin])
|
||||||
|
@ -33,35 +34,28 @@ class Interrupts extends Base {
|
||||||
log.debug({ opts: pinopts[pin], method:'constructor', line:25, msg:`pin options for pin ${pin}`})
|
log.debug({ opts: pinopts[pin], method:'constructor', line:25, msg:`pin options for pin ${pin}`})
|
||||||
this._interrupts.set(pin, new Interrupt(pin, pinopts[pin]))
|
this._interrupts.set(pin, new Interrupt(pin, pinopts[pin]))
|
||||||
|
|
||||||
// TODO add socket and add methods to namespace if set
|
|
||||||
|
|
||||||
// bubble up events from single interrupts
|
// bubble up events from single interrupts
|
||||||
const EVENTS=['log','connection:consumer', 'connection:socket'] // that should emit up from pin base
|
const EVENTS=['log','interrupt','reset', 'ready'] // that should emit up from pin base
|
||||||
EVENTS.forEach(event => {
|
EVENTS.forEach(event => {
|
||||||
this.interrupt(pin).on(event, obj => {
|
this.interrupt(pin).on(event, obj => {
|
||||||
if (Object.prototype.toString.call(obj) !== '[object Object]') {
|
if (event==='ready') this.emit('ready:'+pin,obj)
|
||||||
|
else {
|
||||||
|
if (Object.prototype.toString.call(obj) !== '[object Object]') { // is plain object
|
||||||
let data=obj
|
let data=obj
|
||||||
obj = {}
|
obj = {}
|
||||||
obj.data = data
|
obj.data = data
|
||||||
}
|
}
|
||||||
obj.pin = pin
|
obj.pin = pin
|
||||||
obj.id = pinopts[pin].id
|
obj.id = pinopts[pin].id
|
||||||
this.emit(event,obj)
|
this.emit(event,obj) // will emit a pin specific event
|
||||||
})
|
}
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
this._interrupts.forEach( inter => {
|
}) // end pins construct
|
||||||
inter.on('interrupt', packet => {
|
|
||||||
this.emit('interrupt',packet)
|
this.on('interrupt', async ev=>{
|
||||||
})
|
await this.push(ev) // push interrupt to any connected consumers
|
||||||
inter.on('reset', packet => {
|
|
||||||
this.emit('reset',packet)
|
|
||||||
})
|
|
||||||
// overwrite single interrupt send
|
|
||||||
inter.send = async (packet) => {
|
|
||||||
return await this.send(packet) // send via common consumer
|
|
||||||
}
|
|
||||||
})
|
})
|
||||||
|
|
||||||
} // end constructor
|
} // end constructor
|
||||||
|
@ -69,7 +63,7 @@ class Interrupts extends Base {
|
||||||
interrupt(pin) { return this._interrupts.get(Number(pin)) } // get a handle to single interrupt
|
interrupt(pin) { return this._interrupts.get(Number(pin)) } // get a handle to single interrupt
|
||||||
|
|
||||||
async init() {
|
async init() {
|
||||||
super.init()
|
await super.init()
|
||||||
return Promise.all(
|
return Promise.all(
|
||||||
Array.from(this._interrupts).map(inter => {
|
Array.from(this._interrupts).map(inter => {
|
||||||
return inter[1].init()
|
return inter[1].init()
|
||||||
|
@ -77,17 +71,7 @@ class Interrupts extends Base {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
// only adds consumer sockets to each interrupt to same socket/server
|
registerHook(func) { // same hook for each pin
|
||||||
// alternatively use listen handler and single socket
|
|
||||||
async addInterSocket(name,type) {
|
|
||||||
if (type !=='s') {
|
|
||||||
this._interrupts.forEach( inter => {
|
|
||||||
inter.registerSocket(...arguments)
|
|
||||||
})
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
registerHook(func) {
|
|
||||||
this._interrupts.forEach(inter => {
|
this._interrupts.forEach(inter => {
|
||||||
inter.registerHook(func)
|
inter.registerHook(func)
|
||||||
})
|
})
|
||||||
|
@ -97,6 +81,7 @@ class Interrupts extends Base {
|
||||||
|
|
||||||
export default Interrupts
|
export default Interrupts
|
||||||
|
|
||||||
|
// combines indiviudal pin function calls into single call and combines returns
|
||||||
async function makefunc(fn, packet={}) {
|
async function makefunc(fn, packet={}) {
|
||||||
if (!packet.pin || packet.pin==='all') {
|
if (!packet.pin || packet.pin==='all') {
|
||||||
let rpacket = {pins:[]}
|
let rpacket = {pins:[]}
|
||||||
|
|
Loading…
Reference in New Issue