functionMgt.h 5.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef _TD_FUNCTION_MGT_H_
#define _TD_FUNCTION_MGT_H_

#ifdef __cplusplus
extern "C" {
#endif

D
dapan1121 已提交
23
#include "function.h"
24
#include "querynodes.h"
25

26 27 28
#define FUNC_AGGREGATE_UDF_ID 5001
#define FUNC_SCALAR_UDF_ID    5002

29 30 31 32 33 34 35 36 37 38 39 40 41 42
typedef enum EFunctionType {
  // aggregate function
  FUNCTION_TYPE_APERCENTILE = 1,
  FUNCTION_TYPE_AVG,
  FUNCTION_TYPE_COUNT,
  FUNCTION_TYPE_ELAPSED,
  FUNCTION_TYPE_IRATE,
  FUNCTION_TYPE_LAST_ROW,
  FUNCTION_TYPE_MAX,
  FUNCTION_TYPE_MIN,
  FUNCTION_TYPE_MODE,
  FUNCTION_TYPE_PERCENTILE,
  FUNCTION_TYPE_SPREAD,
  FUNCTION_TYPE_STDDEV,
43
  FUNCTION_TYPE_LEASTSQUARES,
44 45
  FUNCTION_TYPE_SUM,
  FUNCTION_TYPE_TWA,
G
Ganlin Zhao 已提交
46
  FUNCTION_TYPE_HISTOGRAM,
G
Ganlin Zhao 已提交
47
  FUNCTION_TYPE_HYPERLOGLOG,
48 49 50 51 52 53 54 55 56 57 58 59 60 61

  // nonstandard SQL function
  FUNCTION_TYPE_BOTTOM = 500,
  FUNCTION_TYPE_CSUM,
  FUNCTION_TYPE_DERIVATIVE,
  FUNCTION_TYPE_DIFF,
  FUNCTION_TYPE_FIRST,
  FUNCTION_TYPE_INTERP,
  FUNCTION_TYPE_LAST,
  FUNCTION_TYPE_MAVG,
  FUNCTION_TYPE_SAMPLE,
  FUNCTION_TYPE_TAIL,
  FUNCTION_TYPE_TOP,
  FUNCTION_TYPE_UNIQUE,
62 63
  FUNCTION_TYPE_STATE_COUNT,
  FUNCTION_TYPE_STATE_DURATION,
64 65 66 67 68

  // math function
  FUNCTION_TYPE_ABS = 1000,
  FUNCTION_TYPE_LOG,
  FUNCTION_TYPE_POW,
69 70 71
  FUNCTION_TYPE_SQRT,
  FUNCTION_TYPE_CEIL,
  FUNCTION_TYPE_FLOOR,
72
  FUNCTION_TYPE_ROUND,
73

74
  FUNCTION_TYPE_SIN,
75
  FUNCTION_TYPE_COS,
76
  FUNCTION_TYPE_TAN,
77 78 79
  FUNCTION_TYPE_ASIN,
  FUNCTION_TYPE_ACOS,
  FUNCTION_TYPE_ATAN,
80 81

  // string function
G
Ganlin Zhao 已提交
82 83
  FUNCTION_TYPE_LENGTH = 1500,
  FUNCTION_TYPE_CHAR_LENGTH,
84 85
  FUNCTION_TYPE_CONCAT,
  FUNCTION_TYPE_CONCAT_WS,
G
Ganlin Zhao 已提交
86 87 88 89 90
  FUNCTION_TYPE_LOWER,
  FUNCTION_TYPE_UPPER,
  FUNCTION_TYPE_LTRIM,
  FUNCTION_TYPE_RTRIM,
  FUNCTION_TYPE_SUBSTR,
91 92 93 94

  // conversion function
  FUNCTION_TYPE_CAST = 2000,
  FUNCTION_TYPE_TO_ISO8601,
95
  FUNCTION_TYPE_TO_UNIXTIMESTAMP,
96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
  FUNCTION_TYPE_TO_JSON,

  // date and time function
  FUNCTION_TYPE_NOW = 2500,
  FUNCTION_TYPE_TIMEDIFF,
  FUNCTION_TYPE_TIMETRUNCATE,
  FUNCTION_TYPE_TIMEZONE,
  FUNCTION_TYPE_TODAY,

  // system function
  FUNCTION_TYPE_DATABASE = 3000,
  FUNCTION_TYPE_CLIENT_VERSION,
  FUNCTION_TYPE_SERVER_SERSION,
  FUNCTION_TYPE_SERVER_STATUS,
  FUNCTION_TYPE_CURRENT_USER,
111 112 113 114 115 116 117 118 119
  FUNCTION_TYPE_USER,

  // pseudo column function
  FUNCTION_TYPE_ROWTS = 3500,
  FUNCTION_TYPE_TBNAME,
  FUNCTION_TYPE_QSTARTTS,
  FUNCTION_TYPE_QENDTS,
  FUNCTION_TYPE_WSTARTTS,
  FUNCTION_TYPE_WENDTS,
120 121
  FUNCTION_TYPE_WDURATION,

122 123
  // internal function
  FUNCTION_TYPE_SELECT_VALUE,
124 125
  FUNCTION_TYPE_BLOCK_DIST,       // block distribution aggregate function
  FUNCTION_TYPE_BLOCK_DIST_INFO,  // block distribution pseudo column function
126

127
  // distributed splitting functions
G
Ganlin Zhao 已提交
128
  FUNCTION_TYPE_APERCENTILE_PARTIAL = 4000,
129
  FUNCTION_TYPE_APERCENTILE_MERGE,
130 131
  FUNCTION_TYPE_SPREAD_PARTIAL,
  FUNCTION_TYPE_SPREAD_MERGE,
132 133
  FUNCTION_TYPE_HISTOGRAM_PARTIAL,
  FUNCTION_TYPE_HISTOGRAM_MERGE,
134 135
  FUNCTION_TYPE_HYPERLOGLOG_PARTIAL,
  FUNCTION_TYPE_HYPERLOGLOG_MERGE,
136 137
  FUNCTION_TYPE_ELAPSED_PARTIAL,
  FUNCTION_TYPE_ELAPSED_MERGE,
138

G
Ganlin Zhao 已提交
139 140
  FUNCTION_TYPE_TOP_PARTIAL,
  FUNCTION_TYPE_TOP_MERGE,
141 142
  FUNCTION_TYPE_BOTTOM_PARTIAL,
  FUNCTION_TYPE_BOTTOM_MERGE,
143 144
  FUNCTION_TYPE_FIRST_PARTIAL,
  FUNCTION_TYPE_FIRST_MERGE,
G
Ganlin Zhao 已提交
145 146
  FUNCTION_TYPE_LAST_PARTIAL,
  FUNCTION_TYPE_LAST_MERGE,
147 148
  FUNCTION_TYPE_AVG_PARTIAL,
  FUNCTION_TYPE_AVG_MERGE,
149 150
  FUNCTION_TYPE_STDDEV_PARTIAL,
  FUNCTION_TYPE_STDDEV_MERGE,
151

152 153
  // user defined funcion
  FUNCTION_TYPE_UDF = 10000
154 155
} EFunctionType;

H
Haojun Liao 已提交
156
struct SqlFunctionCtx;
157 158
struct SResultRowEntryInfo;
struct STimeWindow;
D
dapan1121 已提交
159

160 161
int32_t fmFuncMgtInit();

X
Xiaoyu Wang 已提交
162 163
void fmFuncMgtDestroy();

164
int32_t fmGetFuncInfo(SFunctionNode* pFunc, char* pMsg, int32_t msgLen);
165

166 167
bool fmIsBuiltinFunc(const char* pFunc);

168
bool fmIsAggFunc(int32_t funcId);
169
bool fmIsScalarFunc(int32_t funcId);
X
Xiaoyu Wang 已提交
170 171
bool fmIsVectorFunc(int32_t funcId);
bool fmIsIndefiniteRowsFunc(int32_t funcId);
172
bool fmIsStringFunc(int32_t funcId);
173
bool fmIsDatetimeFunc(int32_t funcId);
174
bool fmIsSelectFunc(int32_t funcId);
175 176
bool fmIsTimelineFunc(int32_t funcId);
bool fmIsTimeorderFunc(int32_t funcId);
X
Xiaoyu Wang 已提交
177
bool fmIsPseudoColumnFunc(int32_t funcId);
178
bool fmIsScanPseudoColumnFunc(int32_t funcId);
179 180
bool fmIsWindowPseudoColumnFunc(int32_t funcId);
bool fmIsWindowClauseFunc(int32_t funcId);
181 182
bool fmIsSpecialDataRequiredFunc(int32_t funcId);
bool fmIsDynamicScanOptimizedFunc(int32_t funcId);
183
bool fmIsMultiResFunc(int32_t funcId);
X
Xiaoyu Wang 已提交
184
bool fmIsRepeatScanFunc(int32_t funcId);
185
bool fmIsUserDefinedFunc(int32_t funcId);
X
Xiaoyu Wang 已提交
186
bool fmIsDistExecFunc(int32_t funcId);
X
Xiaoyu Wang 已提交
187
bool fmIsForbidFillFunc(int32_t funcId);
X
Xiaoyu Wang 已提交
188
bool fmIsForbidStreamFunc(int32_t funcId);
189 190
bool fmIsForbidWindowFunc(int32_t funcId);
bool fmIsForbidGroupByFunc(int32_t funcId);
H
Haojun Liao 已提交
191
bool fmIsIntervalInterpoFunc(int32_t funcId);
X
Xiaoyu Wang 已提交
192 193

int32_t fmGetDistMethod(const SFunctionNode* pFunc, SFunctionNode** pPartialFunc, SFunctionNode** pMergeFunc);
194

195
typedef enum EFuncDataRequired {
196 197 198 199
  FUNC_DATA_REQUIRED_DATA_LOAD = 1,
  FUNC_DATA_REQUIRED_STATIS_LOAD,
  FUNC_DATA_REQUIRED_NOT_LOAD,
  FUNC_DATA_REQUIRED_FILTEROUT,
200 201 202
} EFuncDataRequired;

EFuncDataRequired fmFuncDataRequired(SFunctionNode* pFunc, STimeWindow* pTimeWindow);
203

D
dapan1121 已提交
204 205
int32_t fmGetFuncExecFuncs(int32_t funcId, SFuncExecFuncs* pFpSet);
int32_t fmGetScalarFuncExecFuncs(int32_t funcId, SScalarFuncExecFuncs* pFpSet);
206
int32_t fmGetUdafExecFuncs(int32_t funcId, SFuncExecFuncs* pFpSet);
5
54liuyao 已提交
207 208
int32_t fmSetInvertFunc(int32_t funcId, SFuncExecFuncs* pFpSet);
int32_t fmSetNormalFunc(int32_t funcId, SFuncExecFuncs* pFpSet);
X
Xiaoyu Wang 已提交
209
bool    fmIsInvertible(int32_t funcId);
210 211 212 213 214 215

#ifdef __cplusplus
}
#endif

#endif  // _TD_FUNCTION_MGT_H_