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
|
package flow_test
import (
"context"
"fmt"
"log"
"cuelang.org/go/cue"
"cuelang.org/go/cue/cuecontext"
"cuelang.org/go/tools/flow"
)
func Example() {
ctx := cuecontext.New()
v := ctx.CompileString(`
a: {
input: "world"
output: string
}
b: {
input: a.output
output: string
}
`)
if err := v.Err(); err != nil {
log.Fatal(err)
}
controller := flow.New(nil, v, ioTaskFunc)
if err := controller.Run(context.Background()); err != nil {
log.Fatal(err)
}
// Output:
// setting a.output to "hello world"
// setting b.output to "hello hello world"
}
func ioTaskFunc(v cue.Value) (flow.Runner, error) {
inputPath := cue.ParsePath("input")
input := v.LookupPath(inputPath)
if !input.Exists() {
return nil, nil
}
return flow.RunnerFunc(func(t *flow.Task) error {
inputVal, err := t.Value().LookupPath(inputPath).String()
if err != nil {
return fmt.Errorf("input not of type string")
}
outputVal := fmt.Sprintf("hello %s", inputVal)
fmt.Printf("setting %s.output to %q\n", t.Path(), outputVal)
return t.Fill(map[string]string{
"output": outputVal,
})
}), nil
}
|