Last active
August 22, 2024 19:54
-
-
Save christophemarois/6e1dddd77e8c59af66154fe9156cd28b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** 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