func_operator.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. // Copyright 2022 EMQ Technologies Co., Ltd.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package operator
  15. import (
  16. "fmt"
  17. "github.com/lf-edge/ekuiper/internal/xsql"
  18. "github.com/lf-edge/ekuiper/pkg/api"
  19. "github.com/lf-edge/ekuiper/pkg/ast"
  20. )
  21. type FuncOp struct {
  22. CallExpr *ast.Call
  23. Name string
  24. }
  25. func (p *FuncOp) Apply(ctx api.StreamContext, data interface{}, fv *xsql.FunctionValuer, _ *xsql.AggregateFunctionValuer) interface{} {
  26. ctx.GetLogger().Debugf("FuncOp receive: %s", data)
  27. switch input := data.(type) {
  28. case error:
  29. return input
  30. case xsql.Valuer:
  31. ve := &xsql.ValuerEval{Valuer: xsql.MultiValuer(input, fv)}
  32. result := ve.Eval(p.CallExpr)
  33. if e, ok := result.(error); ok {
  34. return e
  35. }
  36. switch val := input.(type) {
  37. case xsql.Row:
  38. val.Set(p.Name, result)
  39. return val
  40. default:
  41. return fmt.Errorf("unknow type")
  42. }
  43. default:
  44. return fmt.Errorf("run func error: invalid input %[1]T(%[1]v)", input)
  45. }
  46. }