analyticfuncs_operator.go 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 AnalyticFuncsOp struct {
  22. Funcs []*ast.Call
  23. }
  24. func (p *AnalyticFuncsOp) Apply(ctx api.StreamContext, data interface{}, fv *xsql.FunctionValuer, _ *xsql.AggregateFunctionValuer) interface{} {
  25. ctx.GetLogger().Debugf("AnalyticFuncsOp receive: %s", data)
  26. switch input := data.(type) {
  27. case error:
  28. return input
  29. case xsql.TupleRow:
  30. ve := &xsql.ValuerEval{Valuer: xsql.MultiValuer(input, fv)}
  31. for _, f := range p.Funcs {
  32. result := ve.Eval(f)
  33. if e, ok := result.(error); ok {
  34. return e
  35. }
  36. input.Set(f.CachedField, result)
  37. }
  38. case xsql.SingleCollection:
  39. err := input.RangeSet(func(_ int, row xsql.Row) (bool, error) {
  40. ve := &xsql.ValuerEval{Valuer: xsql.MultiValuer(row, &xsql.WindowRangeValuer{WindowRange: input.GetWindowRange()}, fv, &xsql.WildcardValuer{Data: row})}
  41. for _, f := range p.Funcs {
  42. result := ve.Eval(f)
  43. if e, ok := result.(error); ok {
  44. return false, e
  45. }
  46. row.Set(f.CachedField, result)
  47. }
  48. return true, nil
  49. })
  50. if err != nil {
  51. return err
  52. }
  53. default:
  54. return fmt.Errorf("run analytic funcs op error: invalid input %[1]T(%[1]v)", input)
  55. }
  56. return data
  57. }