Note that if you "install" your signal channel with signal.Notify()
, the default behavior will be disabled. This means if you do this, the for
loop in your fn()
function will not be interrupted, it will continue to run.
So when you receive a value on your registered channel, you have to make that for
loop terminate so you can do a "clean" cleanup. Else the resources cleanup()
ought to free might still be used in for
, most likely resulting in error or panic.
Once you do this, you don't even have to call cleanup()
manually, because returning from fn()
will run the deferred function properly.
Here's an example:
var shutdownCh = make(chan struct{})
func fn() {
defer cleanup()
go func() {
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
<-c
close(shutdownCh)
}()
for {
select {
case <-shutdownCh:
return
// Other cases might be listed here..
default:
}
time.Sleep(time.Millisecond)
}
}
Of course the above example does not guarantee app termination. You should have some code that listens to the shutdownCh
and terminates the app. This code should also wait for all goroutines to gracefully finish. For that you may use sync.WaitGroup
: add 1 to it when you launch a goroutine that should be waited for on exit, and call WaitGroup.Done()
when such a goroutine finishes.
Also since in a real app there might be lots of these, the signal handling should be moved to a "central" place and not done in each place.
Here's a complete example how to do that:
var shutdownCh = make(chan struct{})
var wg = &sync.WaitGroup{}
func main() {
wg.Add(1)
go func() {
defer wg.Done()
fn()
}()
c := make(chan os.Signal, 1)
signal.Notify(c, os.Interrupt)
<-c
close(shutdownCh)
wg.Wait()
}
func fn() {
defer cleanup()
for {
select {
case <-shutdownCh:
return
// Other cases might be listed here..
default:
}
fmt.Println("working...")
time.Sleep(time.Second)
}
}
func cleanup() {
fmt.Println("cleaning up...")
}
Here's an example output of the above app, when pressing CTRL+C 3 seconds after its start:
working...
working...
working...
^Ccleaning up...
Are deferred functions called when SIGINT is received in Go
I think it might be better to re-title this question to something more like: "How do I use defer clauses and signal handlers to cleanup gracefully when I get a SIGINT?" -- I came to this question looking for an answer to the general case of what is supposed to happen where no SIGINT handler is installed, and the accepted answer doesn't help.. – Abeyant