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

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

H
Haojun Liao 已提交
31 32 33
typedef struct SReadHandle {
  void* reader;
  void* meta;
D
dapan1121 已提交
34
  void* config;
35
  void* vnode;
36
  void* mnd;
H
Haojun Liao 已提交
37
} SReadHandle;
38

39
#define STREAM_DATA_TYPE_SUBMIT_BLOCK 0x1
L
Liu Jicong 已提交
40
#define STREAM_DATA_TYPE_SSDATA_BLOCK 0x2
L
Liu Jicong 已提交
41

42 43 44 45 46
typedef enum {
  OPTR_EXEC_MODEL_BATCH  = 0x1,
  OPTR_EXEC_MODEL_STREAM = 0x2,
} EOPTR_EXEC_MODEL;

L
Liu Jicong 已提交
47 48 49 50 51 52 53
/**
 * Create the exec task for streaming mode
 * @param pMsg
 * @param streamReadHandle
 * @return
 */
qTaskInfo_t qCreateStreamExecTaskInfo(void* msg, void* streamReadHandle);
54

H
Haojun Liao 已提交
55
/**
56
 * Set the input data block for the stream scan.
H
Haojun Liao 已提交
57 58
 * @param tinfo
 * @param input
H
Haojun Liao 已提交
59
 * @param type
H
Haojun Liao 已提交
60 61
 * @return
 */
H
Haojun Liao 已提交
62
int32_t qSetStreamInput(qTaskInfo_t tinfo, const void* input, int32_t type);
H
Haojun Liao 已提交
63

H
Haojun Liao 已提交
64 65 66 67 68 69 70 71
/**
 * Set multiple input data blocks for the stream scan.
 * @param tinfo
 * @param pBlocks
 * @param numOfInputBlock
 * @param type
 * @return
 */
L
Liu Jicong 已提交
72
int32_t qSetMultiStreamInput(qTaskInfo_t tinfo, const void* pBlocks, size_t numOfBlocks, int32_t type);
H
Haojun Liao 已提交
73

74 75 76 77 78 79 80 81
/**
 * Update the table id list, add or remove.
 *
 * @param tinfo
 * @param id
 * @param isAdd
 * @return
 */
H
Haojun Liao 已提交
82
int32_t qUpdateQualifiedTableId(qTaskInfo_t tinfo, SArray* tableIdList, bool isAdd);
83

L
Liu Jicong 已提交
84 85 86 87 88 89 90 91 92 93
/**
 * 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,
94
                        qTaskInfo_t* pTaskInfo, DataSinkHandle* handle, EOPTR_EXEC_MODEL model);
H
Haojun Liao 已提交
95 96

/**
H
Haojun Liao 已提交
97
 * The main task execution function, including query on both table and multiple tables,
H
Haojun Liao 已提交
98 99
 * which are decided according to the tag or table name query conditions
 *
H
Haojun Liao 已提交
100 101
 * @param tinfo
 * @param handle
H
Haojun Liao 已提交
102 103
 * @return
 */
L
Liu Jicong 已提交
104
int32_t qExecTask(qTaskInfo_t tinfo, SSDataBlock** pRes, uint64_t* useconds);
H
Haojun Liao 已提交
105 106 107

/**
 * kill the ongoing query and free the query handle and corresponding resources automatically
H
Haojun Liao 已提交
108
 * @param tinfo  qhandle
H
Haojun Liao 已提交
109 110
 * @return
 */
H
Haojun Liao 已提交
111
int32_t qKillTask(qTaskInfo_t tinfo);
H
Haojun Liao 已提交
112

D
dapan1121 已提交
113 114
/**
 * kill the ongoing query asynchronously
H
Haojun Liao 已提交
115
 * @param tinfo  qhandle
D
dapan1121 已提交
116 117
 * @return
 */
H
Haojun Liao 已提交
118
int32_t qAsyncKillTask(qTaskInfo_t tinfo);
D
dapan1121 已提交
119

H
Haojun Liao 已提交
120 121
/**
 * return whether query is completed or not
H
Haojun Liao 已提交
122
 * @param tinfo
H
Haojun Liao 已提交
123 124
 * @return
 */
H
Haojun Liao 已提交
125
int32_t qIsTaskCompleted(qTaskInfo_t tinfo);
H
Haojun Liao 已提交
126 127 128 129 130

/**
 * destroy query info structure
 * @param qHandle
 */
H
Haojun Liao 已提交
131
void qDestroyTask(qTaskInfo_t tinfo);
H
Haojun Liao 已提交
132 133 134 135 136 137

/**
 * Get the queried table uid
 * @param qHandle
 * @return
 */
H
Haojun Liao 已提交
138
int64_t qGetQueriedTableUid(qTaskInfo_t tinfo);
H
Haojun Liao 已提交
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156

/**
 * 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
 */
L
Liu Jicong 已提交
157 158
// int32_t qCreateTableGroupByGroupExpr(SArray* pTableIdList, TSKEY skey, STableGroupInfo groupInfo, SColIndex*
// groupByIndex, int32_t numOfIndex);
H
Haojun Liao 已提交
159 160 161 162 163 164 165

/**
 * Update the table id list of a given query.
 * @param uid   child table uid
 * @param type  operation type: ADD|DROP
 * @return
 */
H
Haojun Liao 已提交
166
int32_t qUpdateQueriedTableIdList(qTaskInfo_t tinfo, int64_t uid, int32_t type);
H
Haojun Liao 已提交
167

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

D
dapan1121 已提交
170 171
int32_t qGetExplainExecInfo(qTaskInfo_t tinfo, int32_t *resNum, SExplainExecInfo **pRes);

H
Hongze Cheng 已提交
172 173 174 175
#ifdef __cplusplus
}
#endif

176
#endif /*_TD_EXECUTOR_H_*/