2018-09-22 12:28:50 +00:00
|
|
|
'use strict'
|
|
|
|
|
2018-09-13 16:10:51 +00:00
|
|
|
const { EventEmitter } = require('events')
|
|
|
|
const { powerMonitor, PowerMonitor } = process.atomBinding('power_monitor')
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2017-11-02 04:05:27 +00:00
|
|
|
// PowerMonitor is an EventEmitter.
|
2016-08-02 11:38:35 +00:00
|
|
|
Object.setPrototypeOf(PowerMonitor.prototype, EventEmitter.prototype)
|
2017-11-02 04:05:27 +00:00
|
|
|
EventEmitter.call(powerMonitor)
|
2016-01-12 02:40:23 +00:00
|
|
|
|
2018-02-05 06:28:58 +00:00
|
|
|
// On Linux we need to call blockShutdown() to subscribe to shutdown event.
|
|
|
|
if (process.platform === 'linux') {
|
|
|
|
powerMonitor.on('newListener', (event) => {
|
|
|
|
if (event === 'shutdown' && powerMonitor.listenerCount('shutdown') === 0) {
|
|
|
|
powerMonitor.blockShutdown()
|
|
|
|
}
|
|
|
|
})
|
2017-12-07 13:10:40 +00:00
|
|
|
|
2018-02-05 06:28:58 +00:00
|
|
|
powerMonitor.on('removeListener', (event) => {
|
|
|
|
if (event === 'shutdown' && powerMonitor.listenerCount('shutdown') === 0) {
|
|
|
|
powerMonitor.unblockShutdown()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
2017-12-07 13:10:40 +00:00
|
|
|
|
2016-03-24 20:15:04 +00:00
|
|
|
module.exports = powerMonitor
|