executor.h 6.5 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"
D
dapan1121 已提交
26

H
Haojun Liao 已提交
27
typedef void* qTaskInfo_t;
H
Haojun Liao 已提交
28
typedef void* DataSinkHandle;
S
Shengliang 已提交
29
struct SRpcMsg;
H
Haojun Liao 已提交
30 31
struct SSubplan;

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

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

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

L
Liu Jicong 已提交
54
  void* sContext;  // SSnapContext*
wmmhello's avatar
wmmhello 已提交
55

L
Liu Jicong 已提交
56
  void* pStateBackend;
H
Haojun Liao 已提交
57
} SReadHandle;
58

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

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

L
Liu Jicong 已提交
75
/**
L
Liu Jicong 已提交
76 77 78
 * Create the exec task for queue mode
 * @param pMsg
 * @param SReadHandle
L
Liu Jicong 已提交
79 80
 * @return
 */
D
dapan1121 已提交
81 82 83 84 85 86 87 88 89
qTaskInfo_t qCreateQueueExecTaskInfo(void* msg, SReadHandle* pReaderHandle, int32_t vgId, int32_t* numOfCols, SSchemaWrapper** pSchema);

/**
 * 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 已提交
90

L
Liu Jicong 已提交
91
int32_t qSetStreamOpOpen(qTaskInfo_t tinfo);
H
Haojun Liao 已提交
92 93 94 95 96 97 98 99
/**
 * Set multiple input data blocks for the stream scan.
 * @param tinfo
 * @param pBlocks
 * @param numOfInputBlock
 * @param type
 * @return
 */
L
Liu Jicong 已提交
100
int32_t qSetMultiStreamInput(qTaskInfo_t tinfo, const void* pBlocks, size_t numOfBlocks, int32_t type);
H
Haojun Liao 已提交
101

L
Liu Jicong 已提交
102 103 104 105 106 107 108 109 110 111
/**
 * 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);

112 113 114 115 116 117 118 119
/**
 * Update the table id list, add or remove.
 *
 * @param tinfo
 * @param id
 * @param isAdd
 * @return
 */
120
int32_t qUpdateQualifiedTableId(qTaskInfo_t tinfo, const SArray* tableIdList, bool isAdd);
121

L
Liu Jicong 已提交
122 123 124 125 126 127 128 129 130 131
/**
 * 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 已提交
132
                        qTaskInfo_t* pTaskInfo, DataSinkHandle* handle, char* sql, EOPTR_EXEC_MODEL model);
H
Haojun Liao 已提交
133

134 135 136 137 138 139 140
/**
 *
 * @param tinfo
 * @param sversion
 * @param tversion
 * @return
 */
141
int32_t qGetQueryTableSchemaVersion(qTaskInfo_t tinfo, char* dbName, char* tableName, int32_t* sversion,
L
Liu Jicong 已提交
142
                                    int32_t* tversion);
143

H
Haojun Liao 已提交
144
/**
H
Haojun Liao 已提交
145
 * The main task execution function, including query on both table and multiple tables,
H
Haojun Liao 已提交
146 147
 * which are decided according to the tag or table name query conditions
 *
H
Haojun Liao 已提交
148 149
 * @param tinfo
 * @param handle
H
Haojun Liao 已提交
150 151
 * @return
 */
L
Liu Jicong 已提交
152

153
int32_t qExecTaskOpt(qTaskInfo_t tinfo, SArray* pResList, uint64_t* useconds, bool* hasMore, SLocalFetch* pLocal);
H
Haojun Liao 已提交
154

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

H
Haojun Liao 已提交
157 158
void qCleanExecTaskBlockBuf(qTaskInfo_t tinfo);

D
dapan1121 已提交
159 160
/**
 * kill the ongoing query asynchronously
H
Haojun Liao 已提交
161
 * @param tinfo  qhandle
D
dapan1121 已提交
162 163
 * @return
 */
D
dapan1121 已提交
164
int32_t qAsyncKillTask(qTaskInfo_t tinfo, int32_t rspCode);
D
dapan1121 已提交
165

166 167
bool qTaskIsExecuting(qTaskInfo_t qinfo);

H
Haojun Liao 已提交
168 169 170 171
/**
 * destroy query info structure
 * @param qHandle
 */
H
Haojun Liao 已提交
172
void qDestroyTask(qTaskInfo_t tinfo);
H
Haojun Liao 已提交
173 174 175 176 177 178 179 180 181

/**
 * Extract the qualified table id list, and than pass them to the TSDB driver to load the required table data blocks.
 *
 * @param iter  the table iterator to traverse all tables belongs to a super table, or an invert index
 * @return
 */
int32_t qGetQualifiedTableIdList(void* pTableList, const char* tagCond, int32_t tagCondLen, SArray* pTableIdList);

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

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

186 187 188 189
int32_t qSerializeTaskStatus(qTaskInfo_t tinfo, char** pOutput, int32_t* len);

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

190
STimeWindow getAlignQueryTimeWindow(SInterval* pInterval, int32_t precision, int64_t key);
191 192 193 194 195 196 197 198 199
/**
 * 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);

L
Liu Jicong 已提交
200 201
int32_t qStreamPrepareTsdbScan(qTaskInfo_t tinfo, uint64_t uid, int64_t ts);

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

L
Liu Jicong 已提交
204 205
// int32_t qStreamScanMemData(qTaskInfo_t tinfo, const SSubmitReq* pReq, int64_t ver);
//
L
Liu Jicong 已提交
206
int32_t qStreamSetScanMemData(qTaskInfo_t tinfo, SPackedData submit);
L
Liu Jicong 已提交
207

L
Liu Jicong 已提交
208 209
int32_t qStreamExtractOffset(qTaskInfo_t tinfo, STqOffsetVal* pOffset);

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

wmmhello's avatar
wmmhello 已提交
212 213 214 215 216 217
int64_t qStreamExtractPrepareUid(qTaskInfo_t tinfo);

const SSchemaWrapper* qExtractSchemaFromTask(qTaskInfo_t tinfo);

const char* qExtractTbnameFromTask(qTaskInfo_t tinfo);

L
Liu Jicong 已提交
218 219
void* qExtractReaderFromStreamScanner(void* scanner);

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

L
Liu Jicong 已提交
222 223
int32_t qStreamInput(qTaskInfo_t tinfo, void* pItem);

224 225 226 227 228
int32_t qStreamSetParamForRecover(qTaskInfo_t tinfo);
int32_t qStreamSourceRecoverStep1(qTaskInfo_t tinfo, int64_t ver);
int32_t qStreamSourceRecoverStep2(qTaskInfo_t tinfo, int64_t ver);
int32_t qStreamRecoverFinish(qTaskInfo_t tinfo);
int32_t qStreamRestoreParam(qTaskInfo_t tinfo);
L
Liu Jicong 已提交
229
bool    qStreamRecoverScanFinished(qTaskInfo_t tinfo);
L
Liu Jicong 已提交
230
void    qStreamCloseTsdbReader(void* task);
5
54liuyao 已提交
231
void    resetTaskInfo(qTaskInfo_t tinfo);
H
Haojun Liao 已提交
232

H
Hongze Cheng 已提交
233 234 235 236
#ifdef __cplusplus
}
#endif

237
#endif /*_TD_EXECUTOR_H_*/