syncIO.h 2.2 KB
Newer Older
M
Minghao Li 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
/*
 * 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 _TD_LIBS_IO_H
#define _TD_LIBS_IO_H

#ifdef __cplusplus
extern "C" {
#endif

#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include "os.h"
#include "syncInt.h"
#include "taosdef.h"
#include "tqueue.h"
#include "trpc.h"

M
Minghao Li 已提交
32 33 34
#define TICK_Q_TIMER_MS 1000
#define TICK_Ping_TIMER_MS 1000

M
Minghao Li 已提交
35 36
typedef struct SSyncIO {
  STaosQueue *pMsgQ;
M
Minghao Li 已提交
37
  STaosQset * pQset;
M
Minghao Li 已提交
38
  TdThread    consumerTid;
M
Minghao Li 已提交
39

M
Minghao Li 已提交
40 41
  void * serverRpc;
  void * clientRpc;
M
sync io  
Minghao Li 已提交
42
  SEpSet myAddr;
M
Minghao Li 已提交
43

M
Minghao Li 已提交
44 45 46 47 48
  tmr_h   qTimer;
  int32_t qTimerMS;
  tmr_h   pingTimer;
  int32_t pingTimerMS;
  tmr_h   timerMgr;
M
Minghao Li 已提交
49

M
Minghao Li 已提交
50
  void *pSyncNode;
M
sync io  
Minghao Li 已提交
51 52
  int32_t (*FpOnSyncPing)(SSyncNode *pSyncNode, SyncPing *pMsg);
  int32_t (*FpOnSyncPingReply)(SSyncNode *pSyncNode, SyncPingReply *pMsg);
M
Minghao Li 已提交
53
  int32_t (*FpOnSyncClientRequest)(SSyncNode *pSyncNode, SyncClientRequest *pMsg);
M
sync io  
Minghao Li 已提交
54 55 56 57
  int32_t (*FpOnSyncRequestVote)(SSyncNode *pSyncNode, SyncRequestVote *pMsg);
  int32_t (*FpOnSyncRequestVoteReply)(SSyncNode *pSyncNode, SyncRequestVoteReply *pMsg);
  int32_t (*FpOnSyncAppendEntries)(SSyncNode *pSyncNode, SyncAppendEntries *pMsg);
  int32_t (*FpOnSyncAppendEntriesReply)(SSyncNode *pSyncNode, SyncAppendEntriesReply *pMsg);
M
Minghao Li 已提交
58
  int32_t (*FpOnSyncTimeout)(SSyncNode *pSyncNode, SyncTimeout *pMsg);
M
sync io  
Minghao Li 已提交
59 60

  int8_t isStart;
M
Minghao Li 已提交
61

M
Minghao Li 已提交
62 63
} SSyncIO;

M
Minghao Li 已提交
64
extern SSyncIO *gSyncIO;
M
Minghao Li 已提交
65

M
sync io  
Minghao Li 已提交
66
int32_t syncIOStart(char *host, uint16_t port);
M
Minghao Li 已提交
67
int32_t syncIOStop();
M
Minghao Li 已提交
68 69
int32_t syncIOSendMsg(void *clientRpc, const SEpSet *pEpSet, SRpcMsg *pMsg);
int32_t syncIOEqMsg(void *queue, SRpcMsg *pMsg);
M
Minghao Li 已提交
70

M
Minghao Li 已提交
71 72 73 74 75
int32_t syncIOQTimerStart();
int32_t syncIOQTimerStop();
int32_t syncIOPingTimerStart();
int32_t syncIOPingTimerStop();

M
Minghao Li 已提交
76 77 78 79 80
#ifdef __cplusplus
}
#endif

#endif /*_TD_LIBS_IO_H*/