builtinsimpl.h 11.5 KB
Newer Older
H
Haojun Liao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
/*
 * 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 TDENGINE_BUILTINSIMPL_H
#define TDENGINE_BUILTINSIMPL_H

#ifdef __cplusplus
extern "C" {
#endif

#include "function.h"
24
#include "functionMgt.h"
H
Haojun Liao 已提交
25

H
Hongze Cheng 已提交
26 27
bool    dummyGetEnv(SFunctionNode* UNUSED_PARAM(pFunc), SFuncExecEnv* UNUSED_PARAM(pEnv));
bool    dummyInit(SqlFunctionCtx* UNUSED_PARAM(pCtx), SResultRowEntryInfo* UNUSED_PARAM(pResultInfo));
28 29
int32_t dummyProcess(SqlFunctionCtx* UNUSED_PARAM(pCtx));
int32_t dummyFinalize(SqlFunctionCtx* UNUSED_PARAM(pCtx), SSDataBlock* UNUSED_PARAM(pBlock));
30

H
Hongze Cheng 已提交
31
bool    functionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
32
int32_t functionFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
33
int32_t functionFinalizeWithResultBuf(SqlFunctionCtx* pCtx, SSDataBlock* pBlock, char* finalResult);
5
54liuyao 已提交
34
int32_t combineFunction(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
H
Haojun Liao 已提交
35

36
EFuncDataRequired countDataRequired(SFunctionNode* pFunc, STimeWindow* pTimeWindow);
H
Hongze Cheng 已提交
37 38 39
bool              getCountFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
int32_t           countFunction(SqlFunctionCtx* pCtx);
int32_t           countInvertFunction(SqlFunctionCtx* pCtx);
H
Haojun Liao 已提交
40

41
EFuncDataRequired statisDataRequired(SFunctionNode* pFunc, STimeWindow* pTimeWindow);
H
Hongze Cheng 已提交
42 43 44 45
bool              getSumFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
int32_t           sumFunction(SqlFunctionCtx* pCtx);
int32_t           sumInvertFunction(SqlFunctionCtx* pCtx);
int32_t           sumCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
H
Haojun Liao 已提交
46

H
Hongze Cheng 已提交
47 48
bool    minmaxFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
bool    getMinmaxFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
H
Haojun Liao 已提交
49
int32_t minFunction(SqlFunctionCtx* pCtx);
H
Hongze Cheng 已提交
50
int32_t maxFunction(SqlFunctionCtx* pCtx);
51
int32_t minmaxFunctionFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
5
54liuyao 已提交
52 53
int32_t minCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
int32_t maxCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
54

H
Hongze Cheng 已提交
55 56
bool    getAvgFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    avgFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
G
Ganlin Zhao 已提交
57
int32_t avgFunction(SqlFunctionCtx* pCtx);
G
Ganlin Zhao 已提交
58
int32_t avgFunctionMerge(SqlFunctionCtx* pCtx);
H
Haojun Liao 已提交
59
int32_t avgFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
G
Ganlin Zhao 已提交
60
int32_t avgPartialFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
5
54liuyao 已提交
61
int32_t avgInvertFunction(SqlFunctionCtx* pCtx);
5
54liuyao 已提交
62
int32_t avgCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
63
int32_t getAvgInfoSize();
G
Ganlin Zhao 已提交
64

H
Hongze Cheng 已提交
65 66
bool    getStddevFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    stddevFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
H
Haojun Liao 已提交
67
int32_t stddevFunction(SqlFunctionCtx* pCtx);
G
Ganlin Zhao 已提交
68
int32_t stddevFunctionMerge(SqlFunctionCtx* pCtx);
69
int32_t stddevFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
G
Ganlin Zhao 已提交
70
int32_t stddevPartialFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
5
54liuyao 已提交
71
int32_t stddevInvertFunction(SqlFunctionCtx* pCtx);
5
54liuyao 已提交
72
int32_t stddevCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
73
int32_t getStddevInfoSize();
H
Haojun Liao 已提交
74

H
Hongze Cheng 已提交
75 76
bool    getLeastSQRFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    leastSQRFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
77 78 79
int32_t leastSQRFunction(SqlFunctionCtx* pCtx);
int32_t leastSQRFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
int32_t leastSQRInvertFunction(SqlFunctionCtx* pCtx);
5
54liuyao 已提交
80
int32_t leastSQRCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
81

H
Hongze Cheng 已提交
82 83 84
bool    getPercentileFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    percentileFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
int32_t percentileFunction(SqlFunctionCtx* pCtx);
85
int32_t percentileFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
H
Haojun Liao 已提交
86

H
Hongze Cheng 已提交
87 88 89
bool    getApercentileFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    apercentileFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
int32_t apercentileFunction(SqlFunctionCtx* pCtx);
G
Ganlin Zhao 已提交
90
int32_t apercentileFunctionMerge(SqlFunctionCtx* pCtx);
91
int32_t apercentileFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
92
int32_t apercentilePartialFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
93
int32_t apercentileCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
94
int32_t getApercentileMaxSize();
95

H
Hongze Cheng 已提交
96 97 98
bool    getDiffFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    diffFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResInfo);
int32_t diffFunction(SqlFunctionCtx* pCtx);
H
Haojun Liao 已提交
99

H
Hongze Cheng 已提交
100 101 102
bool    getDerivativeFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    derivativeFuncSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResInfo);
int32_t derivativeFunction(SqlFunctionCtx* pCtx);
103

H
Hongze Cheng 已提交
104 105 106
bool    getIrateFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    irateFuncSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResInfo);
int32_t irateFunction(SqlFunctionCtx* pCtx);
G
Ganlin Zhao 已提交
107 108
int32_t irateFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);

109
int32_t cachedLastRowFunction(SqlFunctionCtx* pCtx);
110

H
Hongze Cheng 已提交
111 112 113 114 115 116 117 118 119 120
bool              getFirstLastFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
int32_t           firstFunction(SqlFunctionCtx* pCtx);
int32_t           firstFunctionMerge(SqlFunctionCtx* pCtx);
int32_t           lastFunction(SqlFunctionCtx* pCtx);
int32_t           lastFunctionMerge(SqlFunctionCtx* pCtx);
int32_t           firstLastFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
int32_t           firstLastPartialFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
int32_t           firstCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
int32_t           lastCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
int32_t           getFirstLastInfoSize(int32_t resBytes);
121
EFuncDataRequired firstDynDataReq(void* pRes, STimeWindow* pTimeWindow);
122
EFuncDataRequired lastDynDataReq(void* pRes, STimeWindow* pTimeWindow);
H
Haojun Liao 已提交
123

H
Hongze Cheng 已提交
124
int32_t lastRowFunction(SqlFunctionCtx* pCtx);
125

H
Hongze Cheng 已提交
126 127 128 129 130 131 132
bool    getTopBotFuncEnv(SFunctionNode* UNUSED_PARAM(pFunc), SFuncExecEnv* pEnv);
bool    getTopBotMergeFuncEnv(SFunctionNode* UNUSED_PARAM(pFunc), SFuncExecEnv* pEnv);
bool    topBotFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
int32_t topFunction(SqlFunctionCtx* pCtx);
int32_t topFunctionMerge(SqlFunctionCtx* pCtx);
int32_t bottomFunction(SqlFunctionCtx* pCtx);
int32_t bottomFunctionMerge(SqlFunctionCtx* pCtx);
133
int32_t topBotFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
G
Ganlin Zhao 已提交
134
int32_t topBotPartialFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
135
int32_t topBotMergeFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
136 137
int32_t topCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
int32_t bottomCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
G
Ganlin Zhao 已提交
138
int32_t getTopBotInfoSize(int64_t numOfItems);
139

H
Hongze Cheng 已提交
140 141
bool    getSpreadFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    spreadFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
G
Ganlin Zhao 已提交
142
int32_t spreadFunction(SqlFunctionCtx* pCtx);
G
Ganlin Zhao 已提交
143
int32_t spreadFunctionMerge(SqlFunctionCtx* pCtx);
G
Ganlin Zhao 已提交
144
int32_t spreadFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
G
Ganlin Zhao 已提交
145
int32_t spreadPartialFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
146
int32_t getSpreadInfoSize();
147
int32_t spreadCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
G
Ganlin Zhao 已提交
148

H
Hongze Cheng 已提交
149 150
bool    getElapsedFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    elapsedFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
G
Ganlin Zhao 已提交
151
int32_t elapsedFunction(SqlFunctionCtx* pCtx);
152
int32_t elapsedFunctionMerge(SqlFunctionCtx* pCtx);
G
Ganlin Zhao 已提交
153
int32_t elapsedFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
154
int32_t elapsedPartialFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
155
int32_t getElapsedInfoSize();
156
int32_t elapsedCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
G
Ganlin Zhao 已提交
157

H
Hongze Cheng 已提交
158 159
bool    getHistogramFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    histogramFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
160
int32_t histogramFunction(SqlFunctionCtx* pCtx);
161
int32_t histogramFunctionPartial(SqlFunctionCtx* pCtx);
162
int32_t histogramFunctionMerge(SqlFunctionCtx* pCtx);
163
int32_t histogramFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
164
int32_t histogramPartialFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
165
int32_t getHistogramInfoSize();
166
int32_t histogramCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
167

H
Hongze Cheng 已提交
168
bool    getHLLFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
G
Ganlin Zhao 已提交
169
int32_t hllFunction(SqlFunctionCtx* pCtx);
G
Ganlin Zhao 已提交
170
int32_t hllFunctionMerge(SqlFunctionCtx* pCtx);
G
Ganlin Zhao 已提交
171
int32_t hllFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
G
Ganlin Zhao 已提交
172
int32_t hllPartialFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
173
int32_t getHLLInfoSize();
174
int32_t hllCombine(SqlFunctionCtx* pDestCtx, SqlFunctionCtx* pSourceCtx);
G
Ganlin Zhao 已提交
175

H
Hongze Cheng 已提交
176 177
bool    getStateFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    stateFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
178
int32_t stateCountFunction(SqlFunctionCtx* pCtx);
179
int32_t stateDurationFunction(SqlFunctionCtx* pCtx);
180

H
Hongze Cheng 已提交
181
bool    getCsumFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
G
Ganlin Zhao 已提交
182 183
int32_t csumFunction(SqlFunctionCtx* pCtx);

H
Hongze Cheng 已提交
184 185
bool    getMavgFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    mavgFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
G
Ganlin Zhao 已提交
186 187
int32_t mavgFunction(SqlFunctionCtx* pCtx);

H
Hongze Cheng 已提交
188 189
bool    getSampleFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    sampleFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
G
Ganlin Zhao 已提交
190
int32_t sampleFunction(SqlFunctionCtx* pCtx);
191
int32_t sampleFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
G
Ganlin Zhao 已提交
192

H
Hongze Cheng 已提交
193 194
bool    getTailFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    tailFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
G
Ganlin Zhao 已提交
195
int32_t tailFunction(SqlFunctionCtx* pCtx);
196

H
Hongze Cheng 已提交
197 198 199
bool    getUniqueFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    uniqueFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
int32_t uniqueFunction(SqlFunctionCtx* pCtx);
200

H
Hongze Cheng 已提交
201 202 203
bool    getModeFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    modeFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
int32_t modeFunction(SqlFunctionCtx* pCtx);
G
Ganlin Zhao 已提交
204 205
int32_t modeFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);

H
Hongze Cheng 已提交
206 207 208 209
bool    getTwaFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool    twaFunctionSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
int32_t twaFunction(SqlFunctionCtx* pCtx);
int32_t twaFinalize(struct SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
G
Ganlin Zhao 已提交
210

211
bool getSelectivityFuncEnv(SFunctionNode* pFunc, SFuncExecEnv* pEnv);
212

H
Hongze Cheng 已提交
213 214
bool    blockDistSetup(SqlFunctionCtx* pCtx, SResultRowEntryInfo* pResultInfo);
int32_t blockDistFunction(SqlFunctionCtx* pCtx);
215
int32_t blockDistFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
216

H
Hongze Cheng 已提交
217
bool    getGroupKeyFuncEnv(SFunctionNode* pFunc, SFuncExecEnv* pEnv);
218
int32_t groupKeyFunction(SqlFunctionCtx* pCtx);
G
Ganlin Zhao 已提交
219
int32_t groupKeyFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
220

H
Haojun Liao 已提交
221 222 223 224
#ifdef __cplusplus
}
#endif
#endif  // TDENGINE_BUILTINSIMPL_H