syncUtil.h 2.4 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
/*
 * 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_UTIL_H
#define _TD_LIBS_SYNC_UTIL_H

#ifdef __cplusplus
extern "C" {
#endif

#include "syncInt.h"

M
Minghao Li 已提交
25
uint64_t syncUtilAddr2U64(const char* host, uint16_t port);
S
Shengliang Guan 已提交
26 27
void     syncUtilU642Addr(uint64_t u64, char* host, int64_t len, uint16_t* port);
void     syncUtilnodeInfo2EpSet(const SNodeInfo* pInfo, SEpSet* pEpSet);
M
Minghao Li 已提交
28
void     syncUtilraftId2EpSet(const SRaftId* raftId, SEpSet* pEpSet);
S
Shengliang Guan 已提交
29
bool     syncUtilnodeInfo2raftId(const SNodeInfo* pInfo, SyncGroupId vgId, SRaftId* raftId);
M
Minghao Li 已提交
30
bool     syncUtilSameId(const SRaftId* pId1, const SRaftId* pId2);
M
Minghao Li 已提交
31
bool     syncUtilEmptyId(const SRaftId* pId);
M
Minghao Li 已提交
32

M
Minghao Li 已提交
33
int32_t     syncUtilElectRandomMS(int32_t min, int32_t max);
M
Minghao Li 已提交
34 35 36
int32_t     syncUtilQuorum(int32_t replicaNum);
cJSON*      syncUtilNodeInfo2Json(const SNodeInfo* p);
cJSON*      syncUtilRaftId2Json(const SRaftId* p);
M
Minghao Li 已提交
37
char*       syncUtilRaftId2Str(const SRaftId* p);
38
const char* syncStr(ESyncState state);
S
Shengliang Guan 已提交
39 40
char*       syncUtilPrintBin(char* ptr, uint32_t len);
char*       syncUtilPrintBin2(char* ptr, uint32_t len);
M
Minghao Li 已提交
41 42
void        syncUtilMsgHtoN(void* msg);
void        syncUtilMsgNtoH(void* msg);
M
Minghao Li 已提交
43 44 45
bool        syncUtilUserPreCommit(tmsg_t msgType);
bool        syncUtilUserCommit(tmsg_t msgType);
bool        syncUtilUserRollback(tmsg_t msgType);
S
Shengliang Guan 已提交
46 47 48 49 50 51

void syncPrintNodeLog(const char* flags, ELogLevel level, int32_t dflag, SSyncNode* pNode, const char* format, ...);
void syncPrintSnapshotSenderLog(const char* flags, ELogLevel level, int32_t dflag, SSyncSnapshotSender* pSender,
                                const char* format, ...);
void syncPrintSnapshotReceiverLog(const char* flags, ELogLevel level, int32_t dflag, SSyncSnapshotReceiver* pReceiver,
                                  const char* format, ...);
M
Minghao Li 已提交
52

M
Minghao Li 已提交
53 54 55 56 57
#ifdef __cplusplus
}
#endif

#endif /*_TD_LIBS_SYNC_UTIL_H*/