syncUtil.h 2.3 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
void     syncUtilU642Addr(uint64_t u64, char* host, int64_t len, uint16_t* port);
27 28 29
void     syncUtilNodeInfo2EpSet(const SNodeInfo* pInfo, SEpSet* pEpSet);
void     syncUtilRaftId2EpSet(const SRaftId* raftId, SEpSet* pEpSet);
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
int32_t     syncUtilQuorum(int32_t replicaNum);
cJSON*      syncUtilRaftId2Json(const SRaftId* p);
36
const char* syncStr(ESyncState state);
S
Shengliang Guan 已提交
37 38
char*       syncUtilPrintBin(char* ptr, uint32_t len);
char*       syncUtilPrintBin2(char* ptr, uint32_t len);
M
Minghao Li 已提交
39 40
void        syncUtilMsgHtoN(void* msg);
void        syncUtilMsgNtoH(void* msg);
M
Minghao Li 已提交
41 42 43
bool        syncUtilUserPreCommit(tmsg_t msgType);
bool        syncUtilUserCommit(tmsg_t msgType);
bool        syncUtilUserRollback(tmsg_t msgType);
S
Shengliang Guan 已提交
44 45 46 47 48 49

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 已提交
50

M
Minghao Li 已提交
51 52 53 54 55
#ifdef __cplusplus
}
#endif

#endif /*_TD_LIBS_SYNC_UTIL_H*/