forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signals.go
113 lines (93 loc) · 3.04 KB
/
signals.go
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
// +build !windows
package cmd
import (
"fmt"
"os"
"os/signal"
"path/filepath"
"runtime/pprof"
"strings"
"syscall"
"time"
"github.com/micro/go-micro/broker"
"github.com/pydio/cells/common/config"
"github.com/pydio/cells/common/registry"
"go.uber.org/zap"
"github.com/pydio/cells/common/log"
)
func handleSignals() {
c := make(chan os.Signal, 1)
// SIGUSR1 does not compile on windows. Use direct value syscall.Signal instead
// signal.Notify(c, syscall.SIGINT, syscall.SIGHUP, syscall.SIGUSR1, syscall.SIGTERM, syscall.SIGSTOP)
signal.Notify(c)
go func() {
for sig := range c {
switch sig {
case syscall.SIGTERM:
fallthrough
case syscall.SIGINT:
// Stopping the main context will trigger the stop of all services
log.Info("Cancelling main context")
cancel()
log.Info("Disconnecting broker")
// Disconnecting the broker so that we are not flooded with messages
broker.Disconnect()
case syscall.SIGUSR1:
if !profiling {
serviceMeta := registry.BuildServiceMeta()
startTags := strings.ReplaceAll(serviceMeta["start"], ",", "-")
startTags = strings.ReplaceAll(startTags, ":", "-")
if startTags == "" {
startTags = "main-process"
}
targetDir := filepath.Join(config.ApplicationWorkingDir(config.ApplicationDirLogs), "profiles", startTags)
os.MkdirAll(targetDir, 0755)
tStamp := fmt.Sprintf("%d", time.Now().Unix())
pprof.Lookup("goroutine").WriteTo(os.Stdout, 1)
if routinesFile, err := os.OpenFile(filepath.Join(targetDir, "goroutines-"+tStamp), os.O_WRONLY|os.O_CREATE, 0755); err == nil {
pprof.Lookup("goroutine").WriteTo(routinesFile, 1)
routinesFile.Close()
}
if fheap, err := os.OpenFile(filepath.Join(targetDir, "heap-profile-"+tStamp), os.O_WRONLY|os.O_CREATE, 0755); err == nil {
pprof.WriteHeapProfile(fheap)
fheap.Close()
}
if fcpu, err := os.OpenFile(filepath.Join(targetDir, "cpu-profile-"+tStamp), os.O_WRONLY|os.O_CREATE, 0755); err == nil {
pprof.StartCPUProfile(fcpu)
profile = fcpu
profiling = true
}
// Close profiling session after 30s if user forgot to send a second call
go func() {
<-time.After(20 * time.Second)
if profiling {
fmt.Println("Closing CPU Profiling session to avoid growing profile file!")
pprof.StopCPUProfile()
if err := profile.Close(); err != nil {
log.Fatal("Cannot close cpu profile", zap.Error(err))
}
profiling = false
}
}()
} else {
pprof.StopCPUProfile()
if err := profile.Close(); err != nil {
log.Fatal("Cannot close cpu profile", zap.Error(err))
}
profiling = false
}
case syscall.SIGHUP:
// Stop all services
for _, service := range allServices {
if service.RequiresFork() && !IsFork {
// Stopping here would kill the command and prevent proper de-registering of service
// Signal will be passed along and the fork will stop by itself.
continue
}
service.Stop()
service.Start(ctx)
}
}
}
}()
}