executor.h 6.9 KB
Newer Older
H
Hongze Cheng 已提交
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_EXECUTOR_H_
#define _TD_EXECUTOR_H_

#ifdef __cplusplus
extern "C" {
#endif

D
dapan1121 已提交
23
#include "query.h"
L
Liu Jicong 已提交
24
#include "tcommon.h"
25
#include "tmsgcb.h"
26
#include "storageapi.h"
D
dapan1121 已提交
27

H
Haojun Liao 已提交
28
typedef void* qTaskInfo_t;
H
Haojun Liao 已提交
29
typedef void* DataSinkHandle;
30

S
Shengliang 已提交
31
struct SRpcMsg;
H
Haojun Liao 已提交
32 33
struct SSubplan;

L
Liu Jicong 已提交
34
typedef int32_t (*localFetchFp)(void*, uint64_t, uint64_t, uint64_t, int64_t, int32_t, void**, SArray*);
D
dapan1121 已提交
35 36

typedef struct {
L
Liu Jicong 已提交
37
  void*        handle;
D
dapan1121 已提交
38
  bool         localExec;
D
dapan1121 已提交
39
  localFetchFp fp;
L
Liu Jicong 已提交
40
  SArray*      explainRes;
D
dapan1121 已提交
41 42
} SLocalFetch;

43
typedef struct {
L
Liu Jicong 已提交
44
  void*   tqReader;
45 46 47 48
  void*   config;
  void*   vnode;
  void*   mnd;
  SMsgCb* pMsgCb;
49
  int64_t version;
50 51
  bool    initMetaReader;
  bool    initTableReader;
L
Liu Jicong 已提交
52
  bool    initTqReader;
5
54liuyao 已提交
53
  int32_t numOfVgroups;
54
  void*   sContext;  // SSnapContext*
55

56
  void*   pStateBackend;
57
  struct SStorageAPI api;
L
liuyao 已提交
58 59

  int8_t  fillHistory;
H
Haojun Liao 已提交
60
} SReadHandle;
61

L
Liu Jicong 已提交
62
// in queue mode, data streams are seperated by msg
63
typedef enum {
64
  OPTR_EXEC_MODEL_BATCH = 0x1,
65
  OPTR_EXEC_MODEL_STREAM = 0x2,
L
Liu Jicong 已提交
66
  OPTR_EXEC_MODEL_QUEUE = 0x3,
67 68
} EOPTR_EXEC_MODEL;

L
Liu Jicong 已提交
69
/**
L
Liu Jicong 已提交
70
 * Create the exec task for stream mode
L
Liu Jicong 已提交
71
 * @param pMsg
L
Liu Jicong 已提交
72
 * @param SReadHandle
73
 * @param vgId
L
Liu Jicong 已提交
74 75
 * @return
 */
76
qTaskInfo_t qCreateStreamExecTaskInfo(void* msg, SReadHandle* readers, int32_t vgId);
77

L
Liu Jicong 已提交
78
/**
L
Liu Jicong 已提交
79 80 81
 * Create the exec task for queue mode
 * @param pMsg
 * @param SReadHandle
L
Liu Jicong 已提交
82 83
 * @return
 */
X
Xiaoyu Wang 已提交
84 85
qTaskInfo_t qCreateQueueExecTaskInfo(void* msg, SReadHandle* pReaderHandle, int32_t vgId, int32_t* numOfCols,
                                     uint64_t id);
L
Liu Jicong 已提交
86

wmmhello's avatar
wmmhello 已提交
87
int32_t qGetTableList(int64_t suid, void* pVnode, void* node, SArray **tableList, void* pTaskInfo);
88

H
Haojun Liao 已提交
89 90 91 92 93 94 95
/**
 * set the task Id, usually used by message queue process
 * @param tinfo
 * @param taskId
 * @param queryId
 */
void qSetTaskId(qTaskInfo_t tinfo, uint64_t taskId, uint64_t queryId);
L
Liu Jicong 已提交
96

wmmhello's avatar
wmmhello 已提交
97
//void qSetTaskCode(qTaskInfo_t tinfo, int32_t code);
98

L
Liu Jicong 已提交
99
int32_t qSetStreamOpOpen(qTaskInfo_t tinfo);
100

101
// todo refactor
L
liuyao 已提交
102
void qGetCheckpointVersion(qTaskInfo_t tinfo, int64_t* dataVer, int64_t* ckId);
103

H
Haojun Liao 已提交
104 105 106 107 108 109 110 111
/**
 * Set multiple input data blocks for the stream scan.
 * @param tinfo
 * @param pBlocks
 * @param numOfInputBlock
 * @param type
 * @return
 */
L
Liu Jicong 已提交
112
int32_t qSetMultiStreamInput(qTaskInfo_t tinfo, const void* pBlocks, size_t numOfBlocks, int32_t type);
H
Haojun Liao 已提交
113

L
Liu Jicong 已提交
114 115 116 117 118 119 120 121 122 123
/**
 * Set block for sma
 * @param tinfo
 * @param pBlocks
 * @param numOfInputBlock
 * @param type
 * @return
 */
int32_t qSetSMAInput(qTaskInfo_t tinfo, const void* pBlocks, size_t numOfBlocks, int32_t type);

124 125 126 127 128 129 130 131
/**
 * Update the table id list, add or remove.
 *
 * @param tinfo
 * @param id
 * @param isAdd
 * @return
 */
132
int32_t qUpdateTableListForStreamScanner(qTaskInfo_t tinfo, const SArray* tableIdList, bool isAdd);
133

L
Liu Jicong 已提交
134 135 136 137 138 139 140 141 142 143
/**
 * Create the exec task object according to task json
 * @param readHandle
 * @param vgId
 * @param pTaskInfoMsg
 * @param pTaskInfo
 * @param qId
 * @return
 */
int32_t qCreateExecTask(SReadHandle* readHandle, int32_t vgId, uint64_t taskId, struct SSubplan* pPlan,
D
dapan1121 已提交
144
                        qTaskInfo_t* pTaskInfo, DataSinkHandle* handle, char* sql, EOPTR_EXEC_MODEL model);
H
Haojun Liao 已提交
145

146 147 148 149 150 151 152
/**
 *
 * @param tinfo
 * @param sversion
 * @param tversion
 * @return
 */
153
int32_t qGetQueryTableSchemaVersion(qTaskInfo_t tinfo, char* dbName, char* tableName, int32_t* sversion,
L
Liu Jicong 已提交
154
                                    int32_t* tversion);
155

H
Haojun Liao 已提交
156
/**
H
Haojun Liao 已提交
157
 * The main task execution function, including query on both table and multiple tables,
H
Haojun Liao 已提交
158 159
 * which are decided according to the tag or table name query conditions
 *
H
Haojun Liao 已提交
160 161
 * @param tinfo
 * @param handle
H
Haojun Liao 已提交
162 163
 * @return
 */
164
int32_t qExecTaskOpt(qTaskInfo_t tinfo, SArray* pResList, uint64_t* useconds, bool* hasMore, SLocalFetch* pLocal);
H
Haojun Liao 已提交
165

166
int32_t qExecTask(qTaskInfo_t tinfo, SSDataBlock** pBlock, uint64_t* useconds);
H
Haojun Liao 已提交
167

H
Haojun Liao 已提交
168 169
void qCleanExecTaskBlockBuf(qTaskInfo_t tinfo);

D
dapan1121 已提交
170 171
/**
 * kill the ongoing query asynchronously
H
Haojun Liao 已提交
172
 * @param tinfo  qhandle
D
dapan1121 已提交
173 174
 * @return
 */
D
dapan1121 已提交
175
int32_t qAsyncKillTask(qTaskInfo_t tinfo, int32_t rspCode);
176

177
int32_t qKillTask(qTaskInfo_t tinfo, int32_t rspCode);
D
dapan1121 已提交
178

179 180
bool qTaskIsExecuting(qTaskInfo_t qinfo);

H
Haojun Liao 已提交
181 182 183 184
/**
 * destroy query info structure
 * @param qHandle
 */
H
Haojun Liao 已提交
185
void qDestroyTask(qTaskInfo_t tinfo);
H
Haojun Liao 已提交
186

D
dapan1121 已提交
187
void qProcessRspMsg(void* parent, struct SRpcMsg* pMsg, struct SEpSet* pEpSet);
S
Shengliang 已提交
188

189
int32_t qGetExplainExecInfo(qTaskInfo_t tinfo, SArray* pExecInfoList /*,int32_t* resNum, SExplainExecInfo** pRes*/);
D
dapan1121 已提交
190

191 192 193 194
int32_t qSerializeTaskStatus(qTaskInfo_t tinfo, char** pOutput, int32_t* len);

int32_t qDeserializeTaskStatus(qTaskInfo_t tinfo, const char* pInput, int32_t len);

195 196 197
void getNextTimeWindow(const SInterval* pInterval, STimeWindow* tw, int32_t order);
void getInitialStartTimeWindow(SInterval* pInterval, TSKEY ts, STimeWindow* w, bool ascQuery);
STimeWindow getAlignQueryTimeWindow(const SInterval* pInterval, int64_t key);
198 199 200 201 202 203 204 205 206
/**
 * return the scan info, in the form of tuple of two items, including table uid and current timestamp
 * @param tinfo
 * @param uid
 * @param ts
 * @return
 */
int32_t qGetStreamScanStatus(qTaskInfo_t tinfo, uint64_t* uid, int64_t* ts);

207
SArray* qGetQueriedTableListInfo(qTaskInfo_t tinfo);
L
Liu Jicong 已提交
208

209
int32_t qStreamPrepareScan(qTaskInfo_t tinfo, STqOffsetVal* pOffset, int8_t subType);
L
Liu Jicong 已提交
210

211 212
void qStreamSetOpen(qTaskInfo_t tinfo);

213
void qStreamExtractOffset(qTaskInfo_t tinfo, STqOffsetVal* pOffset);
L
Liu Jicong 已提交
214

wmmhello's avatar
wmmhello 已提交
215
SMqMetaRsp* qStreamExtractMetaMsg(qTaskInfo_t tinfo);
L
Liu Jicong 已提交
216

wmmhello's avatar
wmmhello 已提交
217 218 219 220
const SSchemaWrapper* qExtractSchemaFromTask(qTaskInfo_t tinfo);

const char* qExtractTbnameFromTask(qTaskInfo_t tinfo);

L
Liu Jicong 已提交
221 222
void* qExtractReaderFromStreamScanner(void* scanner);

L
Liu Jicong 已提交
223 224
int32_t qExtractStreamScanner(qTaskInfo_t tinfo, void** scanner);

225
int32_t qSetStreamOperatorOptionForScanHistory(qTaskInfo_t tinfo);
L
liuyao 已提交
226 227
int32_t qStreamSourceScanParamForHistoryScanStep1(qTaskInfo_t tinfo, SVersionRange *pVerRange, STimeWindow* pWindow);
int32_t qStreamSourceScanParamForHistoryScanStep2(qTaskInfo_t tinfo, SVersionRange *pVerRange, STimeWindow* pWindow);
228 229
int32_t qStreamSourceRecoverStep2(qTaskInfo_t tinfo, int64_t ver);
int32_t qStreamRecoverFinish(qTaskInfo_t tinfo);
230
int32_t qRestoreStreamOperatorOption(qTaskInfo_t tinfo);
L
Liu Jicong 已提交
231
bool    qStreamRecoverScanFinished(qTaskInfo_t tinfo);
L
liuyao 已提交
232 233 234
bool    qStreamRecoverScanStep1Finished(qTaskInfo_t tinfo);
bool    qStreamRecoverScanStep2Finished(qTaskInfo_t tinfo);
int32_t qStreamRecoverSetAllStepFinished(qTaskInfo_t tinfo);
L
Liu Jicong 已提交
235
void    qStreamCloseTsdbReader(void* task);
5
54liuyao 已提交
236
void    resetTaskInfo(qTaskInfo_t tinfo);
H
Haojun Liao 已提交
237

L
liuyao 已提交
238 239 240
int32_t qStreamOperatorReleaseState(qTaskInfo_t tInfo);
int32_t qStreamOperatorReloadState(qTaskInfo_t tInfo);

H
Hongze Cheng 已提交
241 242 243 244
#ifdef __cplusplus
}
#endif

245
#endif /*_TD_EXECUTOR_H_*/