-
-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathscope.go
527 lines (408 loc) · 12.1 KB
/
scope.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
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
package do
import (
"context"
"fmt"
"sync"
)
func newScope(name string, root *RootScope, parent *Scope) *Scope {
return &Scope{
id: must1(newUUID()),
name: name,
rootScope: root,
parentScope: parent,
childScopes: map[string]*Scope{},
mu: sync.RWMutex{},
services: make(map[string]any),
orderedInvocation: map[string]int{},
orderedInvocationIndex: 0,
}
}
var _ Injector = (*Scope)(nil)
// Scope is a DI container. It must be created with injector.Scope("name") method.
type Scope struct {
id string // immutable
name string // immutable
rootScope *RootScope // immutable
parentScope *Scope // immutable
childScopes map[string]*Scope // append only
mu sync.RWMutex
services map[string]any
// It should be a graph instead of simple ordered list.
orderedInvocation map[string]int // map is faster than slice
orderedInvocationIndex int
}
// ID returns the unique identifier of the scope.
func (s *Scope) ID() string {
return s.id
}
// Name returns the name of the scope.
func (s *Scope) Name() string {
return s.name
}
// Scope creates a new child scope.
func (s *Scope) Scope(name string, packages ...func(Injector)) *Scope {
s.mu.Lock()
defer s.mu.Unlock()
if _, ok := s.childScopes[name]; ok {
panic(fmt.Errorf("DI: scope `%s` has already been declared", name))
}
child := newScope(name, s.rootScope, s)
s.childScopes[name] = child
for _, pkg := range packages {
pkg(child)
}
return child
}
// RootScope returns the root scope.
func (s *Scope) RootScope() *RootScope {
return s.rootScope
}
// Ancestors returns the list of parent scopes recursively.
func (s *Scope) Ancestors() []*Scope {
if s.parentScope == nil {
return []*Scope{}
}
return append([]*Scope{s.parentScope}, s.parentScope.Ancestors()...)
}
// Children returns the list of immediate child scopes.
func (s *Scope) Children() []*Scope {
s.mu.RLock()
defer s.mu.RUnlock()
scopes := []*Scope{}
for _, scope := range s.childScopes {
scopes = append(scopes, scope)
}
return scopes
}
// ChildByID returns the child scope recursively by its ID.
func (s *Scope) ChildByID(id string) (*Scope, bool) {
s.mu.RLock()
defer s.mu.RUnlock()
for _, scope := range s.childScopes {
if scope.id == id {
return scope, true
}
if child, ok := scope.ChildByID(id); ok {
return child, true
}
}
return nil, false
}
// ChildByName returns the child scope recursively by its name.
func (s *Scope) ChildByName(name string) (*Scope, bool) {
s.mu.RLock()
defer s.mu.RUnlock()
for _, scope := range s.childScopes {
if scope.name == name {
return scope, true
}
if child, ok := scope.ChildByName(name); ok {
return child, true
}
}
return nil, false
}
// ListProvidedServices returns the list of services provided by the scope.
func (s *Scope) ListProvidedServices() []EdgeService {
s.mu.RLock()
edges := mAp(keys(s.services), func(name string, _ int) EdgeService {
return newEdgeService(s.id, s.name, name)
})
s.mu.RUnlock()
for _, ancestor := range s.Ancestors() {
edges = append(edges, ancestor.ListProvidedServices()...)
}
s.logf("exported list of services: %v", edges)
return orderedUniq(edges)
}
// ListInvokedServices returns the list of services invoked by the scope.
func (s *Scope) ListInvokedServices() []EdgeService {
s.mu.RLock()
edges := mAp(keys(s.orderedInvocation), func(name string, _ int) EdgeService {
return newEdgeService(s.id, s.name, name)
})
s.mu.RUnlock()
for _, ancestor := range s.Ancestors() {
edges = append(edges, ancestor.ListInvokedServices()...)
}
s.logf("exported list of invoked services: %v", edges)
return orderedUniq(edges)
}
// HealthCheck returns the healthcheck results of the scope, in a map of service name to error.
func (s *Scope) HealthCheck() map[string]error {
return s.HealthCheckWithContext(context.Background())
}
// HealthCheckWithContext returns the healthcheck results of the scope, in a map of service name to error.
func (s *Scope) HealthCheckWithContext(ctx context.Context) map[string]error {
s.logf("requested healthcheck")
if s.rootScope.opts.HealthCheckGlobalTimeout > 0 {
var cancel context.CancelFunc
ctx, cancel = context.WithTimeout(ctx, s.rootScope.opts.HealthCheckGlobalTimeout)
defer cancel()
}
results := map[string]error{}
asyncResults := s.asyncHealthCheckWithContext(ctx)
for name, err := range asyncResults {
results[name] = <-err
}
s.logf("got healthcheck results: %v", results)
return results
}
func (s *Scope) asyncHealthCheckWithContext(ctx context.Context) map[string]<-chan error {
asyncResults := map[string]<-chan error{}
s.mu.RLock()
for _, name := range keys(s.services) {
asyncResults[name] = s.rootScope.queueServiceHealthcheck(ctx, s, name)
}
s.mu.RUnlock()
// @TODO: we should not check status of services that are not inherited (overriden in a child tree)
for _, ancestor := range s.Ancestors() {
heath := ancestor.asyncHealthCheckWithContext(ctx)
for name, err := range heath {
if _, ok := asyncResults[name]; !ok {
asyncResults[name] = err
}
}
}
return asyncResults
}
// Shutdown shutdowns the scope and all its children.
func (s *Scope) Shutdown() *ShutdownErrors {
return s.ShutdownWithContext(context.Background())
}
// ShutdownWithContext shutdowns the scope and all its children.
func (s *Scope) ShutdownWithContext(ctx context.Context) *ShutdownErrors {
s.logf("requested shutdown")
err1 := s.shutdownChildrenInParallel(ctx)
err2 := s.shutdownServicesInParallel(ctx)
s.logf("shutdowned services")
err := mergeShutdownErrors(err1, err2)
if err.Len() > 0 {
return err
}
return nil
}
// shutdownChildrenInParallel runs a parallel shutdown of children scopes.
func (s *Scope) shutdownChildrenInParallel(ctx context.Context) *ShutdownErrors {
s.mu.RLock()
children := s.childScopes
s.mu.RUnlock()
errors := make([]*ShutdownErrors, len(children))
var wg sync.WaitGroup
for index, scope := range values(children) {
wg.Add(1)
go func(s *Scope, i int) {
errors[i] = s.ShutdownWithContext(ctx)
wg.Done()
}(scope, index)
}
wg.Wait()
s.mu.Lock()
defer s.mu.Unlock()
s.childScopes = make(map[string]*Scope) // scopes are removed from DI container
return mergeShutdownErrors(errors...)
}
// shutdownServicesInParallel runs a parallel shutdown of scope services.
//
// We look for services having no dependents. Then we shutdown them.
// And repeat, until every scope services have been shutdown.
func (s *Scope) shutdownServicesInParallel(ctx context.Context) *ShutdownErrors {
err := newShutdownErrors()
listServices := func() []string {
s.mu.RLock()
defer s.mu.RUnlock()
return keys(s.services)
}
// var wg sync.WaitGroup
for len(listServices()) > 0 {
services := listServices()
servicesToShutdown := []string{}
// loop over the service that have not been shutdown already
for _, name := range services {
// Check the service has no dependents (dependencies allowed here).
// Services having dependents must be shutdown first.
// The next iteration will shutdown current service.
_, dependents := s.rootScope.dag.explainService(s.id, s.name, name)
if len(dependents) == 0 {
servicesToShutdown = append(servicesToShutdown, name)
}
}
if len(servicesToShutdown) > 0 {
e := s.shutdownServicesWithoutDependenciesInParallel(ctx, servicesToShutdown)
err = mergeShutdownErrors(err, e)
} else {
// In this branch, we expect that there is a circular dependency. We shutdown all services, without taking care of order.
e := s.shutdownServicesWithoutDependenciesInParallel(ctx, services)
err = mergeShutdownErrors(err, e)
}
}
return err
}
func (s *Scope) shutdownServicesWithoutDependenciesInParallel(ctx context.Context, serviceNames []string) *ShutdownErrors {
if len(serviceNames) == 0 {
return nil
}
err := newShutdownErrors()
mu := sync.Mutex{}
var wg sync.WaitGroup
wg.Add(len(serviceNames))
for _, name := range serviceNames {
go func(n string) {
e := s.serviceShutdown(ctx, n)
mu.Lock()
err.Add(s.id, s.name, n, e)
mu.Unlock()
wg.Done()
}(name)
}
wg.Wait()
return err
}
func (s *Scope) clone(root *RootScope, parent *Scope) *Scope {
clone := newScope(s.name, root, parent)
s.mu.Lock()
defer s.mu.Unlock()
for name, serviceAny := range s.services {
s.rootScope.opts.onBeforeRegistration(clone, name)
if service, ok := serviceAny.(serviceClone); ok {
clone.services[name] = service.clone()
} else {
clone.services[name] = service
}
s.rootScope.opts.onAfterRegistration(clone, name)
}
for name, index := range s.childScopes {
clone.childScopes[name] = index.clone(root, clone)
}
s.logf("injector cloned")
return clone
}
/**********************************
* Service lifecycle *
**********************************/
func (s *Scope) serviceExist(name string) bool {
s.mu.RLock()
defer s.mu.RUnlock()
_, ok := s.services[name]
return ok
}
func (s *Scope) serviceExistRec(name string) bool {
s.mu.RLock()
defer s.mu.RUnlock()
_, ok := s.services[name]
if ok {
return ok
}
if s.parentScope == nil {
return false
}
return s.parentScope.serviceExistRec(name)
}
func (s *Scope) serviceGet(name string) (any, bool) {
s.mu.RLock()
defer s.mu.RUnlock()
svc, ok := s.services[name]
return svc, ok
}
func (s *Scope) serviceGetRec(name string) (any, *Scope, bool) {
s.mu.RLock()
defer s.mu.RUnlock()
svc, ok := s.services[name]
if ok {
return svc, s, ok
}
if s.parentScope == nil {
return nil, nil, false
}
return s.parentScope.serviceGetRec(name)
}
func (s *Scope) serviceSet(name string, service any) {
s.RootScope().opts.onBeforeRegistration(s, name)
s.mu.Lock()
s.services[name] = service
s.mu.Unlock()
s.RootScope().opts.onAfterRegistration(s, name)
}
func (s *Scope) serviceForEach(cb func(name string, scope *Scope, service any) bool) {
s.mu.Lock()
defer s.mu.Unlock()
for name, service := range s.services {
keepGoing := cb(name, s, service)
if !keepGoing {
break
}
}
}
func (s *Scope) serviceForEachRec(cb func(name string, scope *Scope, service any) bool) {
s.mu.Lock()
defer s.mu.Unlock()
for name, service := range s.services {
keepGoing := cb(name, s, service)
if !keepGoing {
return
}
}
if s.parentScope != nil {
s.parentScope.serviceForEachRec(cb)
}
}
func (s *Scope) serviceHealthCheck(ctx context.Context, name string) error {
s.mu.RLock()
serviceAny, ok := s.services[name]
if !ok {
s.mu.RUnlock()
return serviceNotFound(s, ErrServiceNotFound, []string{name})
}
s.mu.RUnlock()
service, ok := serviceAny.(serviceHealthcheck)
if ok {
s.logf("requested healthcheck for service %s", name)
// Timeout error is not triggered when the service is not an healthchecker.
// If healthchecker does not support context.Timeout, error will be triggered raceWithTimeout().
return raceWithTimeout(
ctx,
service.healthcheck,
)
}
return nil
}
func (s *Scope) serviceShutdown(ctx context.Context, name string) error {
s.mu.RLock()
serviceAny, ok := s.services[name]
s.mu.RUnlock()
if !ok {
return serviceNotFound(s, ErrServiceNotFound, []string{name})
}
var err error
service, ok := serviceAny.(serviceShutdown)
if ok {
s.logf("requested shutdown for service %s", name)
s.RootScope().opts.onBeforeShutdown(s, name)
err = service.shutdown(ctx)
s.RootScope().opts.onAfterShutdown(s, name, err)
} else {
panic(fmt.Errorf("DI: service `%s` is not shutdowner", name))
}
s.mu.Lock()
delete(s.services, name) // service is removed from DI container
delete(s.orderedInvocation, name)
s.RootScope().dag.removeService(s.id, s.name, name)
s.mu.Unlock()
return err
}
/**********************************
* Hooks *
**********************************/
func (s *Scope) onServiceInvoke(name string) {
s.mu.Lock()
defer s.mu.Unlock()
if _, ok := s.orderedInvocation[name]; !ok {
s.orderedInvocation[name] = s.orderedInvocationIndex
s.orderedInvocationIndex++
}
}
func (s *Scope) logf(format string, args ...any) {
format = fmt.Sprintf("DI <scope=%s>: %s", s.name, format)
args = append([]any{s.name}, args...)
s.RootScope().opts.Logf(format, args...)
}