syncIO.c 11.6 KB
Newer Older
M
Minghao Li 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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/>.
 */

#include "syncIO.h"
H
Haojun Liao 已提交
17
#include <tdatablock.h>
M
Minghao Li 已提交
18 19 20 21 22
#include "syncOnMessage.h"
#include "tglobal.h"
#include "ttimer.h"
#include "tutil.h"

M
Minghao Li 已提交
23 24
SSyncIO *gSyncIO = NULL;

M
Minghao Li 已提交
25
// local function ------------
M
sync io  
Minghao Li 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39
static int32_t  syncIOStartInternal(SSyncIO *io);
static int32_t  syncIOStopInternal(SSyncIO *io);
static SSyncIO *syncIOCreate(char *host, uint16_t port);
static int32_t  syncIODestroy(SSyncIO *io);

static void *syncIOConsumerFunc(void *param);
static int   syncIOAuth(void *parent, char *meterId, char *spi, char *encrypt, char *secret, char *ckey);
static void  syncIOProcessRequest(void *pParent, SRpcMsg *pMsg, SEpSet *pEpSet);
static void  syncIOProcessReply(void *pParent, SRpcMsg *pMsg, SEpSet *pEpSet);

static int32_t syncIOTickQInternal(SSyncIO *io);
static void    syncIOTickQFunc(void *param, void *tmrId);
static int32_t syncIOTickPingInternal(SSyncIO *io);
static void    syncIOTickPingFunc(void *param, void *tmrId);
M
Minghao Li 已提交
40 41
// ----------------------------

M
sync io  
Minghao Li 已提交
42 43 44
// public function ------------
int32_t syncIOStart(char *host, uint16_t port) {
  gSyncIO = syncIOCreate(host, port);
M
Minghao Li 已提交
45 46
  assert(gSyncIO != NULL);

wafwerar's avatar
wafwerar 已提交
47
  taosSeedRand(time(NULL));
M
sync io  
Minghao Li 已提交
48
  int32_t ret = syncIOStartInternal(gSyncIO);
M
Minghao Li 已提交
49 50
  assert(ret == 0);

M
Minghao Li 已提交
51
  sTrace("syncIOStart ok, gSyncIO:%p gSyncIO->clientRpc:%p", gSyncIO, gSyncIO->clientRpc);
M
Minghao Li 已提交
52 53
  return 0;
}
M
Minghao Li 已提交
54

M
sync io  
Minghao Li 已提交
55 56 57
int32_t syncIOStop() {
  int32_t ret = syncIOStopInternal(gSyncIO);
  assert(ret == 0);
M
Minghao Li 已提交
58

M
sync io  
Minghao Li 已提交
59 60
  ret = syncIODestroy(gSyncIO);
  assert(ret == 0);
M
Minghao Li 已提交
61 62 63
  return ret;
}

M
sync io  
Minghao Li 已提交
64 65 66 67
int32_t syncIOTickQ() {
  int32_t ret = syncIOTickQInternal(gSyncIO);
  assert(ret == 0);
  return ret;
M
Minghao Li 已提交
68 69
}

M
sync io  
Minghao Li 已提交
70 71 72 73
int32_t syncIOTickPing() {
  int32_t ret = syncIOTickPingInternal(gSyncIO);
  assert(ret == 0);
  return ret;
M
Minghao Li 已提交
74 75
}

M
Minghao Li 已提交
76 77 78 79 80 81 82 83
int32_t syncIOSendMsg(void *clientRpc, const SEpSet *pEpSet, SRpcMsg *pMsg) {
  sTrace(
      "<--- syncIOSendMsg ---> clientRpc:%p, numOfEps:%d, inUse:%d, destAddr:%s-%u, pMsg->ahandle:%p, pMsg->handle:%p, "
      "pMsg->msgType:%d, pMsg->contLen:%d",
      clientRpc, pEpSet->numOfEps, pEpSet->inUse, pEpSet->eps[0].fqdn, pEpSet->eps[0].port, pMsg->ahandle, pMsg->handle,
      pMsg->msgType, pMsg->contLen);
  {
    cJSON *pJson = syncRpcMsg2Json(pMsg);
M
Minghao Li 已提交
84
    char * serialized = cJSON_Print(pJson);
M
Minghao Li 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
    sTrace("process syncMessage send: pMsg:%s ", serialized);
    free(serialized);
    cJSON_Delete(pJson);
  }
  pMsg->handle = NULL;
  rpcSendRequest(clientRpc, pEpSet, pMsg, NULL);
  return 0;
}

int32_t syncIOEqMsg(void *queue, SRpcMsg *pMsg) {
  SRpcMsg *pTemp;
  pTemp = taosAllocateQitem(sizeof(SRpcMsg));
  memcpy(pTemp, pMsg, sizeof(SRpcMsg));

  STaosQueue *pMsgQ = queue;
  taosWriteQitem(pMsgQ, pTemp);

  return 0;
}

M
sync io  
Minghao Li 已提交
105 106
// local function ------------
static int32_t syncIOStartInternal(SSyncIO *io) {
M
Minghao Li 已提交
107 108
  taosBlockSIGPIPE();

M
sync io  
Minghao Li 已提交
109
  rpcInit();
M
Minghao Li 已提交
110 111 112 113 114 115 116 117 118
  tsRpcForceTcp = 1;

  // cient rpc init
  {
    SRpcInit rpcInit;
    memset(&rpcInit, 0, sizeof(rpcInit));
    rpcInit.localPort = 0;
    rpcInit.label = "SYNC-IO-CLIENT";
    rpcInit.numOfThreads = 1;
M
sync io  
Minghao Li 已提交
119
    rpcInit.cfp = syncIOProcessReply;
M
Minghao Li 已提交
120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
    rpcInit.sessions = 100;
    rpcInit.idleTime = 100;
    rpcInit.user = "sync-io";
    rpcInit.secret = "sync-io";
    rpcInit.ckey = "key";
    rpcInit.spi = 0;
    rpcInit.connType = TAOS_CONN_CLIENT;

    io->clientRpc = rpcOpen(&rpcInit);
    if (io->clientRpc == NULL) {
      sError("failed to initialize RPC");
      return -1;
    }
  }

  // server rpc init
  {
    SRpcInit rpcInit;
    memset(&rpcInit, 0, sizeof(rpcInit));
M
sync io  
Minghao Li 已提交
139
    rpcInit.localPort = io->myAddr.eps[0].port;
M
Minghao Li 已提交
140 141
    rpcInit.label = "SYNC-IO-SERVER";
    rpcInit.numOfThreads = 1;
M
sync io  
Minghao Li 已提交
142
    rpcInit.cfp = syncIOProcessRequest;
M
Minghao Li 已提交
143 144
    rpcInit.sessions = 1000;
    rpcInit.idleTime = 2 * 1500;
M
Minghao Li 已提交
145
    rpcInit.afp = syncIOAuth;
M
Minghao Li 已提交
146 147 148 149 150 151 152 153 154 155 156 157
    rpcInit.parent = io;
    rpcInit.connType = TAOS_CONN_SERVER;

    void *pRpc = rpcOpen(&rpcInit);
    if (pRpc == NULL) {
      sError("failed to start RPC server");
      return -1;
    }
  }

  // start consumer thread
  {
M
sync io  
Minghao Li 已提交
158
    if (pthread_create(&io->consumerTid, NULL, syncIOConsumerFunc, io) != 0) {
M
Minghao Li 已提交
159 160 161 162 163 164 165
      sError("failed to create sync consumer thread since %s", strerror(errno));
      terrno = TAOS_SYSTEM_ERROR(errno);
      return -1;
    }
  }

  // start tmr thread
M
sync io  
Minghao Li 已提交
166
  io->ioTimerManager = taosTmrInit(1000, 50, 10000, "SYNC");
M
Minghao Li 已提交
167 168 169 170

  return 0;
}

M
sync io  
Minghao Li 已提交
171
static int32_t syncIOStopInternal(SSyncIO *io) {
M
Minghao Li 已提交
172
  atomic_store_8(&io->isStart, 0);
M
sync io  
Minghao Li 已提交
173
  pthread_join(io->consumerTid, NULL);
M
Minghao Li 已提交
174 175 176
  return 0;
}

M
sync io  
Minghao Li 已提交
177 178 179
static SSyncIO *syncIOCreate(char *host, uint16_t port) {
  SSyncIO *io = (SSyncIO *)malloc(sizeof(SSyncIO));
  memset(io, 0, sizeof(*io));
M
Minghao Li 已提交
180

M
sync io  
Minghao Li 已提交
181 182 183
  io->pMsgQ = taosOpenQueue();
  io->pQset = taosOpenQset();
  taosAddIntoQset(io->pQset, io->pMsgQ, NULL);
M
Minghao Li 已提交
184

M
sync io  
Minghao Li 已提交
185 186
  io->myAddr.inUse = 0;
  addEpIntoEpSet(&io->myAddr, host, port);
M
Minghao Li 已提交
187

M
sync io  
Minghao Li 已提交
188
  return io;
M
Minghao Li 已提交
189 190
}

M
sync io  
Minghao Li 已提交
191
static int32_t syncIODestroy(SSyncIO *io) {
M
Minghao Li 已提交
192 193 194 195 196 197 198 199 200 201 202 203 204
  int8_t start = atomic_load_8(&io->isStart);
  assert(start == 0);

  if (io->serverRpc != NULL) {
    free(io->serverRpc);
    io->serverRpc = NULL;
  }

  if (io->clientRpc != NULL) {
    free(io->clientRpc);
    io->clientRpc = NULL;
  }

M
sync io  
Minghao Li 已提交
205 206 207 208 209 210 211 212
  taosCloseQueue(io->pMsgQ);
  taosCloseQset(io->pQset);

  return 0;
}

static void *syncIOConsumerFunc(void *param) {
  SSyncIO *io = param;
M
Minghao Li 已提交
213

M
sync io  
Minghao Li 已提交
214
  STaosQall *qall;
M
Minghao Li 已提交
215
  SRpcMsg *  pRpcMsg, rpcMsg;
M
sync io  
Minghao Li 已提交
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
  int        type;

  qall = taosAllocateQall();

  while (1) {
    int numOfMsgs = taosReadAllQitemsFromQset(io->pQset, qall, NULL, NULL);
    sTrace("syncIOConsumerFunc %d msgs are received", numOfMsgs);
    if (numOfMsgs <= 0) break;

    for (int i = 0; i < numOfMsgs; ++i) {
      taosGetQitem(qall, (void **)&pRpcMsg);
      sTrace("syncIOConsumerFunc get item from queue: msgType:%d contLen:%d msg:%s", pRpcMsg->msgType, pRpcMsg->contLen,
             (char *)(pRpcMsg->pCont));

      if (pRpcMsg->msgType == SYNC_PING) {
        if (io->FpOnSyncPing != NULL) {
M
Minghao Li 已提交
232
          SyncPing *pSyncMsg;
M
Minghao Li 已提交
233
          pSyncMsg = syncPingBuild(pRpcMsg->contLen);
M
Minghao Li 已提交
234 235
          syncPingFromRpcMsg(pRpcMsg, pSyncMsg);
          // memcpy(pSyncMsg, tmpRpcMsg.pCont, tmpRpcMsg.contLen);
M
sync io  
Minghao Li 已提交
236
          io->FpOnSyncPing(io->pSyncNode, pSyncMsg);
M
Minghao Li 已提交
237
          syncPingDestroy(pSyncMsg);
M
sync io  
Minghao Li 已提交
238
        }
M
Minghao Li 已提交
239

M
sync io  
Minghao Li 已提交
240
      } else if (pRpcMsg->msgType == SYNC_PING_REPLY) {
M
Minghao Li 已提交
241
        if (io->FpOnSyncPingReply != NULL) {
M
Minghao Li 已提交
242 243 244
          SyncPingReply *pSyncMsg;
          pSyncMsg = syncPingReplyBuild(pRpcMsg->contLen);
          syncPingReplyFromRpcMsg(pRpcMsg, pSyncMsg);
M
Minghao Li 已提交
245
          io->FpOnSyncPingReply(io->pSyncNode, pSyncMsg);
M
Minghao Li 已提交
246
          syncPingReplyDestroy(pSyncMsg);
M
Minghao Li 已提交
247
        }
M
Minghao Li 已提交
248

M
Minghao Li 已提交
249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284
      } else if (pRpcMsg->msgType == SYNC_REQUEST_VOTE) {
        if (io->FpOnSyncRequestVote) {
          SyncRequestVote *pSyncMsg;
          pSyncMsg = syncRequestVoteBuild(pRpcMsg->contLen);
          syncRequestVoteFromRpcMsg(pRpcMsg, pSyncMsg);
          io->FpOnSyncRequestVote(io->pSyncNode, pSyncMsg);
          syncRequestVoteDestroy(pSyncMsg);
        }

      } else if (pRpcMsg->msgType == SYNC_REQUEST_VOTE_REPLY) {
        if (io->FpOnSyncRequestVoteReply) {
          SyncRequestVoteReply *pSyncMsg;
          pSyncMsg = SyncRequestVoteReplyBuild();
          syncRequestVoteReplyFromRpcMsg(pRpcMsg, pSyncMsg);
          io->FpOnSyncRequestVoteReply(io->pSyncNode, pSyncMsg);
          syncRequestVoteReplyDestroy(pSyncMsg);
        }

      } else if (pRpcMsg->msgType == SYNC_APPEND_ENTRIES) {
        if (io->FpOnSyncAppendEntries) {
          SyncAppendEntries *pSyncMsg;
          pSyncMsg = syncAppendEntriesBuild(pRpcMsg->contLen);
          syncAppendEntriesFromRpcMsg(pRpcMsg, pSyncMsg);
          io->FpOnSyncAppendEntries(io->pSyncNode, pSyncMsg);
          syncAppendEntriesDestroy(pSyncMsg);
        }

      } else if (pRpcMsg->msgType == SYNC_APPEND_ENTRIES_REPLY) {
        if (io->FpOnSyncAppendEntriesReply) {
          SyncAppendEntriesReply *pSyncMsg;
          pSyncMsg = syncAppendEntriesReplyBuild();
          syncAppendEntriesReplyFromRpcMsg(pRpcMsg, pSyncMsg);
          io->FpOnSyncAppendEntriesReply(io->pSyncNode, pSyncMsg);
          syncAppendEntriesReplyDestroy(pSyncMsg);
        }

M
Minghao Li 已提交
285
      } else if (pRpcMsg->msgType == SYNC_TIMEOUT) {
M
Minghao Li 已提交
286 287 288 289 290 291 292 293
        if (io->FpOnSyncTimeout != NULL) {
          SyncTimeout *pSyncMsg;
          pSyncMsg = syncTimeoutBuild();
          syncTimeoutFromRpcMsg(pRpcMsg, pSyncMsg);
          io->FpOnSyncTimeout(io->pSyncNode, pSyncMsg);
          syncTimeoutDestroy(pSyncMsg);
        }
      } else {
M
sync io  
Minghao Li 已提交
294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317
        ;
      }
    }

    taosResetQitems(qall);
    for (int i = 0; i < numOfMsgs; ++i) {
      taosGetQitem(qall, (void **)&pRpcMsg);
      rpcFreeCont(pRpcMsg->pCont);

      if (pRpcMsg->handle != NULL) {
        int msgSize = 128;
        memset(&rpcMsg, 0, sizeof(rpcMsg));
        rpcMsg.pCont = rpcMallocCont(msgSize);
        rpcMsg.contLen = msgSize;
        snprintf(rpcMsg.pCont, rpcMsg.contLen, "%s", "give a reply");
        rpcMsg.handle = pRpcMsg->handle;
        rpcMsg.code = 0;

        sTrace("syncIOConsumerFunc rpcSendResponse ... msgType:%d contLen:%d", pRpcMsg->msgType, rpcMsg.contLen);
        rpcSendResponse(&rpcMsg);
      }

      taosFreeQitem(pRpcMsg);
    }
M
Minghao Li 已提交
318 319
  }

M
sync io  
Minghao Li 已提交
320 321 322 323 324 325 326 327 328 329 330 331
  taosFreeQall(qall);
  return NULL;
}

static int syncIOAuth(void *parent, char *meterId, char *spi, char *encrypt, char *secret, char *ckey) {
  // app shall retrieve the auth info based on meterID from DB or a data file
  // demo code here only for simple demo
  int ret = 0;
  return ret;
}

static void syncIOProcessRequest(void *pParent, SRpcMsg *pMsg, SEpSet *pEpSet) {
M
Minghao Li 已提交
332 333
  sTrace("<-- syncIOProcessRequest --> type:%d, contLen:%d, cont:%s", pMsg->msgType, pMsg->contLen,
         (char *)pMsg->pCont);
M
sync io  
Minghao Li 已提交
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350

  SSyncIO *io = pParent;
  SRpcMsg *pTemp;

  pTemp = taosAllocateQitem(sizeof(SRpcMsg));
  memcpy(pTemp, pMsg, sizeof(SRpcMsg));

  taosWriteQitem(io->pMsgQ, pTemp);
}

static void syncIOProcessReply(void *pParent, SRpcMsg *pMsg, SEpSet *pEpSet) {
  sTrace("syncIOProcessReply: type:%d, contLen:%d msg:%s", pMsg->msgType, pMsg->contLen, (char *)pMsg->pCont);
  rpcFreeCont(pMsg->pCont);
}

static int32_t syncIOTickQInternal(SSyncIO *io) {
  io->ioTimerTickQ = taosTmrStart(syncIOTickQFunc, 1000, io, io->ioTimerManager);
M
Minghao Li 已提交
351
  return 0;
M
Minghao Li 已提交
352
}
M
sync io  
Minghao Li 已提交
353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390

static void syncIOTickQFunc(void *param, void *tmrId) {
  SSyncIO *io = (SSyncIO *)param;
  sTrace("<-- syncIOTickQFunc -->");

  SRpcMsg rpcMsg;
  rpcMsg.contLen = 64;
  rpcMsg.pCont = rpcMallocCont(rpcMsg.contLen);
  snprintf(rpcMsg.pCont, rpcMsg.contLen, "%s", "syncIOTickQ");
  rpcMsg.handle = NULL;
  rpcMsg.msgType = 55;

  SRpcMsg *pTemp;
  pTemp = taosAllocateQitem(sizeof(SRpcMsg));
  memcpy(pTemp, &rpcMsg, sizeof(SRpcMsg));

  taosWriteQitem(io->pMsgQ, pTemp);
  taosTmrReset(syncIOTickQFunc, 1000, io, io->ioTimerManager, &io->ioTimerTickQ);
}

static int32_t syncIOTickPingInternal(SSyncIO *io) {
  io->ioTimerTickPing = taosTmrStart(syncIOTickPingFunc, 1000, io, io->ioTimerManager);
  return 0;
}

static void syncIOTickPingFunc(void *param, void *tmrId) {
  SSyncIO *io = (SSyncIO *)param;
  sTrace("<-- syncIOTickPingFunc -->");

  SRpcMsg rpcMsg;
  rpcMsg.contLen = 64;
  rpcMsg.pCont = rpcMallocCont(rpcMsg.contLen);
  snprintf(rpcMsg.pCont, rpcMsg.contLen, "%s", "syncIOTickPing");
  rpcMsg.handle = NULL;
  rpcMsg.msgType = 77;

  rpcSendRequest(io->clientRpc, &io->myAddr, &rpcMsg, NULL);
  taosTmrReset(syncIOTickPingFunc, 1000, io, io->ioTimerManager, &io->ioTimerTickPing);
M
sync io  
Minghao Li 已提交
391
}