query.h 2.4 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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
/*
 * 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

#include "os.h"

#include "hash.h"
#include "tsdb.h"
#include "qinterpolation.h"
#include "qresultBuf.h"
#include "qsqlparser.h"
#include "qtsbuf.h"
#include "taosdef.h"
#include "tref.h"
#include "tsqlfunction.h"
#include "tarray.h"

typedef void* qinfo_t;

/**
 * create the qinfo object according to QueryTableMsg
 * @param pVnode
 * @param pQueryTableMsg
H
hjxilinx 已提交
41
 * @param qinfo
42 43
 * @return
 */
H
hjxilinx 已提交
44
int32_t qCreateQueryInfo(void* pVnode, SQueryTableMsg* pQueryTableMsg, qinfo_t* qinfo);
45 46 47 48

/**
 * Destroy QInfo object
 *
H
hjxilinx 已提交
49
 * @param qinfo
50 51
 * @return
 */
H
hjxilinx 已提交
52
void qDestroyQueryInfo(qinfo_t qinfo);
53 54 55 56 57

/**
 * 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 已提交
58
 * @param qinfo
59 60
 * @return
 */
H
hjxilinx 已提交
61
void qTableQuery(qinfo_t qinfo);
62 63 64 65 66 67

/**
 * 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 已提交
68
 * @param qinfo
69 70
 * @return
 */
H
hjxilinx 已提交
71
int32_t qRetrieveQueryResultInfo(qinfo_t qinfo);
72 73 74 75 76 77

/**
 *
 * Retrieve the actual results to fill the response message payload.
 * Note that this function must be executed after qRetrieveQueryResultInfo is invoked.
 *
H
hjxilinx 已提交
78
 * @param qinfo  qinfo object
79 80 81 82
 * @param pRsp    response message
 * @param contLen payload length
 * @return
 */
H
hjxilinx 已提交
83
int32_t qDumpRetrieveResult(qinfo_t qinfo, SRetrieveTableRsp** pRsp, int32_t* contLen);
84 85 86 87

/**
 * Decide if more results will be produced or not
 *
H
hjxilinx 已提交
88
 * @param qinfo
89 90
 * @return
 */
H
hjxilinx 已提交
91
bool qHasMoreResultsToRetrieve(qinfo_t qinfo);
92 93 94 95 96 97

#ifdef __cplusplus
}
#endif

#endif  // TDENGINE_QUERY_H