executor.h 5.0 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

H
Haojun Liao 已提交
23
typedef void* qTaskInfo_t;
H
Haojun Liao 已提交
24 25 26
typedef void* DataSinkHandle;
struct SSubplan;

H
Haojun Liao 已提交
27

28 29 30 31 32 33 34 35 36 37
 /**
  * Create the exec task object according to task json
  * @param tsdb
  * @param vgId
  * @param pTaskInfoMsg
  * @param pTaskInfo
  * @param qId
  * @return
  */
int32_t qCreateExecTask(void* tsdb, int32_t vgId, struct SSubplan* pPlan, qTaskInfo_t* pTaskInfo);
H
Haojun Liao 已提交
38 39

/**
H
Haojun Liao 已提交
40
 * The main task execution function, including query on both table and multiple tables,
H
Haojun Liao 已提交
41 42
 * which are decided according to the tag or table name query conditions
 *
H
Haojun Liao 已提交
43 44
 * @param tinfo
 * @param handle
H
Haojun Liao 已提交
45 46
 * @return
 */
47
struct SSDataBlock* qExecTask(qTaskInfo_t tinfo, DataSinkHandle* handle);
H
Haojun Liao 已提交
48 49 50 51 52 53 54 55 56

/**
 * 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.
 *
 * @param qinfo
 * @return
 */
H
Haojun Liao 已提交
57
int32_t qRetrieveQueryResultInfo(qTaskInfo_t qinfo, bool* buildRes, void* pRspContext);
H
Haojun Liao 已提交
58 59 60 61 62 63 64 65 66 67 68

/**
 *
 * Retrieve the actual results to fill the response message payload.
 * Note that this function must be executed after qRetrieveQueryResultInfo is invoked.
 *
 * @param qinfo  qinfo object
 * @param pRsp    response message
 * @param contLen payload length
 * @return
 */
H
Haojun Liao 已提交
69
//int32_t qDumpRetrieveResult(qTaskInfo_t qinfo, SRetrieveTableRsp** pRsp, int32_t* contLen, bool* continueExec);
H
Haojun Liao 已提交
70 71 72 73 74 75

/**
 * return the transporter context (RPC)
 * @param qinfo
 * @return
 */
H
Haojun Liao 已提交
76
void* qGetResultRetrieveMsg(qTaskInfo_t qinfo);
H
Haojun Liao 已提交
77 78 79 80 81 82

/**
 * kill the ongoing query and free the query handle and corresponding resources automatically
 * @param qinfo  qhandle
 * @return
 */
H
Haojun Liao 已提交
83
int32_t qKillTask(qTaskInfo_t qinfo);
H
Haojun Liao 已提交
84 85 86 87 88 89

/**
 * return whether query is completed or not
 * @param qinfo
 * @return
 */
90
int32_t qIsTaskCompleted(qTaskInfo_t qinfo);
H
Haojun Liao 已提交
91 92 93 94 95

/**
 * destroy query info structure
 * @param qHandle
 */
H
Haojun Liao 已提交
96
void qDestroyTask(qTaskInfo_t qHandle);
H
Haojun Liao 已提交
97 98 99 100 101 102

/**
 * Get the queried table uid
 * @param qHandle
 * @return
 */
H
Haojun Liao 已提交
103
int64_t qGetQueriedTableUid(qTaskInfo_t qHandle);
H
Haojun Liao 已提交
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121

/**
 * 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
 */
122
//int32_t qCreateTableGroupByGroupExpr(SArray* pTableIdList, TSKEY skey, STableGroupInfo groupInfo, SColIndex* groupByIndex, int32_t numOfIndex);
H
Haojun Liao 已提交
123 124 125 126 127 128 129

/**
 * Update the table id list of a given query.
 * @param uid   child table uid
 * @param type  operation type: ADD|DROP
 * @return
 */
H
Haojun Liao 已提交
130
int32_t qUpdateQueriedTableIdList(qTaskInfo_t qinfo, int64_t uid, int32_t type);
H
Haojun Liao 已提交
131 132 133 134 135 136 137 138

//================================================================================================
// query handle management
/**
 * Query handle mgmt object
 * @param vgId
 * @return
 */
H
Haojun Liao 已提交
139
void* qOpenTaskMgmt(int32_t vgId);
H
Haojun Liao 已提交
140 141 142 143 144

/**
 * broadcast the close information and wait for all query stop.
 * @param pExecutor
 */
H
Haojun Liao 已提交
145
void  qTaskMgmtNotifyClosing(void* pExecutor);
H
Haojun Liao 已提交
146 147 148 149 150 151 152 153 154 155 156

/**
 * 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 已提交
157
void  qCleanupTaskMgmt(void* pExecutor);
H
Haojun Liao 已提交
158 159 160 161 162 163 164 165

/**
 * Add the query into the query mgmt object
 * @param pMgmt
 * @param qId
 * @param qInfo
 * @return
 */
H
Haojun Liao 已提交
166
void** qRegisterTask(void* pMgmt, uint64_t qId, void *qInfo);
H
Haojun Liao 已提交
167 168 169 170 171 172 173

/**
 * acquire the query handle according to the key from query mgmt object.
 * @param pMgmt
 * @param key
 * @return
 */
H
Haojun Liao 已提交
174
void** qAcquireTask(void* pMgmt, uint64_t key);
H
Haojun Liao 已提交
175 176 177 178 179 180 181 182

/**
 * release the query handle and decrease the reference count in cache
 * @param pMgmt
 * @param pQInfo
 * @param freeHandle
 * @return
 */
H
Haojun Liao 已提交
183
void** qReleaseTask(void* pMgmt, void* pQInfo, bool freeHandle);
H
Haojun Liao 已提交
184 185 186 187 188 189 190 191 192

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

H
Hongze Cheng 已提交
193 194 195 196 197
#ifdef __cplusplus
}
#endif

#endif /*_TD_EXECUTOR_H_*/