mirror of
				https://github.com/SphericalKat/medium.rip.git
				synced 2025-10-31 10:55:57 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			680 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			680 B
		
	
	
	
		
			Go
		
	
	
	
	
	
| package lifecycle
 | |
| 
 | |
| import (
 | |
| 	"context"
 | |
| 	"os"
 | |
| 	"os/signal"
 | |
| 	"sync"
 | |
| 	"syscall"
 | |
| 
 | |
| 	log "github.com/sirupsen/logrus"
 | |
| )
 | |
| 
 | |
| // ShutdownListener listens for shutdown OS signals and then gracefully stops tasks using the context
 | |
| func ShutdownListener(
 | |
| 	wg *sync.WaitGroup,
 | |
| 	cf *context.CancelFunc,
 | |
| ) {
 | |
| 	// create channel to notify on system signals
 | |
| 	termChan := make(chan os.Signal, 1)
 | |
| 	signal.Notify(termChan, os.Interrupt, syscall.SIGINT, syscall.SIGTERM)
 | |
| 
 | |
| 	// wait for signal
 | |
| 	sig := <-termChan
 | |
| 	log.Printf("Received signal %v, gracefully shutting down services", sig)
 | |
| 
 | |
| 	// close channel
 | |
| 	close(termChan)
 | |
| 
 | |
| 	// cancel background context
 | |
| 	(*cf)()
 | |
| 
 | |
| 	// mark shutdown task as done
 | |
| 	wg.Done()
 | |
| } |