executor.h 5.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 24
#include "common.h"

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

H
Haojun Liao 已提交
30 31 32 33
typedef struct SReadHandle {
  void* reader;
  void* meta;
} SReadHandle;
34

35 36 37
 /**
  * Create the exec task for streaming mode
  * @param pMsg
H
Haojun Liao 已提交
38
  * @param streamReadHandle
39 40
  * @return
  */
L
Liu Jicong 已提交
41
qTaskInfo_t qCreateStreamExecTaskInfo(void *msg, void* streamReadHandle);
42

H
Haojun Liao 已提交
43
/**
44
 * Set the input data block for the stream scan.
H
Haojun Liao 已提交
45 46 47 48
 * @param tinfo
 * @param input
 * @return
 */
H
Haojun Liao 已提交
49
int32_t qSetStreamInput(qTaskInfo_t tinfo, const void* input);
H
Haojun Liao 已提交
50

51 52 53 54 55 56 57 58
/**
 * Update the table id list, add or remove.
 *
 * @param tinfo
 * @param id
 * @param isAdd
 * @return
 */
H
Haojun Liao 已提交
59
int32_t qUpdateQualifiedTableId(qTaskInfo_t tinfo, SArray* tableIdList, bool isAdd);
60

61 62
 /**
  * Create the exec task object according to task json
H
Haojun Liao 已提交
63
  * @param readHandle
64 65 66 67 68 69
  * @param vgId
  * @param pTaskInfoMsg
  * @param pTaskInfo
  * @param qId
  * @return
  */
H
Haojun Liao 已提交
70
int32_t qCreateExecTask(SReadHandle* readHandle, int32_t vgId, uint64_t taskId, struct SSubplan* pPlan, qTaskInfo_t* pTaskInfo, DataSinkHandle* handle);
H
Haojun Liao 已提交
71 72

/**
H
Haojun Liao 已提交
73
 * The main task execution function, including query on both table and multiple tables,
H
Haojun Liao 已提交
74 75
 * which are decided according to the tag or table name query conditions
 *
H
Haojun Liao 已提交
76 77
 * @param tinfo
 * @param handle
H
Haojun Liao 已提交
78 79
 * @return
 */
D
dapan1121 已提交
80
int32_t qExecTask(qTaskInfo_t tinfo, SSDataBlock** pRes, uint64_t *useconds);
H
Haojun Liao 已提交
81 82 83 84 85 86

/**
 * Retrieve the produced results information, if current query is not paused or completed,
 * this function will be blocked to wait for the query execution completed or paused,
 * in which case enough results have been produced already.
 *
H
Haojun Liao 已提交
87
 * @param tinfo
H
Haojun Liao 已提交
88 89
 * @return
 */
H
Haojun Liao 已提交
90
int32_t qRetrieveQueryResultInfo(qTaskInfo_t tinfo, bool* buildRes, void* pRspContext);
H
Haojun Liao 已提交
91 92 93 94 95 96

/**
 *
 * Retrieve the actual results to fill the response message payload.
 * Note that this function must be executed after qRetrieveQueryResultInfo is invoked.
 *
H
Haojun Liao 已提交
97
 * @param tinfo  tinfo object
H
Haojun Liao 已提交
98 99 100 101
 * @param pRsp    response message
 * @param contLen payload length
 * @return
 */
H
Haojun Liao 已提交
102
//int32_t qDumpRetrieveResult(qTaskInfo_t tinfo, SRetrieveTableRsp** pRsp, int32_t* contLen, bool* continueExec);
H
Haojun Liao 已提交
103 104 105

/**
 * return the transporter context (RPC)
H
Haojun Liao 已提交
106
 * @param tinfo
H
Haojun Liao 已提交
107 108
 * @return
 */
H
Haojun Liao 已提交
109
void* qGetResultRetrieveMsg(qTaskInfo_t tinfo);
H
Haojun Liao 已提交
110 111 112

/**
 * kill the ongoing query and free the query handle and corresponding resources automatically
H
Haojun Liao 已提交
113
 * @param tinfo  qhandle
H
Haojun Liao 已提交
114 115
 * @return
 */
H
Haojun Liao 已提交
116
int32_t qKillTask(qTaskInfo_t tinfo);
H
Haojun Liao 已提交
117

D
dapan1121 已提交
118 119
/**
 * kill the ongoing query asynchronously
H
Haojun Liao 已提交
120
 * @param tinfo  qhandle
D
dapan1121 已提交
121 122
 * @return
 */
H
Haojun Liao 已提交
123
int32_t qAsyncKillTask(qTaskInfo_t tinfo);
D
dapan1121 已提交
124

H
Haojun Liao 已提交
125 126
/**
 * return whether query is completed or not
H
Haojun Liao 已提交
127
 * @param tinfo
H
Haojun Liao 已提交
128 129
 * @return
 */
H
Haojun Liao 已提交
130
int32_t qIsTaskCompleted(qTaskInfo_t tinfo);
H
Haojun Liao 已提交
131 132 133 134 135

/**
 * destroy query info structure
 * @param qHandle
 */
H
Haojun Liao 已提交
136
void qDestroyTask(qTaskInfo_t tinfo);
H
Haojun Liao 已提交
137 138 139 140 141 142

/**
 * Get the queried table uid
 * @param qHandle
 * @return
 */
H
Haojun Liao 已提交
143
int64_t qGetQueriedTableUid(qTaskInfo_t tinfo);
H
Haojun Liao 已提交
144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161

/**
 * 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);

/**
 * Create the table group according to the group by tags info
 * @param pTableIdList
 * @param skey
 * @param groupInfo
 * @param groupByIndex
 * @param numOfIndex
 * @return
 */
162
//int32_t qCreateTableGroupByGroupExpr(SArray* pTableIdList, TSKEY skey, STableGroupInfo groupInfo, SColIndex* groupByIndex, int32_t numOfIndex);
H
Haojun Liao 已提交
163 164 165 166 167 168 169

/**
 * Update the table id list of a given query.
 * @param uid   child table uid
 * @param type  operation type: ADD|DROP
 * @return
 */
H
Haojun Liao 已提交
170
int32_t qUpdateQueriedTableIdList(qTaskInfo_t tinfo, int64_t uid, int32_t type);
H
Haojun Liao 已提交
171 172 173 174 175 176 177 178

//================================================================================================
// query handle management
/**
 * Query handle mgmt object
 * @param vgId
 * @return
 */
H
Haojun Liao 已提交
179
void* qOpenTaskMgmt(int32_t vgId);
H
Haojun Liao 已提交
180 181 182 183 184

/**
 * broadcast the close information and wait for all query stop.
 * @param pExecutor
 */
H
Haojun Liao 已提交
185
void  qTaskMgmtNotifyClosing(void* pExecutor);
H
Haojun Liao 已提交
186 187 188 189 190 191 192 193 194 195 196

/**
 * Re-open the query handle management module when opening the vnode again.
 * @param pExecutor
 */
void  qQueryMgmtReOpen(void *pExecutor);

/**
 * Close query mgmt and clean up resources.
 * @param pExecutor
 */
H
Haojun Liao 已提交
197
void  qCleanupTaskMgmt(void* pExecutor);
H
Haojun Liao 已提交
198 199 200 201 202 203 204 205

/**
 * Add the query into the query mgmt object
 * @param pMgmt
 * @param qId
 * @param qInfo
 * @return
 */
H
Haojun Liao 已提交
206
void** qRegisterTask(void* pMgmt, uint64_t qId, void *qInfo);
H
Haojun Liao 已提交
207 208 209 210 211 212 213

/**
 * acquire the query handle according to the key from query mgmt object.
 * @param pMgmt
 * @param key
 * @return
 */
H
Haojun Liao 已提交
214
void** qAcquireTask(void* pMgmt, uint64_t key);
H
Haojun Liao 已提交
215 216 217 218 219 220 221 222

/**
 * release the query handle and decrease the reference count in cache
 * @param pMgmt
 * @param pQInfo
 * @param freeHandle
 * @return
 */
H
Haojun Liao 已提交
223
void** qReleaseTask(void* pMgmt, void* pQInfo, bool freeHandle);
H
Haojun Liao 已提交
224 225 226 227 228 229 230 231 232

/**
 * De-register the query handle from the management module and free it immediately.
 * @param pMgmt
 * @param pQInfo
 * @return
 */
void** qDeregisterQInfo(void* pMgmt, void* pQInfo);

S
Shengliang Guan 已提交
233
void qProcessFetchRsp(void* parent, struct SRpcMsg* pMsg, struct SEpSet* pEpSet);
S
Shengliang 已提交
234

H
Hongze Cheng 已提交
235 236 237 238
#ifdef __cplusplus
}
#endif

239
#endif /*_TD_EXECUTOR_H_*/