clientInt.h 7.2 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
/*
 * 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

#include "taos.h"
H
Haojun Liao 已提交
24
#include "common.h"
H
Hongze Cheng 已提交
25
#include "tmsg.h"
26 27
#include "tdef.h"
#include "tep.h"
28 29
#include "thash.h"
#include "tlist.h"
30
#include "tmsgtype.h"
31
#include "trpc.h"
H
Haojun Liao 已提交
32
#include "query.h"
33

L
Liu Jicong 已提交
34 35 36 37
#define HEARTBEAT_INTERVAL 1500  // ms

typedef struct SAppInstInfo SAppInstInfo;

D
dapan1121 已提交
38 39 40 41 42
typedef struct SHbConnInfo {
  void         *param;
  SClientHbReq *req;
} SHbConnInfo;

L
Liu Jicong 已提交
43
typedef struct SAppHbMgr {
D
dapan1121 已提交
44
  char   *key;
L
Liu Jicong 已提交
45 46 47 48 49 50 51 52 53 54 55
  // 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
  SHashObj* activeInfo;    // hash<SClientHbKey, SClientHbReq>
D
dapan1121 已提交
56
  SHashObj* connInfo;      // hash<SClientHbKey, SHbConnInfo>
L
Liu Jicong 已提交
57 58
} SAppHbMgr;

D
dapan1121 已提交
59 60 61 62 63 64

typedef int32_t (*FHbRspHandle)(struct SAppHbMgr *pAppHbMgr, SClientHbRsp* pRsp);

typedef int32_t (*FHbReqHandle)(SClientHbKey *connKey, void* param, SClientHbReq *req);


L
Liu Jicong 已提交
65 66 67 68 69 70 71
typedef struct SClientHbMgr {
  int8_t inited;
  // ctl
  int8_t          threadStop;
  pthread_t       thread;
  pthread_mutex_t lock;       // used when app init and cleanup
  SArray*         appHbMgrs;  // SArray<SAppHbMgr*> one for each cluster
D
dapan1121 已提交
72 73
  FHbReqHandle    reqHandle[HEARTBEAT_TYPE_MAX];
  FHbRspHandle    rspHandle[HEARTBEAT_TYPE_MAX];
L
Liu Jicong 已提交
74 75 76
} SClientHbMgr;


77
typedef struct SQueryExecMetric {
78 79 80 81
  int64_t      start;    // start timestamp
  int64_t      parsed;   // start to parse
  int64_t      send;     // start to send to server
  int64_t      rsp;      // receive response from server
82 83
} SQueryExecMetric;

84
typedef struct SInstanceSummary {
85 86 87 88 89 90 91 92 93 94
  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
95
} SInstanceSummary;
96 97 98 99 100

typedef struct SHeartBeatInfo {
  void  *pTimer;   // timer, used to send request msg to mnode
} SHeartBeatInfo;

L
Liu Jicong 已提交
101 102 103 104
struct SAppInstInfo {
  int64_t          numOfConns;
  SCorEpSet        mgmtEp;
  SInstanceSummary summary;
105
  SList            *pConnList;  // STscObj linked list
L
Liu Jicong 已提交
106
  int64_t          clusterId;
107
  void             *pTransporter;
L
Liu Jicong 已提交
108 109
  struct SAppHbMgr *pAppHbMgr;
};
110 111

typedef struct SAppInfo {
H
Haojun Liao 已提交
112 113 114 115 116 117 118
  int64_t         startTime;
  char            appName[TSDB_APP_NAME_LEN];
  char           *ep;
  int32_t         pid;
  int32_t         numOfThreads;
  SHashObj       *pInstMap;
  pthread_mutex_t mutex;
119 120 121
} SAppInfo;

typedef struct STscObj {
122 123 124
  char             user[TSDB_USER_LEN];
  char             pass[TSDB_PASSWORD_LEN];
  char             db[TSDB_DB_FNAME_LEN];
125
  char             ver[128];
126 127
  int32_t          acctId;
  uint32_t         connId;
L
Liu Jicong 已提交
128
  int32_t          connType;
129 130
  uint64_t         id;       // ref ID returned by taosAddRef
  pthread_mutex_t  mutex;     // used to protect the operation on db
H
Haojun Liao 已提交
131
  int32_t          numOfReqs; // number of sqlObj bound to this connection
132
  SAppInstInfo    *pAppInfo;
133 134
} STscObj;

L
Liu Jicong 已提交
135 136 137 138
typedef struct SMqConsumer {
  STscObj* pTscObj;
} SMqConsumer;

139 140
typedef struct SReqResultInfo {
  const char  *pRspMsg;
H
Haojun Liao 已提交
141 142
  const char  *pData;
  TAOS_FIELD  *fields;
143
  uint32_t     numOfCols;
H
Haojun Liao 已提交
144 145 146
  int32_t     *length;
  TAOS_ROW     row;
  char       **pCol;
147
  uint32_t     numOfRows;
148
  uint64_t     totalRows;
149
  uint32_t     current;
150
  bool         completed;
151 152
} SReqResultInfo;

153 154 155 156 157 158 159
typedef struct SShowReqInfo {
  int64_t         execId;        // showId/queryId
  int32_t         vgId;
  SArray         *pArray;        // SArray<SVgroupInfo>
  int32_t         currentIndex;  // current accessed vgroup index.
} SShowReqInfo;

160
typedef struct SRequestSendRecvBody {
H
Haojun Liao 已提交
161 162 163 164 165 166 167
  tsem_t            rspSem;        // not used now
  void*             fp;
  SShowReqInfo      showInfo;      // todo this attribute will be removed after the query framework being completed.
  SDataBuf          requestMsg;
  struct SSchJob   *pQueryJob;     // query job, created according to sql query DAG.
  struct SQueryDag *pDag;          // the query dag, generated according to the sql statement.
  SReqResultInfo    resInfo;
168
} SRequestSendRecvBody;
169

170 171
#define ERROR_MSG_BUF_DEFAULT_SIZE  512

172 173 174 175 176
typedef struct SRequestObj {
  uint64_t         requestId;
  int32_t          type;   // request type
  STscObj         *pTscObj;
  char            *sqlstr;  // sql string
X
Xiaoyu Wang 已提交
177
  int32_t          sqlLen;
178 179 180
  int64_t          self;
  char            *msgBuf;
  void            *pInfo;   // sql parse info, generated by parser module
181
  int32_t          code;
H
Haojun Liao 已提交
182 183
  SQueryExecMetric metric;
  SRequestSendRecvBody body;
184 185
} SRequestObj;

186
extern SAppInfo appInfo;
H
Haojun Liao 已提交
187
extern int32_t  clientReqRefPool;
188
extern int32_t  clientConnRefPool;
189

H
Haojun Liao 已提交
190
extern int (*handleRequestRspFp[TDMT_MAX])(void*, const SDataBuf* pMsg, int32_t code);
H
Haojun Liao 已提交
191
int genericRspCallback(void* param, const SDataBuf* pMsg, int32_t code);
H
Haojun Liao 已提交
192
SMsgSendInfo* buildMsgInfoImpl(SRequestObj* pReqObj);
193 194 195

int   taos_init();

196
void* createTscObj(const char* user, const char* auth, const char *db, SAppInstInfo* pAppInfo);
197
void  destroyTscObj(void*pObj);
198

199 200
uint64_t generateRequestId();

201 202 203
void *createRequest(STscObj* pObj, __taos_async_fn_t fp, void* param, int32_t type);
void  destroyRequest(SRequestObj* pRequest);

H
Haojun Liao 已提交
204
char *getDbOfConnection(STscObj* pObj);
205
void  setConnectionDB(STscObj* pTscObj, const char* db);
206 207

void taos_init_imp(void);
H
Haojun Liao 已提交
208
int  taos_options_imp(TSDB_OPTION option, const char *str);
209

H
Haojun Liao 已提交
210
void* openTransporter(const char *user, const char *auth, int32_t numOfThreads);
211 212

void processMsgFromServer(void* parent, SRpcMsg* pMsg, SEpSet* pEpSet);
213

214 215
void initMsgHandleFp();

216 217
TAOS *taos_connect_internal(const char *ip, const char *user, const char *pass, const char *auth, const char *db, uint16_t port);

H
Haojun Liao 已提交
218
void *doFetchRow(SRequestObj* pRequest);
219

H
Haojun Liao 已提交
220
void  setResultDataPtr(SReqResultInfo* pResultInfo, TAOS_FIELD* pFields, int32_t numOfCols, int32_t numOfRows);
221

L
Liu Jicong 已提交
222 223 224 225 226 227 228
// --- heartbeat 
// global, called by mgmt
int  hbMgrInit();
void hbMgrCleanUp();
int  hbHandleRsp(SClientHbBatchRsp* hbRsp);

// cluster level
D
dapan1121 已提交
229
SAppHbMgr* appHbMgrInit(SAppInstInfo* pAppInstInfo, char *key);
L
Liu Jicong 已提交
230 231 232
void appHbMgrCleanup(SAppHbMgr* pAppHbMgr);

// conn level
D
dapan1121 已提交
233
int  hbRegisterConn(SAppHbMgr* pAppHbMgr, int32_t connId, int64_t clusterId, int32_t hbType);
L
Liu Jicong 已提交
234 235 236 237 238 239 240 241
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();


242 243 244 245 246
#ifdef __cplusplus
}
#endif

#endif  // TDENGINE_CLIENTINT_H