Skip to content

Instantly share code, notes, and snippets.

@christophemarois
Last active August 22, 2024 19:54
Show Gist options
  • Save christophemarois/6e1dddd77e8c59af66154fe9156cd28b to your computer and use it in GitHub Desktop.
Save christophemarois/6e1dddd77e8c59af66154fe9156cd28b to your computer and use it in GitHub Desktop.
/** Create a wrapped AbortController that is aborted when a SIGINT/SIGTERM is received.
* Supports auto-unregistering via explicit resource management.
*
* @example
* using shutdownSignal = new ShutdownSignal()
* shutdownSignal.throwIfAborted()
*
* // or
* const shutdownSignal = new ShutdownSignal()
* try { shutdownSignal.throwIfAborted() } finally { shutdownSignal.unregister() }
* */
export class ShutdownSignal {
ac: AbortController
sigintCb: () => unknown
constructor() {
this.ac = new AbortController()
this.sigintCb = () => {
this.ac.abort()
this.unregister()
}
process.on('SIGINT', this.sigintCb)
process.on('SIGTERM', this.sigintCb)
}
get isShuttingDown() {
return this.ac.signal.aborted
}
unregister() {
process.off('SIGINT', this.sigintCb)
process.off('SIGTERM', this.sigintCb)
}
throwIfShuttingDown() {
if (this.isShuttingDown) {
throw new Error('SHUTTING_DOWN')
}
}
[Symbol.dispose]() {
this.unregister()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment