aboutsummaryrefslogtreecommitdiffstats
path: root/util/interrupt/cleaner.go
blob: 76c9d04dcdf1218aa2bfd37b5a3411767856e568 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package interrupt

import (
	"fmt"
	"os"
	"os/signal"
	"syscall"
)

// Cleaner type referes to a function with no inputs that returns an error
type Cleaner func() error

var cleaners []Cleaner
var active = false

// RegisterCleaner is responsible for regisreting a cleaner function. When a function is registered, the Signal watcher is started in a goroutine.
func RegisterCleaner(f ...Cleaner) {
	for _, fn := range f {
		cleaners = append([]Cleaner{fn}, cleaners...)
		if !active {
			active = true
			go func() {
				ch := make(chan os.Signal, 1)
				signal.Notify(ch, syscall.SIGINT, syscall.SIGTERM, os.Interrupt)
				<-ch
				// Prevent un-terminated ^C character in terminal
				fmt.Println()
				fmt.Println("Cleaning")
				errl := Clean()
				for _, err := range errl {
					fmt.Println(err)
				}
				os.Exit(1)
			}()
		}
	}
}

// Clean invokes all registered cleanup functions, and returns a list of errors, if they exist.
func Clean() (errorlist []error) {
	for _, f := range cleaners {
		err := f()
		if err != nil {
			errorlist = append(errorlist, err)
		}
	}
	cleaners = []Cleaner{}
	return
}