syncIO.h 2.0 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 32 33
/*
 * 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"

typedef struct SSyncIO {
  STaosQueue *pMsgQ;
M
Minghao Li 已提交
34
  STaosQset  *pQset;
M
sync io  
Minghao Li 已提交
35
  pthread_t   consumerTid;
M
Minghao Li 已提交
36

M
Minghao Li 已提交
37 38
  void  *serverRpc;
  void  *clientRpc;
M
sync io  
Minghao Li 已提交
39
  SEpSet myAddr;
M
Minghao Li 已提交
40

M
sync io  
Minghao Li 已提交
41 42 43
  void *ioTimerTickQ;
  void *ioTimerTickPing;
  void *ioTimerManager;
M
Minghao Li 已提交
44

M
Minghao Li 已提交
45
  void *pSyncNode;
M
sync io  
Minghao Li 已提交
46 47 48 49 50 51
  int32_t (*FpOnSyncPing)(SSyncNode *pSyncNode, SyncPing *pMsg);
  int32_t (*FpOnSyncPingReply)(SSyncNode *pSyncNode, SyncPingReply *pMsg);
  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 已提交
52
  int32_t (*FpOnSyncTimeout)(SSyncNode *pSyncNode, SyncTimeout *pMsg);
M
sync io  
Minghao Li 已提交
53 54

  int8_t isStart;
M
Minghao Li 已提交
55

M
Minghao Li 已提交
56 57
} SSyncIO;

M
Minghao Li 已提交
58
extern SSyncIO *gSyncIO;
M
Minghao Li 已提交
59

M
sync io  
Minghao Li 已提交
60
int32_t syncIOStart(char *host, uint16_t port);
M
Minghao Li 已提交
61
int32_t syncIOStop();
M
sync io  
Minghao Li 已提交
62 63
int32_t syncIOTickQ();
int32_t syncIOTickPing();
M
Minghao Li 已提交
64 65
int32_t syncIOSendMsg(void *clientRpc, const SEpSet *pEpSet, SRpcMsg *pMsg);
int32_t syncIOEqMsg(void *queue, SRpcMsg *pMsg);
M
Minghao Li 已提交
66 67 68 69 70 71

#ifdef __cplusplus
}
#endif

#endif /*_TD_LIBS_IO_H*/