-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathevent.go
97 lines (84 loc) · 2.31 KB
/
event.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
package astiencoder
import (
"sync"
"github.com/asticode/go-astilog"
)
// Default event names
var (
EventNameError = "error"
EventNameNodeContinued = "node.continued"
EventNameNodePaused = "node.paused"
EventNameNodeStarted = "node.started"
EventNameNodeStopped = "node.stopped"
EventNameStats = "stats"
EventNameWorkflowContinued = "workflow.continued"
EventNameWorkflowPaused = "workflow.paused"
EventNameWorkflowStarted = "workflow.started"
EventNameWorkflowStopped = "workflow.stopped"
)
// Event is an event coming out of the encoder
type Event struct {
Name string `json:"name"`
Payload interface{} `json:"payload,omitempty"`
}
// EventError returns an error event
func EventError(err error) Event {
return Event{
Name: EventNameError,
Payload: err,
}
}
// EventHandler returns a method that can handle events coming out of the encoder
type EventHandler func() (isBlocking bool, fn func(e Event))
// LoggerHandleEventFunc returns the logger handle event func
var LoggerHandleEventFunc = func() (isBlocking bool, fn func(e Event)) {
return true, func(e Event) {
switch e.Name {
case EventNameError:
astilog.Error(e.Payload.(error))
case EventNameNodeStarted:
astilog.Debugf("astiencoder: node %s is started", e.Payload.(string))
case EventNameNodeStopped:
astilog.Debugf("astiencoder: node %s is stopped", e.Payload.(string))
case EventNameWorkflowStarted:
astilog.Debugf("astiencoder: workflow %s is started", e.Payload.(string))
case EventNameWorkflowStopped:
astilog.Debugf("astiencoder: workflow %s is stopped", e.Payload.(string))
}
}
}
// EmitEventFunc is a method that can emit events out of the encoder
type EmitEventFunc func(e Event)
type eventHandler struct {
fn func(e Event)
isBlocking bool
}
type eventEmitter struct {
hs []eventHandler
m *sync.Mutex
}
func newEventEmitter() *eventEmitter {
return &eventEmitter{
m: &sync.Mutex{},
}
}
func (e *eventEmitter) addHandler(h EventHandler) {
e.m.Lock()
defer e.m.Unlock()
isBlocking, fn := h()
e.hs = append(e.hs, eventHandler{
isBlocking: isBlocking,
fn: fn,
})
}
func (e *eventEmitter) emit(evt Event) {
e.m.Lock()
defer e.m.Unlock()
for _, h := range e.hs {
if h.isBlocking {
h.fn(evt)
} else {
go h.fn(evt)
}
}
}