forked from gravitational/teleport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
supervisor.go
256 lines (211 loc) · 5.63 KB
/
supervisor.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
/*
Copyright 2015 Gravitational, Inc.
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 service
import (
"fmt"
"sync"
log "github.com/Sirupsen/logrus"
"github.com/gravitational/teleport/lib/utils"
"github.com/gravitational/trace"
)
// Supervisor implements the simple service logic - registering
// service functions and de-registering the service goroutines
type Supervisor interface {
// Register adds the service to the pool, if supervisor is in
// the started state, the service will be started immediatelly
// otherwise, it will be started after Start() has been called
Register(srv Service)
// RegisterFunc creates a service from function spec and registers
// it within the system
RegisterFunc(fn ServiceFunc)
// ServiceCount returns the number of registered and actively running
// services
ServiceCount() int
// Start starts all unstarted services
Start() error
// Wait waits until all services exit
Wait() error
// Run starts and waits for the service to complete
// it's a combinatioin Start() and Wait()
Run() error
// BroadcastEvent generates event and broadcasts it to all
// interested parties
BroadcastEvent(Event)
// WaitForEvent waits for event to be broadcasted, if the event
// was already broadcasted, payloadC will receive current event immediately
// CLose 'cancelC' channel to force WaitForEvent to return prematurely
WaitForEvent(name string, eventC chan Event, cancelC chan struct{})
}
type LocalSupervisor struct {
state int
sync.Mutex
wg *sync.WaitGroup
services []*Service
errors []error
events map[string]Event
eventsC chan Event
eventWaiters map[string][]*waiter
closer *utils.CloseBroadcaster
}
// NewSupervisor returns new instance of initialized supervisor
func NewSupervisor() Supervisor {
srv := &LocalSupervisor{
services: []*Service{},
wg: &sync.WaitGroup{},
events: map[string]Event{},
eventsC: make(chan Event, 100),
eventWaiters: make(map[string][]*waiter),
closer: utils.NewCloseBroadcaster(),
}
go srv.fanOut()
return srv
}
// Event is a special service event that can be generated
// by various goroutines in the supervisor
type Event struct {
Name string
Payload interface{}
}
func (e *Event) String() string {
return fmt.Sprintf("event(%v)", e.Name)
}
func (s *LocalSupervisor) Register(srv Service) {
s.Lock()
defer s.Unlock()
s.services = append(s.services, &srv)
log.Infof("[SUPERVISOR] Service %v added (%v)", srv, len(s.services))
if s.state == stateStarted {
s.serve(&srv)
}
}
// ServiceCount returns the number of registered and actively running services
func (s *LocalSupervisor) ServiceCount() int {
s.Lock()
defer s.Unlock()
return len(s.services)
}
func (s *LocalSupervisor) RegisterFunc(fn ServiceFunc) {
s.Register(fn)
}
func (s *LocalSupervisor) serve(srv *Service) {
// this func will be called _after_ a service stops running:
removeService := func() {
s.Lock()
defer s.Unlock()
for i, el := range s.services {
if el == srv {
s.services = append(s.services[:i], s.services[i+1:]...)
break
}
}
log.Infof("[SUPERVISOR] Service %v is done (%v)", *srv, len(s.services))
}
s.wg.Add(1)
go func() {
defer s.wg.Done()
defer removeService()
log.Infof("[SUPERVISOR] Service %v started (%v)", *srv, s.ServiceCount())
err := (*srv).Serve()
if err != nil {
utils.FatalError(err)
}
}()
}
func (s *LocalSupervisor) Start() error {
s.Lock()
defer s.Unlock()
s.state = stateStarted
if len(s.services) == 0 {
log.Infof("no services registered, returning")
return nil
}
for _, srv := range s.services {
s.serve(srv)
}
return nil
}
func (s *LocalSupervisor) Wait() error {
defer s.closer.Close()
s.wg.Wait()
return nil
}
func (s *LocalSupervisor) Run() error {
if err := s.Start(); err != nil {
return trace.Wrap(err)
}
return s.Wait()
}
func (s *LocalSupervisor) BroadcastEvent(event Event) {
s.Lock()
defer s.Unlock()
s.events[event.Name] = event
log.Infof("BroadcastEvent: %v", &event)
go func() {
s.eventsC <- event
}()
}
func (s *LocalSupervisor) WaitForEvent(name string, eventC chan Event, cancelC chan struct{}) {
s.Lock()
defer s.Unlock()
waiter := &waiter{eventC: eventC, cancelC: cancelC}
event, ok := s.events[name]
if ok {
go s.notifyWaiter(waiter, event)
return
}
s.eventWaiters[name] = append(s.eventWaiters[name], waiter)
}
func (s *LocalSupervisor) getWaiters(name string) []*waiter {
s.Lock()
defer s.Unlock()
waiters := s.eventWaiters[name]
out := make([]*waiter, len(waiters))
for i := range waiters {
out[i] = waiters[i]
}
return out
}
func (s *LocalSupervisor) notifyWaiter(w *waiter, event Event) {
select {
case w.eventC <- event:
case <-w.cancelC:
}
}
func (s *LocalSupervisor) fanOut() {
for {
select {
case event := <-s.eventsC:
waiters := s.getWaiters(event.Name)
for _, waiter := range waiters {
go s.notifyWaiter(waiter, event)
}
case <-s.closer.C:
return
}
}
}
type waiter struct {
eventC chan Event
cancelC chan struct{}
}
type Service interface {
Serve() error
}
type ServiceFunc func() error
func (s ServiceFunc) Serve() error {
return s()
}
const (
stateCreated = iota
stateStarted = iota
)