clientInt.h 9.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_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

D
dapan1121 已提交
46
#define HEARTBEAT_INTERVAL 1500  // ms
L
Liu Jicong 已提交
47

L
Liu Jicong 已提交
48 49 50 51 52
enum {
  CONN_TYPE__QUERY = 1,
  CONN_TYPE__TMQ,
};

L
Liu Jicong 已提交
53 54
typedef struct SAppInstInfo SAppInstInfo;

L
Liu Jicong 已提交
55
typedef struct {
dengyihao's avatar
dengyihao 已提交
56 57
  void*         param;
  SClientHbReq* req;
D
dapan1121 已提交
58 59
} SHbConnInfo;

L
Liu Jicong 已提交
60
typedef struct {
dengyihao's avatar
dengyihao 已提交
61
  char* key;
L
Liu Jicong 已提交
62 63 64 65 66 67 68 69 70 71
  // 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 已提交
72 73
  SHashObj* activeInfo;  // hash<SClientHbKey, SClientHbReq>
  SHashObj* connInfo;    // hash<SClientHbKey, SHbConnInfo>
L
Liu Jicong 已提交
74 75
} SAppHbMgr;

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

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

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

91
typedef struct SQueryExecMetric {
D
dapan1121 已提交
92 93 94 95
  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
96 97
} SQueryExecMetric;

98
typedef struct SInstanceSummary {
dengyihao's avatar
dengyihao 已提交
99 100 101 102 103 104 105 106 107 108
  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
109
} SInstanceSummary;
110 111

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

L
Liu Jicong 已提交
115
struct SAppInstInfo {
L
Liu Jicong 已提交
116 117 118 119 120 121 122
  int64_t          numOfConns;
  SCorEpSet        mgmtEp;
  SInstanceSummary summary;
  SList*           pConnList;  // STscObj linked list
  int64_t          clusterId;
  void*            pTransporter;
  SAppHbMgr*       pAppHbMgr;
L
Liu Jicong 已提交
123
};
124 125

typedef struct SAppInfo {
L
Liu Jicong 已提交
126 127 128 129 130 131
  int64_t       startTime;
  char          appName[TSDB_APP_NAME_LEN];
  char*         ep;
  int32_t       pid;
  int32_t       numOfThreads;
  SHashObj*     pInstMap;
wafwerar's avatar
wafwerar 已提交
132
  TdThreadMutex mutex;
133 134 135
} SAppInfo;

typedef struct STscObj {
L
Liu Jicong 已提交
136 137 138 139
  char          user[TSDB_USER_LEN];
  char          pass[TSDB_PASSWORD_LEN];
  char          db[TSDB_DB_FNAME_LEN];
  char          ver[128];
L
Liu Jicong 已提交
140
  int8_t        connType;
L
Liu Jicong 已提交
141 142 143 144 145 146
  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;
147
  SHashObj*     pRequests;
148 149
} STscObj;

150 151
typedef struct SResultColumn {
  union {
L
Liu Jicong 已提交
152 153
    char*    nullbitmap;  // bitmap, one bit for each item in the list
    int32_t* offset;
154
  };
L
Liu Jicong 已提交
155
  char* pData;
156 157
} SResultColumn;

158
typedef struct SReqResultInfo {
159 160
  const char*    pRspMsg;
  const char*    pData;
L
Liu Jicong 已提交
161 162
  TAOS_FIELD*    fields;      // todo, column names are not needed.
  TAOS_FIELD*    userFields;  // the fields info that return to user
163 164
  uint32_t       numOfCols;
  int32_t*       length;
165
  char**         convertBuf;
166 167 168 169 170 171
  TAOS_ROW       row;
  SResultColumn* pCol;
  uint32_t       numOfRows;
  uint64_t       totalRows;
  uint32_t       current;
  bool           completed;
H
Haojun Liao 已提交
172
  int32_t        precision;
173
  int32_t        payloadLen;
174 175
} SReqResultInfo;

176
typedef struct SShowReqInfo {
dengyihao's avatar
dengyihao 已提交
177 178 179 180
  int64_t execId;  // showId/queryId
  int32_t vgId;
  SArray* pArray;        // SArray<SVgroupInfo>
  int32_t currentIndex;  // current accessed vgroup index.
181 182
} SShowReqInfo;

183
typedef struct SRequestSendRecvBody {
184 185 186 187 188
  tsem_t             rspSem;  // not used now
  void*              fp;
  SShowReqInfo       showInfo;  // todo this attribute will be removed after the query framework being completed.
  SDataBuf           requestMsg;
  int64_t            queryJob;  // query job, created according to sql query DAG.
L
Liu Jicong 已提交
189
  struct SQueryPlan* pDag;      // the query dag, generated according to the sql statement.
190
  SReqResultInfo     resInfo;
191
} SRequestSendRecvBody;
192

dengyihao's avatar
dengyihao 已提交
193
#define ERROR_MSG_BUF_DEFAULT_SIZE 512
194

L
Liu Jicong 已提交
195 196 197 198 199 200 201 202
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 已提交
203
typedef struct {
L
Liu Jicong 已提交
204 205 206 207
  int8_t  resType;
  char*   topic;
  SArray* res;  // SArray<SReqResultInfo>
  int32_t resIter;
L
Liu Jicong 已提交
208
  int32_t vgId;
L
Liu Jicong 已提交
209
} SMqRspObj;
L
Liu Jicong 已提交
210

211
typedef struct SRequestObj {
L
Liu Jicong 已提交
212
  int8_t               resType;  // query or tmq
dengyihao's avatar
dengyihao 已提交
213 214 215
  uint64_t             requestId;
  int32_t              type;  // request type
  STscObj*             pTscObj;
X
Xiaoyu Wang 已提交
216
  char*                pDb;
dengyihao's avatar
dengyihao 已提交
217 218 219 220 221 222
  char*                sqlstr;  // sql string
  int32_t              sqlLen;
  int64_t              self;
  char*                msgBuf;
  void*                pInfo;  // sql parse info, generated by parser module
  int32_t              code;
D
dapan1121 已提交
223 224
  SArray*              dbList;
  SArray*              tableList;
dengyihao's avatar
dengyihao 已提交
225
  SQueryExecMetric     metric;
H
Haojun Liao 已提交
226
  SRequestSendRecvBody body;
227 228
} SRequestObj;

L
Liu Jicong 已提交
229
static FORCE_INLINE SReqResultInfo* tmqGetCurResInfo(TAOS_RES* res) {
L
Liu Jicong 已提交
230 231
  SMqRspObj* msg = (SMqRspObj*)res;
  int32_t    resIter = msg->resIter == -1 ? 0 : msg->resIter;
L
Liu Jicong 已提交
232 233 234 235
  return (SReqResultInfo*)taosArrayGet(msg->res, resIter);
}

static FORCE_INLINE SReqResultInfo* tmqGetNextResInfo(TAOS_RES* res) {
L
Liu Jicong 已提交
236
  SMqRspObj* msg = (SMqRspObj*)res;
L
Liu Jicong 已提交
237 238 239 240 241 242 243 244 245 246 247
  if (++msg->resIter < taosArrayGetSize(msg->res)) {
    return (SReqResultInfo*)taosArrayGet(msg->res, msg->resIter);
  }
  return NULL;
}

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

248
extern SAppInfo appInfo;
H
Haojun Liao 已提交
249
extern int32_t  clientReqRefPool;
250
extern int32_t  clientConnRefPool;
251

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

dengyihao's avatar
dengyihao 已提交
256
int taos_init();
257

dengyihao's avatar
dengyihao 已提交
258 259
void* createTscObj(const char* user, const char* auth, const char* db, SAppInstInfo* pAppInfo);
void  destroyTscObj(void* pObj);
D
dapan1121 已提交
260 261
STscObj *acquireTscObj(int64_t rid);
int32_t releaseTscObj(int64_t rid);
262

263 264
uint64_t generateRequestId();

dengyihao's avatar
dengyihao 已提交
265
void* createRequest(STscObj* pObj, __taos_async_fn_t fp, void* param, int32_t type);
266
void  destroyRequest(SRequestObj* pRequest);
D
dapan1121 已提交
267 268
SRequestObj *acquireRequest(int64_t rid);
int32_t releaseRequest(int64_t rid);
269

dengyihao's avatar
dengyihao 已提交
270
char* getDbOfConnection(STscObj* pObj);
271
void  setConnectionDB(STscObj* pTscObj, const char* db);
H
Haojun Liao 已提交
272
void  resetConnectDB(STscObj* pTscObj);
273 274

void taos_init_imp(void);
dengyihao's avatar
dengyihao 已提交
275
int  taos_options_imp(TSDB_OPTION option, const char* str);
276

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

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

282 283
void initMsgHandleFp();

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

L
Liu Jicong 已提交
287 288
int32_t parseSql(SRequestObj* pRequest, bool topicQuery, SQuery** pQuery);
int32_t getPlan(SRequestObj* pRequest, SQuery* pQuery, SQueryPlan** pPlan, SArray* pNodeList);
289

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

292
void*   doFetchRows(SRequestObj* pRequest, bool setupOneRowPtr, bool convertUcs4);
L
Liu Jicong 已提交
293
void    doSetOneRowPtr(SReqResultInfo* pResultInfo);
L
Liu Jicong 已提交
294 295
int32_t setResultDataPtr(SReqResultInfo* pResultInfo, TAOS_FIELD* pFields, int32_t numOfCols, int32_t numOfRows,
                         bool convertUcs4);
L
Liu Jicong 已提交
296
void    setResSchemaInfo(SReqResultInfo* pResInfo, const SSchema* pSchema, int32_t numOfCols);
L
Liu Jicong 已提交
297
int32_t setQueryResultFromRsp(SReqResultInfo* pResultInfo, const SRetrieveTableRsp* pRsp, bool convertUcs4);
298

dengyihao's avatar
dengyihao 已提交
299
// --- heartbeat
L
Liu Jicong 已提交
300 301 302 303 304 305
// global, called by mgmt
int  hbMgrInit();
void hbMgrCleanUp();
int  hbHandleRsp(SClientHbBatchRsp* hbRsp);

// cluster level
dengyihao's avatar
dengyihao 已提交
306 307
SAppHbMgr* appHbMgrInit(SAppInstInfo* pAppInstInfo, char* key);
void       appHbMgrCleanup(void);
L
Liu Jicong 已提交
308 309

// conn level
D
dapan1121 已提交
310
int  hbRegisterConn(SAppHbMgr *pAppHbMgr, int64_t tscRefId, int64_t clusterId, int32_t hbType);
L
Liu Jicong 已提交
311 312 313 314 315 316 317
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();

318 319 320 321 322
#ifdef __cplusplus
}
#endif

#endif  // TDENGINE_CLIENTINT_H