Files
kubevela/pkg/cue/model/value/value.go
Hongchao Deng ed0039e1ee [Feature] CUE Based Workflow Step (#1935)
* Workflow WIP (#1934)

* interface

* add model value

* walk fields

* provider

* stdlin

* tasks

* add stdlib

* Adjust TaskGenerator

* Unified configmap format

* development completed

* fix import cycle

* demo passing

* upgrade action

* add value test cases

* format

* apis

* add context test cases

* fmt

* fmt

* add context to taskGenerator (#1942)

* fix configmap test

* add workflow integration test

* upgrade code

* initial workflow commit

* interface

* add model value

* walk fields

* provider

* stdlin

* tasks

* add stdlib

* Adjust TaskGenerator

* Unified configmap format

* development completed

* fix import cycle

* demo passing

* upgrade action

* add value test cases

* format

* apis

* add context test cases

* fmt

* fmt

* add context to taskGenerator (#1942)

* fix configmap test

* add workflow integration test

* lint code

* improve pkg[value、context] testing coverage

* Improve testing coverage(#1957)

* add license

* add test cases

Co-authored-by: Jian.Li <74582607+leejanee@users.noreply.github.com>
Co-authored-by: Jian.Li <lj176172@alibaba-inc.com>
2021-07-22 18:53:30 +08:00

236 lines
5.0 KiB
Go

/*
Copyright 2021 The KubeVela Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package value
import (
"encoding/json"
"strings"
"cuelang.org/go/cue"
"cuelang.org/go/cue/build"
"github.com/pkg/errors"
"github.com/oam-dev/kubevela/pkg/cue/model/sets"
"github.com/oam-dev/kubevela/pkg/cue/packages"
)
// Value is an object with cue.runtime and vendors
type Value struct {
v cue.Value
r cue.Runtime
pd *packages.PackageDiscover
}
// String return value's cue format string
func (val *Value) String() (string, error) {
return sets.ToString(val.v)
}
// Error return value's error information.
func (val *Value) Error() error {
v := val.CueValue()
if !v.Exists() {
return errors.New("empty value")
}
var gerr error
v.Walk(func(value cue.Value) bool {
if err := value.Eval().Err(); err != nil {
gerr = err
return false
}
return true
}, nil)
return gerr
}
// UnmarshalTo unmarshal value into golang object
func (val *Value) UnmarshalTo(x interface{}) error {
data, err := val.v.MarshalJSON()
if err != nil {
return err
}
return json.Unmarshal(data, x)
}
// NewValue new a value
func NewValue(s string, pd *packages.PackageDiscover) (*Value, error) {
builder := &build.Instance{}
if err := builder.AddFile("-", s); err != nil {
return nil, err
}
if pd != nil {
if _, err := pd.ImportPackagesAndBuildInstance(builder); err != nil {
return nil, err
}
}
var r cue.Runtime
inst, err := r.Build(builder)
if err != nil {
return nil, err
}
val := new(Value)
val.r = r
val.v = inst.Value()
val.pd = pd
return val, nil
}
// MakeValue generate an value with same runtime
func (val *Value) MakeValue(s string) (*Value, error) {
builder := &build.Instance{}
if err := builder.AddFile("-", s); err != nil {
return nil, err
}
if val.pd != nil {
if _, err := val.pd.ImportPackagesAndBuildInstance(builder); err != nil {
return nil, err
}
}
inst, err := val.r.Build(builder)
if err != nil {
return nil, err
}
v := new(Value)
v.r = val.r
v.v = inst.Value()
v.pd = val.pd
return v, nil
}
// FillRaw unify the value with the cue format string x at the given path.
func (val *Value) FillRaw(x string, paths ...string) error {
xInst, err := val.r.Compile("-", x)
if err != nil {
return err
}
v := val.v.Fill(xInst.Value(), paths...)
if v.Err() != nil {
return v.Err()
}
val.v = v
return nil
}
// CueValue return cue.Value
func (val *Value) CueValue() cue.Value {
return val.v
}
// FillObject unify the value with object x at the given path.
func (val *Value) FillObject(x interface{}, paths ...string) error {
insert := x
if v, ok := x.(*Value); ok {
if v.r != val.r {
return errors.New("filled value not created with same Runtime")
}
insert = v.v
}
newV := val.v.Fill(insert, paths...)
if newV.Err() != nil {
return newV.Err()
}
val.v = newV
return nil
}
// LookupValue reports the value at a path starting from val
func (val *Value) LookupValue(paths ...string) (*Value, error) {
v := val.v.Lookup(paths...)
if !v.Exists() {
return nil, errors.Errorf("var(path=%s) not exist", strings.Join(paths, "."))
}
return &Value{
v: v,
r: val.r,
}, nil
}
type field struct {
Name string
Value *Value
}
// StepByFields process the fields in order
func (val *Value) StepByFields(handle func(in *Value) (bool, error)) error {
for i := 0; ; i++ {
field, end, err := val.fieldIndex(i)
if err != nil {
return err
}
stop, err := handle(field.Value)
if err != nil {
return errors.WithMessagef(err, "step %s", field.Name)
}
if stop {
return nil
}
if err := val.FillObject(field.Value, field.Name); err != nil {
return err
}
if end {
break
}
}
return nil
}
func (val *Value) fieldIndex(index int) (*field, bool, error) {
st, err := val.v.Struct()
if err != nil {
return nil, false, err
}
if index >= st.Len() {
return nil, false, errors.New("get value field by index overhead")
}
end := false
if index == (st.Len() - 1) {
end = true
}
v := st.Field(index)
return &field{
Name: v.Name,
Value: &Value{
r: val.r,
v: v.Value,
}}, end, nil
}
// Field return the cue value corresponding to the specified field
func (val *Value) Field(label string) (cue.Value, error) {
var v cue.Value
if isDef(label) {
v = val.v.LookupDef(label)
} else {
v = val.v.Lookup(label)
}
if !v.Exists() {
return v, errors.Errorf("label %s not found", label)
}
if v.Kind() == cue.BottomKind {
return v, errors.Errorf("label %s's value not computed", label)
}
return v, nil
}
func isDef(s string) bool {
return strings.HasPrefix(s, "#")
}