-
Notifications
You must be signed in to change notification settings - Fork 158
/
context.go
318 lines (232 loc) · 5.83 KB
/
context.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
package worker
import (
"context"
"encoding/json"
"fmt"
"sync"
"github.com/rs/zerolog"
"github.com/hatchet-dev/hatchet/pkg/client"
)
type HatchetContext interface {
context.Context
SetContext(ctx context.Context)
GetContext() context.Context
StepOutput(step string, target interface{}) error
TriggeredByEvent() bool
WorkflowInput(target interface{}) error
StepName() string
StepRunId() string
WorkflowRunId() string
Log(message string)
StreamEvent(message []byte)
SpawnWorkflow(workflowName string, input any, opts *SpawnWorkflowOpts) (*ChildWorkflow, error)
ReleaseSlot() error
RefreshTimeout(incrementTimeoutBy string) error
client() client.Client
action() *client.Action
index() int
inc()
}
// TODO: move this into proto definitions
type TriggeredBy string
const (
TriggeredByEvent TriggeredBy = "event"
TriggeredByCron TriggeredBy = "cron"
TriggeredBySchedule TriggeredBy = "schedule"
)
type JobRunLookupData struct {
Input map[string]interface{} `json:"input"`
TriggeredBy TriggeredBy `json:"triggered_by"`
Steps map[string]StepData `json:"steps,omitempty"`
}
type StepRunData struct {
Input map[string]interface{} `json:"input"`
TriggeredBy TriggeredBy `json:"triggered_by"`
Parents map[string]StepData `json:"parents"`
}
type StepData map[string]interface{}
type hatchetContext struct {
context.Context
a *client.Action
stepData *StepRunData
c client.Client
l *zerolog.Logger
i int
indexMu sync.Mutex
listener *client.WorkflowRunsListener
listenerMu sync.Mutex
}
func newHatchetContext(
ctx context.Context,
action *client.Action,
client client.Client,
l *zerolog.Logger,
) (HatchetContext, error) {
c := &hatchetContext{
Context: ctx,
a: action,
c: client,
l: l,
}
if action.GetGroupKeyRunId != "" {
err := c.populateStepDataForGroupKeyRun()
if err != nil {
return nil, err
}
} else {
err := c.populateStepData()
if err != nil {
return nil, err
}
}
return c, nil
}
func (h *hatchetContext) client() client.Client {
return h.c
}
func (h *hatchetContext) action() *client.Action {
return h.a
}
func (h *hatchetContext) SetContext(ctx context.Context) {
h.Context = ctx
}
func (h *hatchetContext) GetContext() context.Context {
return h.Context
}
func (h *hatchetContext) StepOutput(step string, target interface{}) error {
if val, ok := h.stepData.Parents[step]; ok {
return toTarget(val, target)
}
return fmt.Errorf("step %s not found in action payload", step)
}
func (h *hatchetContext) TriggeredByEvent() bool {
return h.stepData.TriggeredBy == TriggeredByEvent
}
func (h *hatchetContext) WorkflowInput(target interface{}) error {
return toTarget(h.stepData.Input, target)
}
func (h *hatchetContext) StepName() string {
return h.a.StepName
}
func (h *hatchetContext) StepRunId() string {
return h.a.StepRunId
}
func (h *hatchetContext) WorkflowRunId() string {
return h.a.WorkflowRunId
}
func (h *hatchetContext) Log(message string) {
err := h.c.Event().PutLog(h, h.a.StepRunId, message)
if err != nil {
h.l.Err(err).Msg("could not put log")
}
}
func (h *hatchetContext) ReleaseSlot() error {
err := h.c.Dispatcher().ReleaseSlot(h, h.a.StepRunId)
if err != nil {
return fmt.Errorf("failed to release slot: %w", err)
}
return nil
}
func (h *hatchetContext) RefreshTimeout(incrementTimeoutBy string) error {
err := h.c.Dispatcher().RefreshTimeout(h, h.a.StepRunId, incrementTimeoutBy)
if err != nil {
return fmt.Errorf("failed to refresh timeout: %w", err)
}
return nil
}
func (h *hatchetContext) StreamEvent(message []byte) {
err := h.c.Event().PutStreamEvent(h, h.a.StepRunId, message)
if err != nil {
h.l.Err(err).Msg("could not put stream event")
}
}
func (h *hatchetContext) index() int {
return h.i
}
func (h *hatchetContext) inc() {
h.indexMu.Lock()
h.i++
h.indexMu.Unlock()
}
type SpawnWorkflowOpts struct {
Key *string
}
func (h *hatchetContext) saveOrLoadListener() (*client.WorkflowRunsListener, error) {
h.listenerMu.Lock()
defer h.listenerMu.Unlock()
if h.listener != nil {
return h.listener, nil
}
listener, err := h.client().Subscribe().SubscribeToWorkflowRunEvents(h)
if err != nil {
return nil, fmt.Errorf("failed to subscribe to workflow run events: %w", err)
}
h.listener = listener
return listener, nil
}
func (h *hatchetContext) SpawnWorkflow(workflowName string, input any, opts *SpawnWorkflowOpts) (*ChildWorkflow, error) {
listener, err := h.saveOrLoadListener()
if err != nil {
return nil, err
}
workflowRunId, err := h.client().Admin().RunChildWorkflow(
workflowName,
input,
&client.ChildWorkflowOpts{
ParentId: h.WorkflowRunId(),
ParentStepRunId: h.StepRunId(),
ChildIndex: h.index(),
ChildKey: opts.Key,
},
)
if err != nil {
return nil, fmt.Errorf("failed to spawn workflow: %w", err)
}
// increment the index
h.inc()
return &ChildWorkflow{
workflowRunId: workflowRunId,
l: h.l,
listener: listener,
}, nil
}
func (h *hatchetContext) populateStepDataForGroupKeyRun() error {
if h.stepData != nil {
return nil
}
inputData := map[string]interface{}{}
err := json.Unmarshal(h.a.ActionPayload, &inputData)
if err != nil {
return err
}
h.stepData = &StepRunData{
Input: inputData,
}
return nil
}
func (h *hatchetContext) populateStepData() error {
if h.stepData != nil {
return nil
}
h.stepData = &StepRunData{}
jsonBytes := h.a.ActionPayload
if len(jsonBytes) == 0 {
jsonBytes = []byte("{}")
}
err := json.Unmarshal(jsonBytes, h.stepData)
if err != nil {
return err
}
return nil
}
func toTarget(data interface{}, target interface{}) error {
dataBytes, err := json.Marshal(data)
if err != nil {
return err
}
err = json.Unmarshal(dataBytes, target)
if err != nil {
return err
}
return nil
}