123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- // Copyright 2021 EMQ Technologies Co., Ltd.
- //
- // 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 ast
- import (
- "github.com/lf-edge/ekuiper/pkg/api"
- "strings"
- "sync"
- )
- type FuncType int
- const (
- NotFoundFunc FuncType = iota - 1
- AggFunc
- MathFunc
- StrFunc
- ConvFunc
- HashFunc
- JsonFunc
- OtherFunc
- )
- var maps = []map[string]string{
- aggFuncMap, mathFuncMap, strFuncMap, convFuncMap, hashFuncMap, jsonFuncMap, otherFuncMap,
- }
- var aggFuncMap = map[string]string{"avg": "",
- "count": "",
- "max": "", "min": "",
- "sum": "",
- "collect": "",
- "deduplicate": "",
- }
- var funcWithAsteriskSupportMap = map[string]string{
- "collect": "",
- "count": "",
- }
- var mathFuncMap = map[string]string{"abs": "", "acos": "", "asin": "", "atan": "", "atan2": "",
- "bitand": "", "bitor": "", "bitxor": "", "bitnot": "",
- "ceil": "", "cos": "", "cosh": "",
- "exp": "",
- "ln": "", "log": "",
- "mod": "",
- "power": "",
- "rand": "", "round": "",
- "sign": "", "sin": "", "sinh": "", "sqrt": "",
- "tan": "", "tanh": "",
- }
- var strFuncMap = map[string]string{"concat": "",
- "endswith": "",
- "format_time": "",
- "indexof": "",
- "length": "", "lower": "", "lpad": "", "ltrim": "",
- "numbytes": "",
- "regexp_matches": "", "regexp_replace": "", "regexp_substr": "", "rpad": "", "rtrim": "",
- "substring": "", "startswith": "", "split_value": "",
- "trim": "",
- "upper": "",
- }
- var convFuncMap = map[string]string{"concat": "", "cast": "", "chr": "",
- "encode": "",
- "trunc": "",
- }
- var hashFuncMap = map[string]string{"md5": "",
- "sha1": "", "sha256": "", "sha384": "", "sha512": "",
- }
- var jsonFuncMap = map[string]string{
- "json_path_query": "", "json_path_query_first": "", "json_path_exists": "",
- }
- var otherFuncMap = map[string]string{"isnull": "",
- "newuuid": "", "tstamp": "", "mqtt": "", "meta": "", "cardinality": "",
- "window_start": "",
- "window_end": "",
- }
- type FuncRuntime interface {
- Get(name string) (api.Function, api.FunctionContext, error)
- }
- var (
- once sync.Once
- ff *FuncFinder
- )
- // FuncFinder Singleton, must be initiated when starting
- type FuncFinder struct {
- runtime FuncRuntime
- }
- // InitFuncFinder must be called when starting
- func InitFuncFinder(runtime FuncRuntime) {
- once.Do(func() {
- ff = &FuncFinder{runtime: runtime}
- })
- ff.runtime = runtime
- }
- // FuncFinderSingleton must be inited before calling this
- func FuncFinderSingleton() *FuncFinder {
- return ff
- }
- func (ff *FuncFinder) IsAggFunc(f *Call) bool {
- fn := strings.ToLower(f.Name)
- if _, ok := aggFuncMap[fn]; ok {
- return true
- } else if _, ok := strFuncMap[fn]; ok {
- return false
- } else if _, ok := convFuncMap[fn]; ok {
- return false
- } else if _, ok := hashFuncMap[fn]; ok {
- return false
- } else if _, ok := otherFuncMap[fn]; ok {
- return false
- } else if _, ok := mathFuncMap[fn]; ok {
- return false
- } else {
- if nf, _, err := ff.runtime.Get(f.Name); err == nil {
- if nf.IsAggregate() {
- //Add cache
- aggFuncMap[fn] = ""
- return true
- }
- }
- }
- return false
- }
- func (ff *FuncFinder) FuncType(name string) FuncType {
- for i, m := range maps {
- if _, ok := m[strings.ToLower(name)]; ok {
- return FuncType(i)
- }
- }
- return NotFoundFunc
- }
|