clientInt.h 11.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
/*
 * 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_CLIENTINT_H
#define TDENGINE_CLIENTINT_H

#ifdef __cplusplus
extern "C" {
#endif

dengyihao's avatar
dengyihao 已提交
23
#include "parser.h"
24
#include "planner.h"
dengyihao's avatar
dengyihao 已提交
25 26
#include "query.h"
#include "taos.h"
L
Liu Jicong 已提交
27
#include "tcommon.h"
H
Haojun Liao 已提交
28
#include "tdatablock.h"
29
#include "tdef.h"
30 31
#include "thash.h"
#include "tlist.h"
dengyihao's avatar
dengyihao 已提交
32
#include "tmsg.h"
33
#include "tmsgtype.h"
34
#include "trpc.h"
35

S
Shengliang Guan 已提交
36
#include "tconfig.h"
S
Shengliang Guan 已提交
37

38 39
#define CHECK_CODE_GOTO(expr, label) \
  do {                               \
D
dapan1121 已提交
40
    code = expr;                     \
41 42 43 44
    if (TSDB_CODE_SUCCESS != code) { \
      goto label;                    \
    }                                \
  } while (0)
45

46
#define ERROR_MSG_BUF_DEFAULT_SIZE 512
L
Liu Jicong 已提交
47
#define HEARTBEAT_INTERVAL         1500  // ms
L
Liu Jicong 已提交
48

49 50 51 52 53 54 55 56
enum {
  RES_TYPE__QUERY = 1,
  RES_TYPE__TMQ,
};

#define TD_RES_QUERY(res) (*(int8_t*)res == RES_TYPE__QUERY)
#define TD_RES_TMQ(res)   (*(int8_t*)res == RES_TYPE__TMQ)

L
Liu Jicong 已提交
57 58
typedef struct SAppInstInfo SAppInstInfo;

L
Liu Jicong 已提交
59
typedef struct {
dengyihao's avatar
dengyihao 已提交
60 61
  void*         param;
  SClientHbReq* req;
D
dapan1121 已提交
62 63
} SHbConnInfo;

L
Liu Jicong 已提交
64
typedef struct {
dengyihao's avatar
dengyihao 已提交
65
  char* key;
L
Liu Jicong 已提交
66 67 68 69 70 71 72 73 74 75
  // statistics
  int32_t reportCnt;
  int32_t connKeyCnt;
  int64_t reportBytes;  // not implemented
  int64_t startTime;
  // ctl
  SRWLatch lock;  // lock is used in serialization
  // connection
  SAppInstInfo* pAppInstInfo;
  // info
dengyihao's avatar
dengyihao 已提交
76 77
  SHashObj* activeInfo;  // hash<SClientHbKey, SClientHbReq>
  SHashObj* connInfo;    // hash<SClientHbKey, SHbConnInfo>
L
Liu Jicong 已提交
78 79
} SAppHbMgr;

L
Liu Jicong 已提交
80
typedef int32_t (*FHbRspHandle)(SAppHbMgr* pAppHbMgr, SClientHbRsp* pRsp);
D
dapan1121 已提交
81

dengyihao's avatar
dengyihao 已提交
82
typedef int32_t (*FHbReqHandle)(SClientHbKey* connKey, void* param, SClientHbReq* req);
D
dapan1121 已提交
83

L
Liu Jicong 已提交
84
typedef struct {
L
Liu Jicong 已提交
85 86
  int8_t inited;
  // ctl
L
Liu Jicong 已提交
87 88
  int8_t        threadStop;
  TdThread      thread;
wafwerar's avatar
wafwerar 已提交
89
  TdThreadMutex lock;       // used when app init and cleanup
L
Liu Jicong 已提交
90
  SArray*       appHbMgrs;  // SArray<SAppHbMgr*> one for each cluster
D
dapan1121 已提交
91 92
  FHbReqHandle  reqHandle[CONN_TYPE__MAX];
  FHbRspHandle  rspHandle[CONN_TYPE__MAX];
L
Liu Jicong 已提交
93 94
} SClientHbMgr;

95
typedef struct SQueryExecMetric {
D
dapan1121 已提交
96 97 98 99
  int64_t start;   // start timestamp, us
  int64_t parsed;  // start to parse, us
  int64_t send;    // start to send to server, us
  int64_t rsp;     // receive response from server, us
100 101
} SQueryExecMetric;

102
typedef struct SInstanceSummary {
dengyihao's avatar
dengyihao 已提交
103 104 105 106 107 108 109 110 111 112
  uint64_t numOfInsertsReq;
  uint64_t numOfInsertRows;
  uint64_t insertElapsedTime;
  uint64_t insertBytes;  // submit to tsdb since launched.

  uint64_t fetchBytes;
  uint64_t queryElapsedTime;
  uint64_t numOfSlowQueries;
  uint64_t totalRequests;
  uint64_t currentRequests;  // the number of SRequestObj
113
} SInstanceSummary;
114 115

typedef struct SHeartBeatInfo {
dengyihao's avatar
dengyihao 已提交
116
  void* pTimer;  // timer, used to send request msg to mnode
117 118
} SHeartBeatInfo;

L
Liu Jicong 已提交
119
struct SAppInstInfo {
L
Liu Jicong 已提交
120 121
  int64_t          numOfConns;
  SCorEpSet        mgmtEp;
D
dapan1121 已提交
122 123
  TdThreadMutex    qnodeMutex;
  SArray*          pQnodeList;
L
Liu Jicong 已提交
124 125
  SInstanceSummary summary;
  SList*           pConnList;  // STscObj linked list
126
  uint64_t         clusterId;
L
Liu Jicong 已提交
127 128
  void*            pTransporter;
  SAppHbMgr*       pAppHbMgr;
L
Liu Jicong 已提交
129
};
130 131

typedef struct SAppInfo {
L
Liu Jicong 已提交
132 133 134 135 136 137
  int64_t       startTime;
  char          appName[TSDB_APP_NAME_LEN];
  char*         ep;
  int32_t       pid;
  int32_t       numOfThreads;
  SHashObj*     pInstMap;
wafwerar's avatar
wafwerar 已提交
138
  TdThreadMutex mutex;
139 140 141
} SAppInfo;

typedef struct STscObj {
L
Liu Jicong 已提交
142 143 144 145
  char          user[TSDB_USER_LEN];
  char          pass[TSDB_PASSWORD_LEN];
  char          db[TSDB_DB_FNAME_LEN];
  char          ver[128];
L
Liu Jicong 已提交
146
  int8_t        connType;
L
Liu Jicong 已提交
147 148 149 150 151 152
  int32_t       acctId;
  uint32_t      connId;
  uint64_t      id;         // ref ID returned by taosAddRef
  TdThreadMutex mutex;      // used to protect the operation on db
  int32_t       numOfReqs;  // number of sqlObj bound to this connection
  SAppInstInfo* pAppInfo;
153
  SHashObj*     pRequests;
154 155
} STscObj;

156 157
typedef struct SResultColumn {
  union {
L
Liu Jicong 已提交
158 159
    char*    nullbitmap;  // bitmap, one bit for each item in the list
    int32_t* offset;
160
  };
L
Liu Jicong 已提交
161
  char* pData;
162 163
} SResultColumn;

164
typedef struct SReqResultInfo {
D
dapan1121 已提交
165
  SQueryExecRes  execRes;
166 167
  const char*    pRspMsg;
  const char*    pData;
L
Liu Jicong 已提交
168 169
  TAOS_FIELD*    fields;      // todo, column names are not needed.
  TAOS_FIELD*    userFields;  // the fields info that return to user
170 171
  uint32_t       numOfCols;
  int32_t*       length;
172
  char**         convertBuf;
173 174 175 176 177 178
  TAOS_ROW       row;
  SResultColumn* pCol;
  uint32_t       numOfRows;
  uint64_t       totalRows;
  uint32_t       current;
  bool           completed;
H
Haojun Liao 已提交
179
  int32_t        precision;
180
  int32_t        payloadLen;
181 182 183
} SReqResultInfo;

typedef struct SRequestSendRecvBody {
184
  tsem_t             rspSem;  // not used now
185 186 187
  __taos_async_fn_t  queryFp;
  __taos_async_fn_t  fetchFp;
  void*              param;
188 189
  SDataBuf           requestMsg;
  int64_t            queryJob;  // query job, created according to sql query DAG.
L
Liu Jicong 已提交
190
  struct SQueryPlan* pDag;      // the query dag, generated according to the sql statement.
191
  SReqResultInfo     resInfo;
192
} SRequestSendRecvBody;
193

L
Liu Jicong 已提交
194
typedef struct {
L
Liu Jicong 已提交
195 196
  int8_t         resType;
  char           topic[TSDB_TOPIC_FNAME_LEN];
L
Liu Jicong 已提交
197
  char           db[TSDB_DB_FNAME_LEN];
L
Liu Jicong 已提交
198 199 200 201 202
  int32_t        vgId;
  SSchemaWrapper schema;
  int32_t        resIter;
  SMqDataBlkRsp  rsp;
  SReqResultInfo resInfo;
L
Liu Jicong 已提交
203
} SMqRspObj;
L
Liu Jicong 已提交
204

205
typedef struct SRequestObj {
L
Liu Jicong 已提交
206
  int8_t               resType;  // query or tmq
dengyihao's avatar
dengyihao 已提交
207 208 209
  uint64_t             requestId;
  int32_t              type;  // request type
  STscObj*             pTscObj;
210
  char*                pDb;     // current database string
dengyihao's avatar
dengyihao 已提交
211 212 213 214
  char*                sqlstr;  // sql string
  int32_t              sqlLen;
  int64_t              self;
  char*                msgBuf;
D
stmt  
dapan1121 已提交
215
  int32_t              msgBufLen;
dengyihao's avatar
dengyihao 已提交
216
  int32_t              code;
D
dapan1121 已提交
217 218
  SArray*              dbList;
  SArray*              tableList;
dengyihao's avatar
dengyihao 已提交
219
  SQueryExecMetric     metric;
H
Haojun Liao 已提交
220
  SRequestSendRecvBody body;
221 222
} SRequestObj;

223 224 225 226 227 228
typedef struct SSyncQueryParam {
  tsem_t       sem;
  SRequestObj* pRequest;
} SSyncQueryParam;

void*   doAsyncFetchRow(SRequestObj* pRequest, bool setupOneRowPtr, bool convertUcs4);
L
Liu Jicong 已提交
229
void*   doFetchRows(SRequestObj* pRequest, bool setupOneRowPtr, bool convertUcs4);
230

L
Liu Jicong 已提交
231 232
void    doSetOneRowPtr(SReqResultInfo* pResultInfo);
void    setResPrecision(SReqResultInfo* pResInfo, int32_t precision);
L
Liu Jicong 已提交
233 234
int32_t setQueryResultFromRsp(SReqResultInfo* pResultInfo, const SRetrieveTableRsp* pRsp, bool convertUcs4,
                              bool freeAfterUse);
L
Liu Jicong 已提交
235
void    setResSchemaInfo(SReqResultInfo* pResInfo, const SSchema* pSchema, int32_t numOfCols);
L
Liu Jicong 已提交
236
void    doFreeReqResultInfo(SReqResultInfo* pResInfo);
237
SRequestObj* execQuery(STscObj* pTscObj, const char* sql, int sqlLen);
L
Liu Jicong 已提交
238

L
Liu Jicong 已提交
239
static FORCE_INLINE SReqResultInfo* tmqGetCurResInfo(TAOS_RES* res) {
L
Liu Jicong 已提交
240
  SMqRspObj* msg = (SMqRspObj*)res;
L
Liu Jicong 已提交
241
  return (SReqResultInfo*)&msg->resInfo;
L
Liu Jicong 已提交
242 243
}

L
Liu Jicong 已提交
244
static FORCE_INLINE SReqResultInfo* tmqGetNextResInfo(TAOS_RES* res, bool convertUcs4) {
L
Liu Jicong 已提交
245
  SMqRspObj* msg = (SMqRspObj*)res;
L
Liu Jicong 已提交
246 247 248
  msg->resIter++;
  if (msg->resIter < msg->rsp.blockNum) {
    SRetrieveTableRsp* pRetrieve = (SRetrieveTableRsp*)taosArrayGetP(msg->rsp.blockData, msg->resIter);
L
Liu Jicong 已提交
249 250 251
    if (msg->rsp.withSchema) {
      SSchemaWrapper* pSW = (SSchemaWrapper*)taosArrayGetP(msg->rsp.blockSchema, msg->resIter);
      setResSchemaInfo(&msg->resInfo, pSW->pSchema, pSW->nCols);
L
Liu Jicong 已提交
252 253 254 255
      taosMemoryFreeClear(msg->resInfo.row);
      taosMemoryFreeClear(msg->resInfo.pCol);
      taosMemoryFreeClear(msg->resInfo.length);
      taosMemoryFreeClear(msg->resInfo.convertBuf);
L
Liu Jicong 已提交
256
    }
L
Liu Jicong 已提交
257
    setQueryResultFromRsp(&msg->resInfo, pRetrieve, convertUcs4, false);
L
Liu Jicong 已提交
258
    return &msg->resInfo;
L
Liu Jicong 已提交
259 260 261 262 263 264 265 266 267
  }
  return NULL;
}

static FORCE_INLINE SReqResultInfo* tscGetCurResInfo(TAOS_RES* res) {
  if (TD_RES_QUERY(res)) return &(((SRequestObj*)res)->body.resInfo);
  return tmqGetCurResInfo(res);
}

268
extern SAppInfo appInfo;
H
Haojun Liao 已提交
269
extern int32_t  clientReqRefPool;
270
extern int32_t  clientConnRefPool;
271

H
Haojun Liao 已提交
272
extern int (*handleRequestRspFp[TDMT_MAX])(void*, const SDataBuf* pMsg, int32_t code);
dengyihao's avatar
dengyihao 已提交
273
int           genericRspCallback(void* param, const SDataBuf* pMsg, int32_t code);
H
Haojun Liao 已提交
274
SMsgSendInfo* buildMsgInfoImpl(SRequestObj* pReqObj);
275

276
void*    createTscObj(const char* user, const char* auth, const char* db, int32_t connType, SAppInstInfo* pAppInfo);
L
Liu Jicong 已提交
277 278 279
void     destroyTscObj(void* pObj);
STscObj* acquireTscObj(int64_t rid);
int32_t  releaseTscObj(int64_t rid);
280

281 282
uint64_t generateRequestId();

283
void*        createRequest(STscObj* pObj, void* param, int32_t type);
L
Liu Jicong 已提交
284 285 286
void         destroyRequest(SRequestObj* pRequest);
SRequestObj* acquireRequest(int64_t rid);
int32_t      releaseRequest(int64_t rid);
287

dengyihao's avatar
dengyihao 已提交
288
char* getDbOfConnection(STscObj* pObj);
289
void  setConnectionDB(STscObj* pTscObj, const char* db);
H
Haojun Liao 已提交
290
void  resetConnectDB(STscObj* pTscObj);
291

L
Liu Jicong 已提交
292
int taos_options_imp(TSDB_OPTION option, const char* str);
293

dengyihao's avatar
dengyihao 已提交
294
void* openTransporter(const char* user, const char* auth, int32_t numOfThreads);
295

dengyihao's avatar
dengyihao 已提交
296
bool persistConnForSpecificMsg(void* parenct, tmsg_t msgType);
297
void processMsgFromServer(void* parent, SRpcMsg* pMsg, SEpSet* pEpSet);
298

299 300
void initMsgHandleFp();

dengyihao's avatar
dengyihao 已提交
301
TAOS* taos_connect_internal(const char* ip, const char* user, const char* pass, const char* auth, const char* db,
L
Liu Jicong 已提交
302
                            uint16_t port, int connType);
303

304 305
SRequestObj* launchQuery(STscObj* pTscObj, const char* sql, int sqlLen);

D
stmt  
dapan1121 已提交
306 307
int32_t parseSql(SRequestObj* pRequest, bool topicQuery, SQuery** pQuery, SStmtCallback* pStmtCb);

D
dapan1121 已提交
308
int32_t getPlan(SRequestObj* pRequest, SQuery* pQuery, SQueryPlan** pPlan, SArray** pNodeList);
309

dengyihao's avatar
dengyihao 已提交
310
int32_t buildRequest(STscObj* pTscObj, const char* sql, int sqlLen, SRequestObj** pRequest);
311

dengyihao's avatar
dengyihao 已提交
312
// --- heartbeat
L
Liu Jicong 已提交
313 314 315 316 317 318
// global, called by mgmt
int  hbMgrInit();
void hbMgrCleanUp();
int  hbHandleRsp(SClientHbBatchRsp* hbRsp);

// cluster level
dengyihao's avatar
dengyihao 已提交
319 320
SAppHbMgr* appHbMgrInit(SAppInstInfo* pAppInstInfo, char* key);
void       appHbMgrCleanup(void);
L
Liu Jicong 已提交
321 322

// conn level
L
Liu Jicong 已提交
323
int  hbRegisterConn(SAppHbMgr* pAppHbMgr, int64_t tscRefId, int64_t clusterId, int8_t connType);
L
Liu Jicong 已提交
324 325 326 327 328 329 330
void hbDeregisterConn(SAppHbMgr* pAppHbMgr, SClientHbKey connKey);

int hbAddConnInfo(SAppHbMgr* pAppHbMgr, SClientHbKey connKey, void* key, void* value, int32_t keyLen, int32_t valueLen);

// --- mq
void hbMgrInitMqHbRspHandle();

D
dapan 已提交
331
SRequestObj* launchQueryImpl(SRequestObj* pRequest, SQuery* pQuery, int32_t code, bool keepQuery, void** res);
332
int32_t      getQueryPlan(SRequestObj* pRequest, SQuery* pQuery, SArray** pNodeList);
D
dapan1121 已提交
333
int32_t      scheduleQuery(SRequestObj* pRequest, SQueryPlan* pDag, SArray* pNodeList);
334 335
SRequestObj* launchQueryImpl(SRequestObj* pRequest, SQuery* pQuery, bool keepQuery, void** res);
void         launchAsyncQuery(SRequestObj* pRequest, SQuery* pQuery);
D
dapan 已提交
336
int32_t      scheduleQuery(SRequestObj* pRequest, SQueryPlan* pDag, SArray* pNodeList, void** res);
L
Liu Jicong 已提交
337
int32_t      refreshMeta(STscObj* pTscObj, SRequestObj* pRequest);
L
Liu Jicong 已提交
338
int32_t      updateQnodeList(SAppInstInfo* pInfo, SArray* pNodeList);
D
stmt  
dapan1121 已提交
339

340 341 342 343 344
#ifdef __cplusplus
}
#endif

#endif  // TDENGINE_CLIENTINT_H