-
Notifications
You must be signed in to change notification settings - Fork 10
/
events.go
112 lines (87 loc) · 2.31 KB
/
events.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
package taskrunner
import "time"
type ExecutorEventKind string
const (
ExecutorEventKind_TaskStarted ExecutorEventKind = "task.started"
ExecutorEventKind_TaskCompleted = "task.completed"
ExecutorEventKind_TaskFailed = "task.failed"
ExecutorEventKind_TaskStopped = "task.stopped"
ExecutorEventKind_TaskInvalidated = "task.invalidated"
ExecutorEventKind_TaskDiagnostic = "task.diagnostic"
ExecutorEventKind_TaskLog = "task.log"
ExecutorEventKind_ExecutorSetup = "executor.setup"
)
type ExecutorEvent interface {
Timestamp() time.Time
Kind() ExecutorEventKind
TaskHandler() *TaskHandler
}
type simpleEvent struct {
timestamp time.Time
taskHandler *TaskHandler
}
func (e *simpleEvent) Timestamp() time.Time {
return e.timestamp
}
func (e *simpleEvent) TaskHandler() *TaskHandler {
return e.taskHandler
}
type ExecutorSetupEvent struct {
*simpleEvent
}
func (e *ExecutorSetupEvent) Kind() ExecutorEventKind {
return ExecutorEventKind_ExecutorSetup
}
type TaskStartedEvent struct {
*simpleEvent
}
func (e *TaskStartedEvent) Kind() ExecutorEventKind {
return ExecutorEventKind_TaskStarted
}
type TaskLogEventStream int
const (
TaskLogEventStdout TaskLogEventStream = iota
TaskLogEventStderr
)
type TaskLogEvent struct {
*simpleEvent
Message string
Stream TaskLogEventStream
}
func (e *TaskLogEvent) Kind() ExecutorEventKind {
return ExecutorEventKind_TaskLog
}
type TaskCompletedEvent struct {
*simpleEvent
Duration time.Duration
}
func (e *TaskCompletedEvent) Kind() ExecutorEventKind {
return ExecutorEventKind_TaskCompleted
}
type TaskFailedEvent struct {
*simpleEvent
Error error
}
func (e *TaskFailedEvent) Kind() ExecutorEventKind {
return ExecutorEventKind_TaskFailed
}
type TaskStoppedEvent struct {
*simpleEvent
}
func (e *TaskStoppedEvent) Kind() ExecutorEventKind {
return ExecutorEventKind_TaskStopped
}
type TaskInvalidatedEvent struct {
*simpleEvent
Reasons []InvalidationEvent
}
func (e *TaskInvalidatedEvent) Kind() ExecutorEventKind {
return ExecutorEventKind_TaskInvalidated
}
type TaskDiagnosticEvent struct {
*simpleEvent
Error error
}
func (e *TaskDiagnosticEvent) Kind() ExecutorEventKind {
return ExecutorEventKind_TaskDiagnostic
}