syncInt.h 5.8 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
/*
 * 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_SYNC_INT_H
#define _TD_LIBS_SYNC_INT_H

#ifdef __cplusplus
extern "C" {
#endif

#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
M
Minghao Li 已提交
26
#include "sync.h"
M
Minghao Li 已提交
27
#include "taosdef.h"
M
syncInt  
Minghao Li 已提交
28
#include "tglobal.h"
M
Minghao Li 已提交
29
#include "tlog.h"
M
Minghao Li 已提交
30
#include "ttimer.h"
M
Minghao Li 已提交
31 32

extern int32_t sDebugFlag;
M
Minghao Li 已提交
33

M
Minghao Li 已提交
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
#define sFatal(...)                                        \
  {                                                        \
    if (sDebugFlag & DEBUG_FATAL) {                        \
      taosPrintLog("SYN FATAL ", sDebugFlag, __VA_ARGS__); \
    }                                                      \
  }
#define sError(...)                                        \
  {                                                        \
    if (sDebugFlag & DEBUG_ERROR) {                        \
      taosPrintLog("SYN ERROR ", sDebugFlag, __VA_ARGS__); \
    }                                                      \
  }
#define sWarn(...)                                        \
  {                                                       \
    if (sDebugFlag & DEBUG_WARN) {                        \
      taosPrintLog("SYN WARN ", sDebugFlag, __VA_ARGS__); \
    }                                                     \
  }
M
Minghao Li 已提交
52 53 54 55 56
#define sInfo(...)                                        \
  {                                                       \
    if (sDebugFlag & DEBUG_INFO) {                        \
      taosPrintLog("SYN INFO ", sDebugFlag, __VA_ARGS__); \
    }                                                     \
M
Minghao Li 已提交
57
  }
M
Minghao Li 已提交
58 59 60 61 62
#define sDebug(...)                                        \
  {                                                        \
    if (sDebugFlag & DEBUG_DEBUG) {                        \
      taosPrintLog("SYN DEBUG ", sDebugFlag, __VA_ARGS__); \
    }                                                      \
M
Minghao Li 已提交
63
  }
M
Minghao Li 已提交
64 65 66 67 68
#define sTrace(...)                                        \
  {                                                        \
    if (sDebugFlag & DEBUG_TRACE) {                        \
      taosPrintLog("SYN TRACE ", sDebugFlag, __VA_ARGS__); \
    }                                                      \
M
Minghao Li 已提交
69 70
  }

M
Minghao Li 已提交
71
struct SRaft;
M
Minghao Li 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
typedef struct SRaft SRaft;

struct SyncPing;
typedef struct SyncPing SyncPing;

struct SyncPingReply;
typedef struct SyncPingReply SyncPingReply;

struct SyncRequestVote;
typedef struct SyncRequestVote SyncRequestVote;

struct SyncRequestVoteReply;
typedef struct SyncRequestVoteReply SyncRequestVoteReply;

struct SyncAppendEntries;
typedef struct SyncAppendEntries SyncAppendEntries;

struct SyncAppendEntriesReply;
typedef struct SyncAppendEntriesReply SyncAppendEntriesReply;
M
Minghao Li 已提交
91

M
Minghao Li 已提交
92 93 94
struct SSyncEnv;
typedef struct SSyncEnv SSyncEnv;

M
syncInt  
Minghao Li 已提交
95 96 97 98 99 100 101 102 103
struct SRaftStore;
typedef struct SRaftStore SRaftStore;

struct SVotesGranted;
typedef struct SVotesGranted SVotesGranted;

struct SVotesResponded;
typedef struct SVotesResponded SVotesResponded;

M
Minghao Li 已提交
104
typedef struct SRaftId {
M
Minghao Li 已提交
105 106
  SyncNodeId  addr;  // typedef uint64_t SyncNodeId;
  SyncGroupId vgId;  // typedef int32_t  SyncGroupId;
M
Minghao Li 已提交
107 108
} SRaftId;

M
Minghao Li 已提交
109
typedef struct SSyncNode {
M
syncInt  
Minghao Li 已提交
110
  // init by SSyncInfo
M
Minghao Li 已提交
111 112 113
  SyncGroupId vgId;
  SSyncCfg    syncCfg;
  char        path[TSDB_FILENAME_LEN];
M
syncInt  
Minghao Li 已提交
114
  void*       rpcClient;
M
Minghao Li 已提交
115 116
  int32_t (*FpSendMsg)(void* rpcClient, const SEpSet* pEpSet, SRpcMsg* pMsg);

M
syncInt  
Minghao Li 已提交
117
  // init internal
M
Minghao Li 已提交
118 119
  SNodeInfo me;
  int32_t   peersNum;
M
syncInt  
Minghao Li 已提交
120
  SNodeInfo peers[TSDB_MAX_REPLICA];
M
Minghao Li 已提交
121

M
syncInt  
Minghao Li 已提交
122 123
  // raft algorithm
  SSyncFSM* pFsm;
M
Minghao Li 已提交
124
  SRaftId   raftId;
M
syncInt  
Minghao Li 已提交
125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
  SRaftId   peersId[TSDB_MAX_REPLICA];
  int32_t   replicaNum;
  int32_t   quorum;

  // life cycle
  int32_t refCount;
  int64_t rid;

  // tla+ server vars
  ESyncState  state;
  SRaftStore* pRaftStore;

  // tla+ candidate vars
  SVotesGranted*   pVotesGranted;
  SVotesResponded* pVotesResponded;
M
Minghao Li 已提交
140

M
syncInt  
Minghao Li 已提交
141 142 143 144 145 146 147 148 149
  // tla+ leader vars
  SHashObj* pNextIndex;
  SHashObj* pMatchIndex;

  // tla+ log vars
  SSyncLogStore* pLogStore;
  SyncIndex      commitIndex;

  // timer
M
Minghao Li 已提交
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
  tmr_h             pPingTimer;
  int32_t           pingTimerMS;
  uint8_t           pingTimerStart;
  TAOS_TMR_CALLBACK FpPingTimer;  // Timer Fp
  uint64_t          pingTimerCounter;

  tmr_h             pElectTimer;
  int32_t           electTimerMS;
  uint8_t           electTimerStart;
  TAOS_TMR_CALLBACK FpElectTimer;  // Timer Fp
  uint64_t          electTimerCounter;

  tmr_h             pHeartbeatTimer;
  int32_t           heartbeatTimerMS;
  uint8_t           heartbeatTimerStart;
  TAOS_TMR_CALLBACK FpHeartbeatTimer;  // Timer Fp
  uint64_t          heartbeatTimerCounter;

  // callback
M
Minghao Li 已提交
169 170 171 172 173 174
  int32_t (*FpOnPing)(SSyncNode* ths, SyncPing* pMsg);
  int32_t (*FpOnPingReply)(SSyncNode* ths, SyncPingReply* pMsg);
  int32_t (*FpOnRequestVote)(SSyncNode* ths, SyncRequestVote* pMsg);
  int32_t (*FpOnRequestVoteReply)(SSyncNode* ths, SyncRequestVoteReply* pMsg);
  int32_t (*FpOnAppendEntries)(SSyncNode* ths, SyncAppendEntries* pMsg);
  int32_t (*FpOnAppendEntriesReply)(SSyncNode* ths, SyncAppendEntriesReply* pMsg);
M
Minghao Li 已提交
175

M
Minghao Li 已提交
176 177
} SSyncNode;

M
Minghao Li 已提交
178
SSyncNode* syncNodeOpen(const SSyncInfo* pSyncInfo);
M
syncInt  
Minghao Li 已提交
179 180 181 182 183 184
void       syncNodeClose(SSyncNode* pSyncNode);
void       syncNodePingAll(SSyncNode* pSyncNode);
void       syncNodePingPeers(SSyncNode* pSyncNode);
void       syncNodePingSelf(SSyncNode* pSyncNode);
int32_t    syncNodeStartPingTimer(SSyncNode* pSyncNode);
int32_t    syncNodeStopPingTimer(SSyncNode* pSyncNode);
M
Minghao Li 已提交
185

M
Minghao Li 已提交
186 187 188 189 190
#ifdef __cplusplus
}
#endif

#endif /*_TD_LIBS_SYNC_INT_H*/