-
Notifications
You must be signed in to change notification settings - Fork 40
/
task.go
281 lines (258 loc) · 8.02 KB
/
task.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
package tork
import (
"slices"
"time"
"golang.org/x/exp/maps"
)
// State defines the list of states that a
// task can be in, at any given moment.
type TaskState string
const (
TaskStatePending TaskState = "PENDING"
TaskStateScheduled TaskState = "SCHEDULED"
TaskStateRunning TaskState = "RUNNING"
TaskStateCancelled TaskState = "CANCELLED"
TaskStateStopped TaskState = "STOPPED"
TaskStateCompleted TaskState = "COMPLETED"
TaskStateFailed TaskState = "FAILED"
TaskStateSkipped TaskState = "SKIPPED"
)
// Task is the basic unit of work that a Worker can handle.
type Task struct {
ID string `json:"id,omitempty"`
JobID string `json:"jobId,omitempty"`
ParentID string `json:"parentId,omitempty"`
Position int `json:"position,omitempty"`
Name string `json:"name,omitempty"`
Description string `json:"description,omitempty"`
State TaskState `json:"state,omitempty"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
ScheduledAt *time.Time `json:"scheduledAt,omitempty"`
StartedAt *time.Time `json:"startedAt,omitempty"`
CompletedAt *time.Time `json:"completedAt,omitempty"`
FailedAt *time.Time `json:"failedAt,omitempty"`
CMD []string `json:"cmd,omitempty"`
Entrypoint []string `json:"entrypoint,omitempty"`
Run string `json:"run,omitempty"`
Image string `json:"image,omitempty"`
Registry *Registry `json:"registry,omitempty"`
Env map[string]string `json:"env,omitempty"`
Files map[string]string `json:"files,omitempty"`
Queue string `json:"queue,omitempty"`
Error string `json:"error,omitempty"`
Pre []*Task `json:"pre,omitempty"`
Post []*Task `json:"post,omitempty"`
Mounts []Mount `json:"mounts,omitempty"`
Networks []string `json:"networks,omitempty"`
NodeID string `json:"nodeId,omitempty"`
Retry *TaskRetry `json:"retry,omitempty"`
Limits *TaskLimits `json:"limits,omitempty"`
Timeout string `json:"timeout,omitempty"`
Result string `json:"result,omitempty"`
Var string `json:"var,omitempty"`
If string `json:"if,omitempty"`
Parallel *ParallelTask `json:"parallel,omitempty"`
Each *EachTask `json:"each,omitempty"`
SubJob *SubJobTask `json:"subjob,omitempty"`
GPUs string `json:"gpus,omitempty"`
Tags []string `json:"tags,omitempty"`
Workdir string `json:"workdir,omitempty"`
Priority int `json:"priority,omitempty"`
}
type TaskSummary struct {
ID string `json:"id,omitempty"`
JobID string `json:"jobId,omitempty"`
Position int `json:"position,omitempty"`
Name string `json:"name,omitempty"`
Description string `json:"description,omitempty"`
State TaskState `json:"state,omitempty"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
ScheduledAt *time.Time `json:"scheduledAt,omitempty"`
StartedAt *time.Time `json:"startedAt,omitempty"`
CompletedAt *time.Time `json:"completedAt,omitempty"`
Error string `json:"error,omitempty"`
Result string `json:"result,omitempty"`
Var string `json:"var,omitempty"`
Tags []string `json:"tags,omitempty"`
}
type TaskLogPart struct {
Number int `json:"number,omitempty"`
TaskID string `json:"taskId,omitempty"`
Contents string `json:"contents,omitempty"`
CreatedAt *time.Time `json:"createdAt,omitempty"`
}
type SubJobTask struct {
ID string `json:"id,omitempty"`
Name string `json:"name,omitempty"`
Description string `json:"description,omitempty"`
Tasks []*Task `json:"tasks,omitempty"`
Inputs map[string]string `json:"inputs,omitempty"`
Output string `json:"output,omitempty"`
Detached bool `json:"detached,omitempty"`
Webhooks []*Webhook `json:"webhooks,omitempty"`
}
type ParallelTask struct {
Tasks []*Task `json:"tasks,omitempty"`
Completions int `json:"completions,omitempty"`
}
type EachTask struct {
Var string `json:"var,omitempty"`
List string `json:"list,omitempty"`
Task *Task `json:"task,omitempty"`
Size int `json:"size,omitempty"`
Completions int `json:"completions,omitempty"`
}
type TaskRetry struct {
Limit int `json:"limit,omitempty"`
Attempts int `json:"attempts,omitempty"`
}
type TaskLimits struct {
CPUs string `json:"cpus,omitempty"`
Memory string `json:"memory,omitempty"`
}
type Registry struct {
Username string `json:"username,omitempty"`
Password string `json:"password,omitempty"`
}
func (s TaskState) IsActive() bool {
return s == TaskStatePending ||
s == TaskStateScheduled ||
s == TaskStateRunning
}
func (t *Task) Clone() *Task {
var retry *TaskRetry
if t.Retry != nil {
retry = t.Retry.Clone()
}
var limits *TaskLimits
if t.Limits != nil {
limits = t.Limits.Clone()
}
var each *EachTask
if t.Each != nil {
each = t.Each.Clone()
}
var subjob *SubJobTask
if t.SubJob != nil {
subjob = t.SubJob.Clone()
}
var parallel *ParallelTask
if t.Parallel != nil {
parallel = t.Parallel.Clone()
}
var registry *Registry
if t.Registry != nil {
registry = t.Registry.Clone()
}
return &Task{
ID: t.ID,
JobID: t.JobID,
ParentID: t.ParentID,
Position: t.Position,
Name: t.Name,
State: t.State,
CreatedAt: t.CreatedAt,
ScheduledAt: t.ScheduledAt,
StartedAt: t.StartedAt,
CompletedAt: t.CompletedAt,
FailedAt: t.FailedAt,
CMD: t.CMD,
Entrypoint: t.Entrypoint,
Run: t.Run,
Image: t.Image,
Registry: registry,
Env: maps.Clone(t.Env),
Files: maps.Clone(t.Files),
Queue: t.Queue,
Error: t.Error,
Pre: CloneTasks(t.Pre),
Post: CloneTasks(t.Post),
Mounts: slices.Clone(t.Mounts),
Networks: t.Networks,
NodeID: t.NodeID,
Retry: retry,
Limits: limits,
Timeout: t.Timeout,
Result: t.Result,
Var: t.Var,
If: t.If,
Parallel: parallel,
Each: each,
Description: t.Description,
SubJob: subjob,
GPUs: t.GPUs,
Tags: t.Tags,
Workdir: t.Workdir,
Priority: t.Priority,
}
}
func CloneTasks(tasks []*Task) []*Task {
copy := make([]*Task, len(tasks))
for i, t := range tasks {
copy[i] = t.Clone()
}
return copy
}
func (r *TaskRetry) Clone() *TaskRetry {
return &TaskRetry{
Limit: r.Limit,
Attempts: r.Attempts,
}
}
func (l *TaskLimits) Clone() *TaskLimits {
return &TaskLimits{
CPUs: l.CPUs,
Memory: l.Memory,
}
}
func (e *EachTask) Clone() *EachTask {
return &EachTask{
Var: e.Var,
List: e.List,
Task: e.Task.Clone(),
Size: e.Size,
Completions: e.Completions,
}
}
func (s *SubJobTask) Clone() *SubJobTask {
return &SubJobTask{
ID: s.ID,
Name: s.Name,
Description: s.Description,
Inputs: maps.Clone(s.Inputs),
Tasks: CloneTasks(s.Tasks),
Output: s.Output,
Detached: s.Detached,
Webhooks: CloneWebhooks(s.Webhooks),
}
}
func (p *ParallelTask) Clone() *ParallelTask {
return &ParallelTask{
Tasks: CloneTasks(p.Tasks),
Completions: p.Completions,
}
}
func (r *Registry) Clone() *Registry {
return &Registry{
Username: r.Username,
Password: r.Password,
}
}
func NewTaskSummary(t *Task) *TaskSummary {
return &TaskSummary{
ID: t.ID,
JobID: t.JobID,
Position: t.Position,
Name: t.Name,
Description: t.Description,
State: t.State,
CreatedAt: t.CreatedAt,
ScheduledAt: t.ScheduledAt,
StartedAt: t.StartedAt,
CompletedAt: t.CompletedAt,
Error: t.Error,
Result: t.Result,
Var: t.Var,
Tags: t.Tags,
}
}