builtinsimpl.h 5.8 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 26

bool functionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
27
int32_t functionFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
28
int32_t dummyProcess(SqlFunctionCtx* UNUSED_PARAM(pCtx));
29
int32_t functionFinalizeWithResultBuf(SqlFunctionCtx* pCtx, SSDataBlock* pBlock, char* finalResult);
H
Haojun Liao 已提交
30

31
EFuncDataRequired countDataRequired(SFunctionNode* pFunc, STimeWindow* pTimeWindow);
32
bool getCountFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
H
Haojun Liao 已提交
33
int32_t countFunction(SqlFunctionCtx *pCtx);
5
54liuyao 已提交
34
int32_t countInvertFunction(SqlFunctionCtx *pCtx);
H
Haojun Liao 已提交
35

36
EFuncDataRequired statisDataRequired(SFunctionNode* pFunc, STimeWindow* pTimeWindow);
37
bool getSumFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
H
Haojun Liao 已提交
38
int32_t sumFunction(SqlFunctionCtx *pCtx);
5
54liuyao 已提交
39
int32_t sumInvertFunction(SqlFunctionCtx *pCtx);
H
Haojun Liao 已提交
40

41
bool minmaxFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
42
bool getMinmaxFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
H
Haojun Liao 已提交
43 44
int32_t minFunction(SqlFunctionCtx* pCtx);
int32_t maxFunction(SqlFunctionCtx *pCtx);
45
int32_t minmaxFunctionFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
46

G
Ganlin Zhao 已提交
47 48 49
bool getAvgFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool avgFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
int32_t avgFunction(SqlFunctionCtx* pCtx);
H
Haojun Liao 已提交
50
int32_t avgFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
5
54liuyao 已提交
51
int32_t avgInvertFunction(SqlFunctionCtx* pCtx);
G
Ganlin Zhao 已提交
52

53
bool getStddevFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
H
Haojun Liao 已提交
54
bool stddevFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
H
Haojun Liao 已提交
55
int32_t stddevFunction(SqlFunctionCtx* pCtx);
56
int32_t stddevFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
5
54liuyao 已提交
57
int32_t stddevInvertFunction(SqlFunctionCtx* pCtx);
H
Haojun Liao 已提交
58

59 60 61 62 63 64
bool getLeastSQRFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool leastSQRFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
int32_t leastSQRFunction(SqlFunctionCtx* pCtx);
int32_t leastSQRFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
int32_t leastSQRInvertFunction(SqlFunctionCtx* pCtx);

H
Haojun Liao 已提交
65 66
bool getPercentileFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool percentileFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
H
Haojun Liao 已提交
67
int32_t percentileFunction(SqlFunctionCtx *pCtx);
68
int32_t percentileFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
H
Haojun Liao 已提交
69

H
Haojun Liao 已提交
70 71 72
bool getDiffFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool diffFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResInfo);
int32_t diffFunction(SqlFunctionCtx *pCtx);
H
Haojun Liao 已提交
73

H
Haojun Liao 已提交
74 75 76
bool getFirstLastFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
int32_t firstFunction(SqlFunctionCtx *pCtx);
int32_t lastFunction(SqlFunctionCtx *pCtx);
H
Haojun Liao 已提交
77

78 79
bool getTopBotFuncEnv(SFunctionNode* UNUSED_PARAM(pFunc), SFuncExecEnv* pEnv);
int32_t topFunction(SqlFunctionCtx *pCtx);
80
int32_t bottomFunction(SqlFunctionCtx *pCtx);
81
int32_t topBotFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
82

G
Ganlin Zhao 已提交
83 84 85 86 87
bool getSpreadFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool spreadFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
int32_t spreadFunction(SqlFunctionCtx* pCtx);
int32_t spreadFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);

G
Ganlin Zhao 已提交
88 89 90 91 92
bool getElapsedFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool elapsedFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
int32_t elapsedFunction(SqlFunctionCtx* pCtx);
int32_t elapsedFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);

93 94 95 96 97
bool getHistogramFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool histogramFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
int32_t histogramFunction(SqlFunctionCtx* pCtx);
int32_t histogramFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);

G
Ganlin Zhao 已提交
98 99 100 101
bool getHLLFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
int32_t hllFunction(SqlFunctionCtx* pCtx);
int32_t hllFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);

102 103 104
bool getStateFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool stateFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
int32_t stateCountFunction(SqlFunctionCtx* pCtx);
105
int32_t stateDurationFunction(SqlFunctionCtx* pCtx);
106

G
Ganlin Zhao 已提交
107 108 109
bool getCsumFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
int32_t csumFunction(SqlFunctionCtx* pCtx);

G
Ganlin Zhao 已提交
110
bool getMavgFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
G
Ganlin Zhao 已提交
111
bool mavgFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
G
Ganlin Zhao 已提交
112 113
int32_t mavgFunction(SqlFunctionCtx* pCtx);

G
Ganlin Zhao 已提交
114 115 116
bool getSampleFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool sampleFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
int32_t sampleFunction(SqlFunctionCtx* pCtx);
G
Ganlin Zhao 已提交
117 118 119 120 121 122
//int32_t sampleFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);

bool getTailFuncEnv(struct SFunctionNode* pFunc, SFuncExecEnv* pEnv);
bool tailFunctionSetup(SqlFunctionCtx *pCtx, SResultRowEntryInfo* pResultInfo);
int32_t tailFunction(SqlFunctionCtx* pCtx);
int32_t tailFinalize(SqlFunctionCtx* pCtx, SSDataBlock* pBlock);
G
Ganlin Zhao 已提交
123

124 125
bool getSelectivityFuncEnv(SFunctionNode* pFunc, SFuncExecEnv* pEnv);

H
Haojun Liao 已提交
126 127 128 129
#ifdef __cplusplus
}
#endif
#endif  // TDENGINE_BUILTINSIMPL_H