-
Notifications
You must be signed in to change notification settings - Fork 9
/
actiondemo.go
48 lines (39 loc) · 1.22 KB
/
actiondemo.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
// Copyright 2022 Namespace Labs Inc; All rights reserved.
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
package debug
import (
"context"
"fmt"
"math/rand"
"time"
"github.com/spf13/cobra"
"golang.org/x/sync/errgroup"
"namespacelabs.dev/foundation/internal/cli/fncobra"
"namespacelabs.dev/foundation/internal/console"
"namespacelabs.dev/foundation/std/tasks"
)
func newActionDemoCmd() *cobra.Command {
cmd := &cobra.Command{
Use: "action-demo",
Short: "Experiment with console output.",
RunE: fncobra.RunE(func(ctx context.Context, args []string) error {
eg, ctx := errgroup.WithContext(ctx)
const maxMidDur = 10
for i := 0; i < 20; i++ {
i := i
eg.Go(func() error {
time.Sleep(time.Duration((rand.Int()+1)%maxMidDur) * time.Second)
return tasks.Action(fmt.Sprintf("task.%d", i)).Arg("i", i).Run(ctx, func(_ context.Context) error {
time.Sleep(time.Duration((rand.Int()+1)%maxMidDur) * time.Second)
fmt.Fprintln(console.Stdout(ctx), "midway", i)
time.Sleep(time.Duration((rand.Int()+1)%maxMidDur) * time.Second)
return nil
})
})
}
return eg.Wait()
}),
}
return cmd
}