clientInt.h 5.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 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"
25
#include "taosmsg.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"
32 33

typedef struct SQueryExecMetric {
34 35 36 37
  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
38 39 40
} SQueryExecMetric;

typedef struct SInstanceActivity {
41 42 43 44 45 46 47 48 49 50
  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
51 52 53 54 55 56 57 58
} SInstanceActivity;

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

typedef struct SAppInstInfo {
  int64_t           numOfConns;
59
  SCorEpSet         mgmtEp;
60 61
  SInstanceActivity summary;
  SList            *pConnList;  // STscObj linked list
H
Haojun Liao 已提交
62
  uint32_t          clusterId;
63
  void             *pTransporter;
64 65 66 67
} SAppInstInfo;

typedef struct SAppInfo {
  int64_t        startTime;
68
  char           appName[TSDB_APP_NAME_LEN];
69 70 71 72 73 74 75 76 77
  char          *ep;
  int32_t        pid;
  int32_t        numOfThreads;
  SHeartBeatInfo hb;
  SHashObj      *pInstMap;
} SAppInfo;

typedef struct STscObj {
  char               user[TSDB_USER_LEN];
78
  char               pass[TSDB_PASSWORD_LEN];
79 80 81 82 83
  char               acctId[TSDB_ACCT_ID_LEN];
  char               db[TSDB_ACCT_ID_LEN + TSDB_DB_NAME_LEN];
  uint32_t           connId;
  uint64_t           id;       // ref ID returned by taosAddRef
//  struct SSqlObj    *sqlList;
84
  void              *pTransporter;
85 86 87 88 89
  pthread_mutex_t    mutex;     // used to protect the operation on db
  int32_t            numOfReqs; // number of sqlObj from this tscObj
  SAppInstInfo      *pAppInfo;
} STscObj;

90
typedef struct SClientResultInfo {
H
Haojun Liao 已提交
91 92 93 94 95
  const char  *pMsg;
  const char  *pData;
  TAOS_FIELD  *fields;
  int32_t      numOfCols;
  int32_t      numOfRows;
96
  int32_t      current;
H
Haojun Liao 已提交
97 98 99
  int32_t     *length;
  TAOS_ROW     row;
  char       **pCol;
100 101
} SClientResultInfo;

102 103 104 105
typedef struct SReqBody {
  tsem_t    rspSem;        // not used now
  void*     fp;
  void*     param;
106
  int32_t   paramLen;
H
Haojun Liao 已提交
107
  int64_t   execId;    // showId/queryId
108
  SClientResultInfo* pResInfo;
109 110
} SRequestBody;

111 112
#define ERROR_MSG_BUF_DEFAULT_SIZE  512

113 114 115 116 117 118 119 120 121 122 123 124 125
typedef struct SRequestObj {
  uint64_t         requestId;
  int32_t          type;   // request type
  STscObj         *pTscObj;
  SQueryExecMetric metric;
  char            *sqlstr;  // sql string
  SRequestBody     body;
  int64_t          self;
  char            *msgBuf;
  int32_t          code;
  void            *pInfo;   // sql parse info, generated by parser module
} SRequestObj;

126 127 128 129 130 131 132 133 134
typedef struct SRequestMsgBody {
  int32_t  msgType;
  void    *pData;
  int32_t  msgLen;
  uint64_t requestId;
  uint64_t requestObjRefId;
} SRequestMsgBody;

extern SAppInfo   appInfo;
135 136 137 138
extern int32_t    tscReqRef;
extern void      *tscQhandle;
extern int32_t    tscConnRef;

139
extern int (*buildRequestMsgFp[TSDB_SQL_MAX])(SRequestObj *pRequest, SRequestMsgBody *pMsgBody);
140 141 142 143 144
extern int (*handleRequestRspFp[TSDB_SQL_MAX])(SRequestObj *pRequest, const char* pMsg, int32_t msgLen);

int   taos_init();

void* createTscObj(const char* user, const char* auth, const char *ip, uint32_t port, SAppInstInfo* pAppInfo);
145
void  destroyTscObj(void*pObj);
146

147
void* createRequest(STscObj* pObj, __taos_async_fn_t fp, void* param, int32_t type);
H
Haojun Liao 已提交
148
void destroyRequest(SRequestObj* pRequest);
149 150

void taos_init_imp(void);
151
int taos_options_imp(TSDB_OPTION option, const char *str);
152

153 154 155 156 157
void* openTransporter(const char *user, const char *auth);

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

158
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 已提交
159
TAOS_RES *taos_query_l(TAOS *taos, const char *sql, int sqlLen);
160

161
void* doFetchRow(SRequestObj* pRequest);
H
Haojun Liao 已提交
162
void setResultDataPtr(SClientResultInfo* pResultInfo, TAOS_FIELD* pFields, int32_t numOfCols, int32_t numOfRows);
163

164 165 166 167 168
#ifdef __cplusplus
}
#endif

#endif  // TDENGINE_CLIENTINT_H