forked from TrueCloudLab/restic
84 lines
1.8 KiB
Go
84 lines
1.8 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"os/signal"
|
|
"sync"
|
|
"syscall"
|
|
|
|
"github.com/restic/restic/internal/debug"
|
|
)
|
|
|
|
var cleanupHandlers struct {
|
|
sync.Mutex
|
|
list []func() error
|
|
done bool
|
|
sigintCh chan os.Signal
|
|
}
|
|
|
|
var stderr = os.Stderr
|
|
|
|
func init() {
|
|
cleanupHandlers.sigintCh = make(chan os.Signal)
|
|
go CleanupHandler(cleanupHandlers.sigintCh)
|
|
InstallSignalHandler()
|
|
}
|
|
|
|
// InstallSignalHandler listens for SIGINT and triggers the cleanup handlers.
|
|
func InstallSignalHandler() {
|
|
signal.Notify(cleanupHandlers.sigintCh, syscall.SIGINT)
|
|
}
|
|
|
|
// SuspendSignalHandler removes the signal handler for SIGINT.
|
|
func SuspendSignalHandler() {
|
|
signal.Reset(syscall.SIGINT)
|
|
}
|
|
|
|
// AddCleanupHandler adds the function f to the list of cleanup handlers so
|
|
// that it is executed when all the cleanup handlers are run, e.g. when SIGINT
|
|
// is received.
|
|
func AddCleanupHandler(f func() error) {
|
|
cleanupHandlers.Lock()
|
|
defer cleanupHandlers.Unlock()
|
|
|
|
// reset the done flag for integration tests
|
|
cleanupHandlers.done = false
|
|
|
|
cleanupHandlers.list = append(cleanupHandlers.list, f)
|
|
}
|
|
|
|
// RunCleanupHandlers runs all registered cleanup handlers
|
|
func RunCleanupHandlers() {
|
|
cleanupHandlers.Lock()
|
|
defer cleanupHandlers.Unlock()
|
|
|
|
if cleanupHandlers.done {
|
|
return
|
|
}
|
|
cleanupHandlers.done = true
|
|
|
|
for _, f := range cleanupHandlers.list {
|
|
err := f()
|
|
if err != nil {
|
|
fmt.Fprintf(stderr, "error in cleanup handler: %v\n", err)
|
|
}
|
|
}
|
|
cleanupHandlers.list = nil
|
|
}
|
|
|
|
// CleanupHandler handles the SIGINT signal.
|
|
func CleanupHandler(c <-chan os.Signal) {
|
|
for s := range c {
|
|
debug.Log("signal %v received, cleaning up", s)
|
|
fmt.Printf("%sInterrupt received, cleaning up\n", ClearLine())
|
|
Exit(0)
|
|
}
|
|
}
|
|
|
|
// Exit runs the cleanup handlers and then terminates the process with the
|
|
// given exit code.
|
|
func Exit(code int) {
|
|
RunCleanupHandlers()
|
|
os.Exit(code)
|
|
}
|