rclient.c 7.0 KB
Newer Older
S
slguan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
16 17 18 19 20 21 22
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/time.h>
#include <pthread.h>
#include <errno.h>
#include <signal.h>
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
23
#include <semaphore.h>
S
slguan 已提交
24 25 26
#include "os.h"
#include "tlog.h"
#include "trpc.h"
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
27
#include "taoserror.h"
S
slguan 已提交
28
#include <stdint.h>
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
29
#include <unistd.h>
S
slguan 已提交
30

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
31 32 33 34 35 36 37 38 39 40 41 42
typedef struct {
  int       index;
  SRpcIpSet ipSet;
  int       num;
  int       numOfReqs;
  int       msgSize;
  sem_t     rspSem; 
  sem_t    *pOverSem; 
  pthread_t thread;
  void     *pRpc;
} SInfo;

43
static void processResponse(SRpcMsg *pMsg) {
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
44 45
  SInfo *pInfo = (SInfo *)pMsg->handle;
  tTrace("thread:%d, response is received, type:%d contLen:%d code:0x%x", pInfo->index, pMsg->msgType, pMsg->contLen, pMsg->code);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
46

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
47
  rpcFreeCont(pMsg->pCont);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
48 49

  sem_post(&pInfo->rspSem); 
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
50 51
}

52
static void processUpdateIpSet(void *handle, SRpcIpSet *pIpSet) {
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
53 54
  SInfo *pInfo = (SInfo *)handle;

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
55
  tTrace("thread:%d, ip set is changed, index:%d", pInfo->index, pIpSet->inUse);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
56
  pInfo->ipSet = *pIpSet;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
57 58
}

59
static int tcount = 0;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
60

61
static void *sendRequest(void *param) {
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
62 63
  SInfo  *pInfo = (SInfo *)param;
  SRpcMsg rpcMsg; 
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
64 65 66 67 68
  
  tTrace("thread:%d, start to send request", pInfo->index);

  while ( pInfo->numOfReqs == 0 || pInfo->num < pInfo->numOfReqs) {
    pInfo->num++;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
69 70 71 72
    rpcMsg.pCont = rpcMallocCont(pInfo->msgSize);
    rpcMsg.contLen = pInfo->msgSize;
    rpcMsg.handle = pInfo;
    rpcMsg.msgType = 1;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
73
    tTrace("thread:%d, send request, contLen:%d num:%d", pInfo->index, pInfo->msgSize, pInfo->num);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
74
    rpcSendRequest(pInfo->pRpc, &pInfo->ipSet, &rpcMsg);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
75 76 77 78
    if ( pInfo->num % 20000 == 0 ) 
      tPrint("thread:%d, %d requests have been sent", pInfo->index, pInfo->num);
    sem_wait(&pInfo->rspSem);
  }
S
slguan 已提交
79

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
  tTrace("thread:%d, it is over", pInfo->index);
  tcount++;

  return NULL;
}

int main(int argc, char *argv[]) {
  SRpcInit  rpcInit;
  SRpcIpSet ipSet;
  int      msgSize = 128;
  int      numOfReqs = 0;
  int      appThreads = 1;
  char     serverIp[40] = "127.0.0.1";
  struct   timeval systemTime;
  int64_t  startTime, endTime;
  pthread_attr_t thattr;

  // server info
  ipSet.numOfIps = 1;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
99
  ipSet.inUse = 0;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
100 101 102 103 104
  ipSet.port = 7000;
  ipSet.ip[0] = inet_addr(serverIp);
  ipSet.ip[1] = inet_addr("192.168.0.1");

  // client info
S
slguan 已提交
105 106
  memset(&rpcInit, 0, sizeof(rpcInit));
  rpcInit.localIp      = "0.0.0.0";
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
107 108
  rpcInit.localPort    = 0;
  rpcInit.label        = "APP";
S
slguan 已提交
109
  rpcInit.numOfThreads = 1;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
110 111 112
  rpcInit.cfp          = processResponse;
  rpcInit.ufp          = processUpdateIpSet;
  rpcInit.sessions     = 100;
113
  rpcInit.idleTime     = tsShellActivityTimer*1000;
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
114 115
  rpcInit.user         = "michael";
  rpcInit.secret       = "mypassword";
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
116
  rpcInit.ckey         = "key";
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
117
  rpcInit.spi          = 1;
118
  rpcInit.connType     = TAOS_CONN_CLIENT;
S
slguan 已提交
119

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
120
  for (int i=1; i<argc; ++i) { 
121
    if (strcmp(argv[i], "-p")==0 && i < argc-1) {
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
      ipSet.port = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-i") ==0 && i < argc-1) {
      ipSet.ip[0] = inet_addr(argv[++i]); 
    } else if (strcmp(argv[i], "-l")==0 && i < argc-1) {
      strcpy(rpcInit.localIp, argv[++i]); 
    } else if (strcmp(argv[i], "-t")==0 && i < argc-1) {
      rpcInit.numOfThreads = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-m")==0 && i < argc-1) {
      msgSize = atoi(argv[++i]);
    } else if (strcmp(argv[i], "-s")==0 && i < argc-1) {
      rpcInit.sessions = atoi(argv[++i]); 
    } else if (strcmp(argv[i], "-n")==0 && i < argc-1) {
      numOfReqs = atoi(argv[++i]); 
    } else if (strcmp(argv[i], "-a")==0 && i < argc-1) {
      appThreads = atoi(argv[++i]); 
    } else if (strcmp(argv[i], "-o")==0 && i < argc-1) {
      tsCompressMsgSize = atoi(argv[++i]); 
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
139 140 141 142 143 144
    } else if (strcmp(argv[i], "-u")==0 && i < argc-1) {
      rpcInit.user = argv[++i];
    } else if (strcmp(argv[i], "-k")==0 && i < argc-1) {
      rpcInit.secret = argv[++i];
    } else if (strcmp(argv[i], "-spi")==0 && i < argc-1) {
      rpcInit.spi = atoi(argv[++i]);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
145
    } else if (strcmp(argv[i], "-d")==0 && i < argc-1) {
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
146
      rpcDebugFlag = atoi(argv[++i]);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
147 148 149 150 151 152 153 154 155 156 157
    } else {
      printf("\nusage: %s [options] \n", argv[0]);
      printf("  [-i ip]: first server IP address, default is:%s\n", serverIp);
      printf("  [-p port]: server port number, default is:%d\n", ipSet.port);
      printf("  [-t threads]: number of rpc threads, default is:%d\n", rpcInit.numOfThreads);
      printf("  [-s sessions]: number of rpc sessions, default is:%d\n", rpcInit.sessions);
      printf("  [-l localIp]: local IP address, default is:%s\n", rpcInit.localIp);
      printf("  [-m msgSize]: message body size, default is:%d\n", msgSize);
      printf("  [-a threads]: number of app threads, default is:%d\n", appThreads);
      printf("  [-n requests]: number of requests per thread, default is:%d\n", numOfReqs);
      printf("  [-o compSize]: compression message size, default is:%d\n", tsCompressMsgSize);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
158 159 160
      printf("  [-u user]: user name for the connection, default is:%s\n", rpcInit.user);
      printf("  [-k secret]: password for the connection, default is:%s\n", rpcInit.secret);
      printf("  [-spi SPI]: security parameter index, default is:%d\n", rpcInit.spi);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
161 162 163 164 165 166 167 168
      printf("  [-d debugFlag]: debug flag, default:%d\n", rpcDebugFlag);
      printf("  [-h help]: print out this help\n\n");
      exit(0);
    }
  }

  taosInitLog("client.log", 100000, 10);

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
169 170
  void *pRpc = rpcOpen(&rpcInit);
  if (pRpc == NULL) {
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
171
    dError("failed to initialize RPC");
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
172
    return -1;
S
slguan 已提交
173 174
  }

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202
  tPrint("client is initialized");

  gettimeofday(&systemTime, NULL);
  startTime = systemTime.tv_sec*1000000 + systemTime.tv_usec;

  SInfo *pInfo = (SInfo *)calloc(1, sizeof(SInfo)*appThreads);
 
  pthread_attr_init(&thattr);
  pthread_attr_setdetachstate(&thattr, PTHREAD_CREATE_JOINABLE);

  for (int i=0; i<appThreads; ++i) {
    pInfo->index = i;
    pInfo->ipSet = ipSet;
    pInfo->numOfReqs = numOfReqs;
    pInfo->msgSize = msgSize;
    sem_init(&pInfo->rspSem, 0, 0);
    pInfo->pRpc = pRpc;
    pthread_create(&pInfo->thread, &thattr, sendRequest, pInfo);
    pInfo++;
  }

  do {
    usleep(1);
  } while ( tcount < appThreads);

  gettimeofday(&systemTime, NULL);
  endTime = systemTime.tv_sec*1000000 + systemTime.tv_usec;  
  float usedTime = (endTime - startTime)/1000.0;  // mseconds
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
203

陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
204
  tPrint("it takes %.3f mseconds to send %d requests to server", usedTime, numOfReqs*appThreads);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
205
  tPrint("Performance: %.3f requests per second, msgSize:%d bytes", 1000.0*numOfReqs*appThreads/usedTime, msgSize);
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
206

207
  taosCloseLogger();
陶建辉(Jeff)'s avatar
陶建辉(Jeff) 已提交
208

S
slguan 已提交
209 210 211 212
  return 0;
}