-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrunner.go
More file actions
466 lines (390 loc) · 11 KB
/
Copy pathrunner.go
File metadata and controls
466 lines (390 loc) · 11 KB
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
// package runner
//
// Runner runs the command inside the executor shell
// It uses the mvdan.sh shell implementation in Go.
// injects a custom environment per execution
//
// not all *nix* commands are available, should only be used for a limited number of scenarios
//
// Container Specific implementation runner will use the MobyAPI
package runner
import (
"context"
"errors"
"fmt"
"io"
"os"
"sync"
"time"
"github.com/Ensono/eirctl/internal/utils"
"github.com/Ensono/eirctl/output"
"github.com/Ensono/eirctl/task"
"github.com/Ensono/eirctl/variables"
"github.com/sirupsen/logrus"
)
var ErrArtifactFailed = errors.New("artifact not processed")
// Runner describes tasks runner interface
type Runner interface {
Run(t *task.Task) error
Cancel()
Finish()
}
type Executor interface {
Execute(context.Context, *Job) ([]byte, error)
}
// TaskRunner struct holds the properties and methods
// for running the tasks inside the given executor
type TaskRunner struct {
executorFactory func(execContext *ExecutionContext, job *Job) (ExecutorIface, error)
DryRun bool
contexts map[string]*ExecutionContext
variables *variables.Variables
env *variables.Variables
ctx context.Context
cancelFunc context.CancelFunc
cancelMutex sync.RWMutex
canceling bool
doneCh chan struct{}
compiler *TaskCompiler
Stdin io.Reader
Stdout, Stderr io.Writer
OutputFormat string
cleanupList sync.Map
}
// NewTaskRunner creates new TaskRunner instance
func NewTaskRunner(opts ...Opts) (*TaskRunner, error) {
r := &TaskRunner{
compiler: NewTaskCompiler(),
OutputFormat: string(output.RawOutput),
Stdin: os.Stdin,
Stdout: os.Stdout,
Stderr: os.Stderr,
variables: variables.NewVariables(),
env: variables.NewVariables(),
cancelMutex: sync.RWMutex{},
doneCh: make(chan struct{}, 1),
executorFactory: GetExecutorFactory,
}
r.ctx, r.cancelFunc = context.WithCancel(context.Background())
for _, o := range opts {
o(r)
}
r.env = variables.FromMap(map[string]string{"ARGS": r.variables.Get("Args").(string)})
return r, nil
}
// SetContexts sets task runner's contexts
func (r *TaskRunner) SetContexts(contexts map[string]*ExecutionContext) *TaskRunner {
r.contexts = contexts
return r
}
// SetVariables sets task runner's variables
func (r *TaskRunner) SetVariables(vars *variables.Variables) *TaskRunner {
r.variables = vars
return r
}
// Run runs provided task.
// TaskRunner first compiles task into linked list of Jobs, then passes those jobs to Executor
//
// Env on the runner is global to all tasks
// it is built using the dotenv output only for now
func (r *TaskRunner) Run(t *task.Task) error {
defer func() {
r.cancelMutex.RLock()
if r.canceling {
close(r.doneCh)
}
r.cancelMutex.RUnlock()
}()
execContext, err := r.contextForTask(t)
if err != nil {
logrus.Tracef("err in execContext: %s\n", err.Error())
return err
}
outputFormat := r.OutputFormat
var stdin io.Reader
if t.Interactive {
outputFormat = string(output.RawOutput)
stdin = r.Stdin
}
taskOutput, err := output.NewTaskOutput(t, outputFormat, r.Stdout, r.Stderr)
if err != nil {
return err
}
defer func(t *task.Task) {
err := taskOutput.Finish()
if err != nil {
logrus.Error(err)
}
taskOutput.Close()
err = execContext.After(r.Stdout, r.Stderr)
if err != nil {
logrus.Error(err)
}
if !t.Errored() && !t.Skipped() {
t.WithExitCode(0)
}
}(t)
vars := r.variables.Merge(t.Variables)
env := r.env.Merge(execContext.Env)
env = env.With("TASK_NAME", t.Name)
env = env.Merge(t.Env)
envfileEnv := variables.NewVariables()
// denormalized graph will append all ancestral env keys to the task
// if task also includes an envfile property
// We need to read it in and hang on the env for the command compiler.
if readers, exists := utils.ReaderFromPath(t.EnvFile); exists {
for _, reader := range readers {
m, err := utils.ReadEnvFile(reader)
if err != nil {
return fmt.Errorf("%v, %w", err, utils.ErrEnvfileFormatIncorrect)
}
// now overwriting any env set properties in the envfile
envfileEnv = envfileEnv.Merge(variables.FromMap(m))
}
}
env = envfileEnv.Merge(env)
meets, err := r.checkTaskCondition(t)
if err != nil {
return err
}
if !meets {
logrus.Infof("task %s was skipped", t.Name)
t.WithSkipped(true)
return nil
}
err = r.before(r.ctx, t, env, vars)
if err != nil {
return err
}
job, err := r.compiler.CompileTask(t, execContext, stdin, taskOutput.Stdout(), taskOutput.Stderr(), env, vars)
if err != nil {
return err
}
err = taskOutput.Start()
if err != nil {
return err
}
err = r.execute(r.ctx, t, job)
if err != nil {
if errors.Is(err, context.Canceled) {
logrus.Tracef("err is cancelled: %s\n", err.Error())
}
return err
}
if err := r.storeTaskOutput(t); err != nil {
return err
}
return r.after(r.ctx, t, env, vars)
}
// Cancel cancels execution
func (r *TaskRunner) Cancel() {
r.cancelMutex.Lock()
if !r.canceling {
r.canceling = true
defer logrus.Debug("runner has been cancelled")
r.cancelFunc()
}
r.cancelMutex.Unlock()
<-r.doneCh
}
// Finish makes cleanup tasks over contexts
func (r *TaskRunner) Finish() {
// future iteration should properly type these
// context level Down are run after the task level After
r.cleanupList.Range(func(key, value any) bool {
value.(*ExecutionContext).Down(r.Stdout, r.Stderr)
return true
})
}
// WithVariable adds variable to task runner's variables list.
// It creates new instance of variables container.
func (r *TaskRunner) WithVariable(key, value string) *TaskRunner {
r.variables = r.variables.With(key, value)
return r
}
func (r *TaskRunner) before(ctx context.Context, t *task.Task, env, vars *variables.Variables) error {
if len(t.Before) == 0 {
return nil
}
execContext, err := r.contextForTask(t)
if err != nil {
return err
}
for _, command := range t.Before {
job, err := r.compiler.compileCommand(compileCommandInput{task: t, command: command, executionCtx: execContext, dir: t.Dir, timeout: t.Timeout, stdout: r.Stdout, stderr: r.Stderr, env: env, vars: vars})
if err != nil {
return fmt.Errorf(`"before\" command compilation failed: %w`, err)
}
exec, err := newDefaultExecutor(job.Stdin, job.Stdout, job.Stderr)
if err != nil {
return err
}
_, err = exec.Execute(ctx, job)
if err != nil {
return err
}
}
return nil
}
func (r *TaskRunner) after(ctx context.Context, t *task.Task, env, vars *variables.Variables) error {
if len(t.After) == 0 {
return nil
}
execContext, err := r.contextForTask(t)
if err != nil {
return err
}
for _, command := range t.After {
job, err := r.compiler.compileCommand(compileCommandInput{task: t, command: command, executionCtx: execContext, dir: t.Dir, timeout: t.Timeout, stdout: r.Stdout, stderr: r.Stderr, env: env, vars: vars})
if err != nil {
return fmt.Errorf(`"after" command compilation failed: %w`, err)
}
exec, err := r.executorFactory(execContext, job)
if err != nil {
return err
}
_, err = exec.Execute(ctx, job)
if err != nil {
logrus.Warning(err)
}
}
return nil
}
// contextForTask initializes a default or returns an initialized context from config.
//
// It checks whether there is a `eirctl.env` in the cwd if so it ingests it
// and merges with the specified env.
func (r *TaskRunner) contextForTask(t *task.Task) (*ExecutionContext, error) {
context := DefaultContext()
if t.Context != "" {
var ok bool
if context, ok = r.contexts[t.Context]; !ok {
return nil, fmt.Errorf("no such context %s", t.Context)
}
r.cleanupList.Store(t.Context, context)
}
err := context.Up(r.Stdout, r.Stderr)
if err != nil {
return nil, err
}
err = context.Before(r.Stdout, r.Stderr)
if err != nil {
return nil, err
}
// This will be run at every task start allowing dynamic changes
context.Env = context.Env.Merge(utils.DefaultTaskctlEnv())
return context, nil
}
func (r *TaskRunner) checkTaskCondition(t *task.Task) (bool, error) {
if t.Condition == "" {
return true, nil
}
executionContext, err := r.contextForTask(t)
if err != nil {
return false, err
}
job, err := r.compiler.compileCommand(compileCommandInput{task: t, command: t.Condition, executionCtx: executionContext, dir: t.Dir, timeout: t.Timeout, stdout: r.Stdout, stderr: r.Stderr, env: r.env, vars: r.variables})
if err != nil {
return false, err
}
exec, err := r.executorFactory(executionContext, job)
if err != nil {
return false, err
}
_, err = exec.Execute(r.ctx, job)
if err != nil {
if _, ok := IsExitStatus(err); ok {
return false, nil
}
return false, err
}
return true, nil
}
func (r *TaskRunner) storeTaskOutput(t *task.Task) error {
// don't do anything if no artifacts are assigned
if t.Artifacts == nil {
return nil
}
if t.Artifacts.Type == task.DotEnvArtifactType {
b, err := os.Open(t.Artifacts.Path)
if err != nil {
return fmt.Errorf("failed to open, %v\n%w", err, ErrArtifactFailed)
}
dotEnvVars, err := utils.ReadEnvFile(b)
if err != nil {
return err
}
for envKey, envVar := range dotEnvVars {
r.env.Set(envKey, envVar)
}
}
if t.Artifacts.Type == task.RuntimeEnvArtifactType {
for envKey, envVar := range t.OutputCaptured() {
r.env.Set(envKey, envVar)
}
}
return nil
}
// execute
func (r *TaskRunner) execute(ctx context.Context, t *task.Task, job *Job) error {
execContext, err := r.contextForTask(t)
if err != nil {
return err
}
exec, err := r.executorFactory(execContext, job)
if err != nil {
return err
}
exec.WithReset(t.ResetContext)
t.WithStart(time.Now())
for nextJob := job; nextJob != nil; nextJob = nextJob.Next {
cmd, err := utils.ParseTemplate(nextJob.Command, nextJob.Vars.Map(), nextJob.Env.Map())
if err != nil {
return err
}
nextJob.Command = cmd
if _, err := exec.Execute(ctx, nextJob); err != nil {
logrus.Trace(err.Error())
if status, ok := IsExitStatus(err); ok {
t.WithExitCode(int16(status))
if t.AllowFailure {
// t.WithError(err)
t.WithEnd(time.Now())
continue
}
}
t.WithError(err)
t.WithEnd(time.Now())
return t.Error()
}
}
t.WithEnd(time.Now())
return nil
}
// Opts is a task runner configuration function.
type Opts func(*TaskRunner)
// WithContexts adds provided contexts to task runner
func WithContexts(contexts map[string]*ExecutionContext) Opts {
return func(runner *TaskRunner) {
runner.contexts = contexts
}
}
// WithVariables adds provided variables to task runner
func WithVariables(variables *variables.Variables) Opts {
return func(runner *TaskRunner) {
runner.variables = variables
runner.compiler.variables = variables
}
}
// WithGracefulCtx uses the top most context to create child contexts
// this will ensure the cancellation is propagated properly down.
func WithGracefulCtx(ctx context.Context) Opts {
return func(tr *TaskRunner) {
tr.ctx, tr.cancelFunc = context.WithCancel(ctx)
}
}
func WithExecutorFactory(factory func(execContext *ExecutionContext, job *Job) (ExecutorIface, error)) Opts {
return func(tr *TaskRunner) {
tr.executorFactory = factory
}
}