-
Notifications
You must be signed in to change notification settings - Fork 0
/
initiate.go
71 lines (61 loc) · 2.43 KB
/
initiate.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
// Package component
package application
import (
"context"
kitModuleTrace "github.com/webnice/kit/v3/module/trace"
kitTypes "github.com/webnice/kit/v3/types"
)
// Функция вызова функции Initiate() у компоненты с контролем длительности выполнения и прерыванием по таймауту
func (app *impl) initiateFn(component *kitTypes.ComponentInfo) (err kitTypes.ErrorWithCode) {
var (
ctx context.Context
ctf context.CancelFunc
call chan kitTypes.ErrorWithCode
)
// Функция защиты от паники
defer func() {
if e := recover(); e != nil {
err = app.cfg.Errors().ComponentPanicException(0, component.ComponentName, e, kitModuleTrace.StackShort())
}
}()
// Создание контекста контроля таймаута
ctx, ctf = context.WithTimeout(context.Background(), component.InitiateTimeout)
defer ctf()
// Запуск функции Initiate() у компоненты с защитой от паники
call = app.initiateCallFn(component.ComponentName, component.Component)
defer func() { close(call) }()
// Ожидание, либо таймаута, либо завершения функции Initiate()
select {
case <-ctx.Done():
err = app.cfg.Errors().
ComponentInitiateTimeout(0, component.ComponentName)
case err = <-call:
component.IsInitiate = err == nil
}
return
}
// Запуск горутины с каналом обратной связи для получения ошибки из вызываемой функции Initiate()
func (app *impl) initiateCallFn(componentName string, cpt kitTypes.Component) (ret chan kitTypes.ErrorWithCode) {
ret = make(chan kitTypes.ErrorWithCode)
go func() { ret <- app.initiateSafeCall(componentName, cpt) }()
return
}
// Запуск функции Initiate() в компоненте с защитой от паники
func (app *impl) initiateSafeCall(componentName string, cpt kitTypes.Component) (err kitTypes.ErrorWithCode) {
var e error
// Функция защиты от паники
defer func() {
if e := recover(); e != nil {
err = app.cfg.Errors().ComponentInitiatePanicException(0, componentName, e, kitModuleTrace.StackShort())
}
}()
if e = cpt.Initiate(); e != nil {
switch eto := e.(type) {
case kitTypes.ErrorWithCode:
err = eto
default:
err = app.cfg.Errors().ComponentInitiateExecution(0, componentName, eto)
}
}
return
}