-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliquid.go
88 lines (73 loc) · 1.36 KB
/
liquid.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
package loong
import (
"context"
"log/slog"
)
type liquid struct {
engine *Engine
actCh chan Activity
ech chan Activity
size uint
logger *slog.Logger
}
func (l *liquid) Emit(ops ...Activity) error {
for _, o := range ops {
go func(op Activity) {
l.actCh <- op
}(o)
}
return nil
}
func (l *liquid) doActivityTx(op Activity) {
err := l.engine.Txer.DoTx(l.engine.ctx, func(txCtx context.Context) (err error) {
if err = op.Do(txCtx); err != nil {
if e, ok := err.(boundaryErrorEventActivity); ok {
// 处理边界错误事件
if e.Match() {
return l.Emit(e)
}
}
return
}
l.sendEventAsync(op)
if err = op.Emit(txCtx, l); err != nil {
return
}
return
})
if err != nil {
l.logger.ErrorContext(l.engine.ctx, "activity panic", "error", err)
}
}
func (l *liquid) sendEventAsync(op Activity) {
// 发送事件
go func() {
l.ech <- op
}()
}
func (l *liquid) doEventHander(op Activity) {
defer func() {
if err := recover(); err != nil {
l.logger.ErrorContext(l.engine.ctx, "err", "error", err)
}
}()
l.engine.Handle(l.engine.ctx, op)
}
func (l *liquid) loop() {
for {
select {
case op := <-l.actCh:
l.doActivityTx(op)
case op := <-l.ech:
l.doEventHander(op)
case <-l.engine.ctx.Done():
return
}
}
}
func (l *liquid) run() error {
for range l.size + 1 {
go l.loop()
}
return nil
}