query.h 2.7 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
/*
 * 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;
H
Haojun Liao 已提交
23
typedef void (*_qinfo_free_fn_t)(void*);
24 25 26

/**
 * create the qinfo object according to QueryTableMsg
27
 * @param tsdb
28
 * @param pQueryTableMsg
H
hjxilinx 已提交
29
 * @param qinfo
30 31
 * @return
 */
H
Haojun Liao 已提交
32
int32_t qCreateQueryInfo(void* tsdb, int32_t vgId, SQueryTableMsg* pQueryTableMsg, void* param, _qinfo_free_fn_t fn, qinfo_t* qinfo);
33 34 35

/**
 * Destroy QInfo object
36
 * @param qinfo  qhandle
37
 */
H
Haojun Liao 已提交
38
void qDestroyQueryInfo(qinfo_t qinfo);
39 40 41 42 43

/**
 * 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 已提交
44
 * @param qinfo
45 46
 * @return
 */
47
void qTableQuery(qinfo_t qinfo);
48 49 50 51 52 53

/**
 * 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 已提交
54
 * @param qinfo
55 56
 * @return
 */
H
hjxilinx 已提交
57
int32_t qRetrieveQueryResultInfo(qinfo_t qinfo);
58 59 60 61 62 63

/**
 *
 * Retrieve the actual results to fill the response message payload.
 * Note that this function must be executed after qRetrieveQueryResultInfo is invoked.
 *
H
hjxilinx 已提交
64
 * @param qinfo  qinfo object
65 66 67 68
 * @param pRsp    response message
 * @param contLen payload length
 * @return
 */
H
hjxilinx 已提交
69
int32_t qDumpRetrieveResult(qinfo_t qinfo, SRetrieveTableRsp** pRsp, int32_t* contLen);
70 71

/**
72 73
 * Decide if more results will be produced or not, NOTE: this function will increase the ref count of QInfo,
 * so it can be only called once for each retrieve
74
 *
H
hjxilinx 已提交
75
 * @param qinfo
76 77
 * @return
 */
H
hjxilinx 已提交
78
bool qHasMoreResultsToRetrieve(qinfo_t qinfo);
79

H
Haojun Liao 已提交
80 81
/**
 * kill current ongoing query and free query handle automatically
82 83
 * @param qinfo  qhandle
 * @return
H
Haojun Liao 已提交
84
 */
H
Haojun Liao 已提交
85
int32_t qKillQuery(qinfo_t qinfo);
H
Haojun Liao 已提交
86

87 88 89 90 91 92 93
void* qOpenQueryMgmt(int32_t vgId);
void  qSetQueryMgmtClosed(void* pExecutor);
void  qCleanupQueryMgmt(void* pExecutor);
void** qRegisterQInfo(void* pMgmt, void* qInfo);
void** qAcquireQInfo(void* pMgmt, void** key);
void** qReleaseQInfo(void* pMgmt, void* pQInfo, bool needFree);

94 95 96 97 98
#ifdef __cplusplus
}
#endif

#endif  // TDENGINE_QUERY_H