2018-07-01 00:25:15 -07:00
|
|
|
// import bus, { Gpio } from 'pigpio'
|
2018-02-27 08:42:37 -08:00
|
|
|
// import bus, { Gpio } from 'pigpio-mock'
|
|
|
|
// import btc from 'better-try-catch'
|
2018-07-01 00:25:15 -07:00
|
|
|
let bus = {}
|
2018-02-27 08:42:37 -08:00
|
|
|
import debounce from 'lodash.debounce'
|
|
|
|
// import throttle from 'lodash.throttle'
|
|
|
|
// import debounce from 'debounce-fn'
|
|
|
|
import Base from '@uci/base'
|
|
|
|
|
|
|
|
import logger from '@uci/logger'
|
|
|
|
let log = {}
|
|
|
|
|
|
|
|
export default class Interrupt extends Base {
|
|
|
|
constructor(pin,opts={}) {
|
|
|
|
|
2018-07-01 00:25:15 -07:00
|
|
|
if (opts.path || opts.itrn ) {
|
2018-02-27 08:42:37 -08:00
|
|
|
opts.itrn = opts.itrn || {}
|
|
|
|
opts.itrn.path = opts.path || opts.itrn.path || 'interrupt:'+ pin
|
2018-07-01 00:25:15 -07:00
|
|
|
opts.sockets = (opts.sockets ? (opts.sockets + ',') : '') + 'itrn#s>n'
|
|
|
|
}
|
|
|
|
if (opts.topics || opts.itrm) {
|
|
|
|
opts.itrm = opts.itrm || {}
|
|
|
|
opts.itrm.topics = opts.topics || 'interrupt/'+ pin
|
|
|
|
opts.sockets = (opts.sockets ? (opts.sockets + ',') : '') + 'itrm#s>m'
|
|
|
|
}
|
|
|
|
|
|
|
|
if (opts.itrw || opts.wport) {
|
|
|
|
opts.itrw.port = opts.itrw.port || opts.wport || 9100+pin
|
|
|
|
opts.sockets = (opts.sockets ? (opts.sockets + ',') : '') + 'itrw#s>w'
|
2018-02-27 08:42:37 -08:00
|
|
|
}
|
2018-07-01 00:25:15 -07:00
|
|
|
// default is a tcp socket server at 9000+pin
|
2018-07-01 15:37:59 -07:00
|
|
|
if (opts.itrt || opts.port || !opts.sockets) {
|
2018-07-01 00:25:15 -07:00
|
|
|
opts.itrt = opts.itrt || {}
|
|
|
|
opts.itrt.port = opts.itrt.port || opts.port || 9000+pin
|
|
|
|
opts.sockets = (opts.sockets ? (opts.sockets + ',') : '') + 'itrt#s>t'
|
|
|
|
}
|
2018-07-01 15:37:59 -07:00
|
|
|
console.log('sockets', opts.sockets)
|
2018-02-27 08:42:37 -08:00
|
|
|
super(opts)
|
|
|
|
console.dir(opts)
|
2018-05-16 07:12:14 -07:00
|
|
|
log = logger({name:'interrupt',id:this.id})
|
2018-02-27 08:42:37 -08:00
|
|
|
log.info({pins:pin, opts:opts},'created interrupt with these opts')
|
|
|
|
this.pin_num = pin
|
2018-03-04 15:09:18 -08:00
|
|
|
this.mock = opts.mock
|
2018-03-02 08:32:37 -08:00
|
|
|
this.wait = opts.wait || 0 // debounce is off by default
|
|
|
|
this.dbopts = { maxWait:opts.maxwait || 500, leading: opts.leading || true, trailing:opts.trailing || false}
|
2018-07-01 00:25:15 -07:00
|
|
|
// this.edge = opts.edge || Gpio.RISING_EDGE
|
|
|
|
this.edge = opts.edge
|
|
|
|
this.pull = opts.pull
|
|
|
|
this.pin = {} //set at init
|
|
|
|
// this.pin = new Gpio(
|
|
|
|
// pin, {
|
|
|
|
// mode: Gpio.INPUT,
|
|
|
|
// pullUpDown: opts.pull || Gpio.PUD_DOWN
|
|
|
|
// // do not! set edge here as it will start the emitter -- see pigio js
|
|
|
|
// })
|
2018-03-02 08:32:37 -08:00
|
|
|
this._hook = opts.hook
|
2018-02-27 08:42:37 -08:00
|
|
|
this.packet = opts.packet || {}
|
|
|
|
this.packet.pin = pin
|
|
|
|
this.packet.cmd = this.packet.cmd || 'interrupt'
|
|
|
|
this.packet.count = 0
|
|
|
|
|
|
|
|
|
|
|
|
} // end constructor
|
|
|
|
|
|
|
|
|
|
|
|
async init(){
|
|
|
|
await super.init()
|
|
|
|
// for cntrl-c exit of interrupt
|
2018-07-01 00:25:15 -07:00
|
|
|
// create the pigio pin_num
|
2018-07-01 15:37:59 -07:00
|
|
|
if (this.mock) bus = await import('../../pigpio-mock/src')
|
|
|
|
else bus = await import('pigpio')
|
|
|
|
// console.log(bus.Gpio)
|
2018-07-01 00:25:15 -07:00
|
|
|
this.pin = new bus.Gpio(
|
|
|
|
this.pin_num, {
|
|
|
|
mode: bus.Gpio.INPUT,
|
|
|
|
pullUpDown: this.pull || bus.Gpio.PUD_DOWN
|
|
|
|
// do not! set edge here as it will start the emitter -- see pigio js
|
|
|
|
})
|
|
|
|
|
2018-02-27 08:42:37 -08:00
|
|
|
process.on('SIGINT', () => {
|
|
|
|
this.exit().then((resp) => console.log('\n', resp)) // unexport on cntrl-c
|
|
|
|
.catch(err => console.log('error:', err))
|
|
|
|
})
|
|
|
|
// const pinDebounce = function (processor, wait, options, packet) {
|
|
|
|
// console.log(processor,wait,options,packet)
|
|
|
|
// return debounce.bind(this,processor.bind(this,packet),wait, options)
|
|
|
|
// return debounce.bind(processor.bind(this,packet),wait)
|
|
|
|
// return debounce.bind(null,processor,{ wait:wait})
|
|
|
|
// }
|
2018-03-02 08:32:37 -08:00
|
|
|
// else cb = pinDebounce(this.interruptProcess,this.wait,this.dbopts,this.packet)
|
2018-02-27 08:42:37 -08:00
|
|
|
|
|
|
|
let cb = () => {}
|
2018-03-02 08:32:37 -08:00
|
|
|
if (this.wait===0) {
|
|
|
|
cb = this._interruptProcess.bind(this,this.packet)
|
|
|
|
console.log(`starting interrupt on pin ${this.pin_num} without debounce`)
|
|
|
|
log.info({packet:this.packet},`starting interrupt on pin ${this.pin_num} without debounce`)
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
cb = debounce(this._interruptProcess.bind(this,this.packet),this.wait,this.dbopts)
|
|
|
|
console.log(`starting interrupt on pin ${this.pin_num} with debounce wait:${this.wait} options:${JSON.stringify(this.dbopts)}` )
|
|
|
|
log.info({packet:this.packet, wait:this.wait, options:this.dbopts},`starting interrupt on pin ${this.pin_num} with debounce wait:${this.wait}` )
|
|
|
|
}
|
2018-02-27 08:42:37 -08:00
|
|
|
this.pin.on('interrupt',cb)
|
|
|
|
// rock n roll!!, start the pigpio interrupt
|
|
|
|
if(!this.mock) this.pin.enableInterrupt(this.edge)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// manual firing for testing
|
2018-07-01 15:37:59 -07:00
|
|
|
async fire() {
|
2018-02-27 08:42:37 -08:00
|
|
|
console.log('manually firing interrupt for pin', this.pin_num)
|
|
|
|
this.pin.emit('interrupt',1)
|
2018-07-01 15:37:59 -07:00
|
|
|
return Promise.resolve({status:'fired'})
|
2018-02-27 08:42:37 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
exit() {
|
|
|
|
bus.terminate()
|
|
|
|
return Promise.reject('keyboard termination...terminating interrupts')
|
|
|
|
}
|
|
|
|
|
|
|
|
// default processor
|
2018-03-02 08:32:37 -08:00
|
|
|
async _interruptProcess (packet) {
|
2018-02-27 08:42:37 -08:00
|
|
|
packet.count += 1
|
|
|
|
packet.time = new Date().getTime()
|
2018-03-02 08:32:37 -08:00
|
|
|
if(this._hook) packet = this.hook(packet)
|
2018-07-01 00:25:15 -07:00
|
|
|
// console.log('packet pushing to all clients',packet)
|
|
|
|
this.push(packet)
|
2018-03-02 08:32:37 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
//sample hook
|
|
|
|
hook (packet) {
|
|
|
|
// new Promise((resolve) => {
|
2018-02-27 08:42:37 -08:00
|
|
|
console.log('=======================')
|
|
|
|
console.log(`pin ${packet.pin} on sbc gpio bus has thrown an interrupt`)
|
|
|
|
console.log('sending to all connected sockets with default cmd:"interrupt"')
|
|
|
|
console.dir(packet)
|
2018-03-02 08:32:37 -08:00
|
|
|
console.log('this is the default beforeHook')
|
|
|
|
console.log('add "beforeHook" for your instance or extended class')
|
2018-02-27 08:42:37 -08:00
|
|
|
console.log('=======================')
|
2018-03-02 08:32:37 -08:00
|
|
|
return packet
|
|
|
|
// resolve(packet)
|
|
|
|
// })
|
|
|
|
|
2018-02-27 08:42:37 -08:00
|
|
|
}
|
|
|
|
|
2018-03-02 08:32:37 -08:00
|
|
|
|
2018-02-27 08:42:37 -08:00
|
|
|
} // end Class
|