26 lines
768 B
JavaScript
26 lines
768 B
JavaScript
|
'use strict'
|
||
|
|
||
|
const { EventEmitter } = require('events')
|
||
|
const { powerMonitor, PowerMonitor } = process.atomBinding('power_monitor')
|
||
|
|
||
|
// PowerMonitor is an EventEmitter.
|
||
|
Object.setPrototypeOf(PowerMonitor.prototype, EventEmitter.prototype)
|
||
|
EventEmitter.call(powerMonitor)
|
||
|
|
||
|
// 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()
|
||
|
}
|
||
|
})
|
||
|
|
||
|
powerMonitor.on('removeListener', (event) => {
|
||
|
if (event === 'shutdown' && powerMonitor.listenerCount('shutdown') === 0) {
|
||
|
powerMonitor.unblockShutdown()
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
|
||
|
module.exports = powerMonitor
|