query.h 3.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/*
 * 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 TDENGINE_QUERY_H
#define TDENGINE_QUERY_H

#ifdef __cplusplus
extern "C" {
#endif

typedef void* qinfo_t;

/**
 * create the qinfo object according to QueryTableMsg
26
 * @param tsdb
27
 * @param pQueryTableMsg
H
hjxilinx 已提交
28
 * @param qinfo
29 30
 * @return
 */
31 32
int32_t qCreateQueryInfo(void* tsdb, int32_t vgId, SQueryTableMsg* pQueryTableMsg, qinfo_t* qinfo, uint64_t qId,
                         int32_t* schemaVersion, int32_t* tagVersion);
33 34 35 36 37 38


/**
 * the main query execution function, including query on both table and multitables,
 * which are decided according to the tag or table name query conditions
 *
H
hjxilinx 已提交
39
 * @param qinfo
40 41
 * @return
 */
H
Haojun Liao 已提交
42
bool qTableQuery(qinfo_t qinfo, uint64_t *qId);
43

44 45 46 47 48
/**
 * 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
hjxilinx 已提交
49
 * @param qinfo
50 51
 * @return
 */
52
int32_t qRetrieveQueryResultInfo(qinfo_t qinfo, bool* buildRes, void* pRspContext);
53 54 55 56 57 58

/**
 *
 * Retrieve the actual results to fill the response message payload.
 * Note that this function must be executed after qRetrieveQueryResultInfo is invoked.
 *
H
hjxilinx 已提交
59
 * @param qinfo  qinfo object
60 61 62 63
 * @param pRsp    response message
 * @param contLen payload length
 * @return
 */
64
int32_t qDumpRetrieveResult(qinfo_t qinfo, SRetrieveTableRsp** pRsp, int32_t* contLen, bool* continueExec);
65

H
Haojun Liao 已提交
66 67 68 69 70
/**
 *
 * @param qinfo
 * @return
 */
71
void* qGetResultRetrieveMsg(qinfo_t qinfo);
72

H
Haojun Liao 已提交
73 74
/**
 * kill current ongoing query and free query handle automatically
75 76
 * @param qinfo  qhandle
 * @return
H
Haojun Liao 已提交
77
 */
H
Haojun Liao 已提交
78
int32_t qKillQuery(qinfo_t qinfo);
H
Haojun Liao 已提交
79

A
AlexDuan 已提交
80 81 82
//kill by qid 
int32_t qKillQueryByQId(void* pMgmt, int64_t qId, int32_t waitMs, int32_t waitCount);

83 84
bool qSolveCommitNoBlock(void* pRepo, void* pMgmt);

85 86
int32_t qQueryCompleted(qinfo_t qinfo);

87 88 89 90 91 92
/**
 * destroy query info structure
 * @param qHandle
 */
void qDestroyQueryInfo(qinfo_t qHandle);

93
void* qOpenQueryMgmt(int32_t vgId);
94
void  qQueryMgmtNotifyClosed(void* pExecutor);
S
TD-2640  
Shengliang Guan 已提交
95
void  qQueryMgmtReOpen(void *pExecutor);
96
void  qCleanupQueryMgmt(void* pExecutor);
97
void** qRegisterQInfo(void* pMgmt, uint64_t qId, void *qInfo);
98
void** qAcquireQInfo(void* pMgmt, uint64_t key);
H
Haojun Liao 已提交
99
void** qReleaseQInfo(void* pMgmt, void* pQInfo, bool freeHandle);
D
fix bug  
dapan1121 已提交
100
bool checkQIdEqual(void *qHandle, uint64_t qId);
D
dapan1121 已提交
101
int64_t genQueryId(void);
102

103 104 105 106 107
#ifdef __cplusplus
}
#endif

#endif  // TDENGINE_QUERY_H