-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathsignals.go
112 lines (94 loc) · 2.35 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
// Copyright 2020 HAProxy Technologies
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package configuration
import (
"os"
"os/signal"
"sync"
"syscall"
"time"
"github.com/haproxytech/dataplaneapi/log"
)
type ChanNotify struct {
subscribers map[string]chan struct{}
mu sync.RWMutex
}
func NewChanNotify() *ChanNotify {
cn := &ChanNotify{}
cn.subscribers = make(map[string]chan struct{})
return cn
}
func (cn *ChanNotify) Subscribe(name string) chan struct{} {
cn.mu.Lock()
defer cn.mu.Unlock()
c := make(chan struct{}, 1)
cn.subscribers[name] = c
return c
}
func (cn *ChanNotify) UnSubscribeAll() {
cn.mu.Lock()
defer cn.mu.Unlock()
cn.subscribers = make(map[string]chan struct{})
}
func (cn *ChanNotify) Notify() {
cn.notify(0)
}
func (cn *ChanNotify) NotifyWithRetry() {
cn.notify(3)
}
func (cn *ChanNotify) notify(numTry int) {
if numTry < 0 {
return
}
cn.mu.RLock()
defer cn.mu.RUnlock()
if len(cn.subscribers) == 0 {
go func() {
time.Sleep(2 * time.Second)
numTry--
cn.notify(numTry)
}()
return
}
for _, c := range cn.subscribers {
c <- struct{}{}
}
}
func (c *Configuration) InitSignalHandler() {
c.shutdownSignal = make(chan os.Signal, 1)
signal.Notify(c.shutdownSignal, syscall.SIGINT, syscall.SIGTERM)
go func() {
for sig := range c.shutdownSignal {
log.Debug("Received signal ", sig)
c.Notify.Shutdown.Notify()
}
}()
c.reloadSignal = make(chan os.Signal, 1)
signal.Notify(c.reloadSignal, syscall.SIGHUP)
go func() {
for sig := range c.reloadSignal {
log.Debug("Received signal ", sig)
c.Notify.Reload.Notify()
}
}()
}
func (c *Configuration) StopSignalHandler() {
log.Debug("Unloading signal handler")
signal.Stop(c.shutdownSignal)
signal.Stop(c.reloadSignal)
signal.Ignore(syscall.SIGINT, syscall.SIGTERM, syscall.SIGHUP)
close(c.shutdownSignal)
close(c.reloadSignal)
}