syncRaftCfg.h 3.6 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
/*
 * 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_RAFT_CFG_H
#define _TD_LIBS_SYNC_RAFT_CFG_H

#ifdef __cplusplus
extern "C" {
#endif

#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include "cJSON.h"
#include "syncInt.h"
#include "taosdef.h"

M
Minghao Li 已提交
30
#define CONFIG_FILE_LEN 2048
M
Minghao Li 已提交
31

32 33
#define MAX_CONFIG_INDEX_COUNT 512

34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
// SRaftCfgIndex ------------------------------------------
typedef struct SRaftCfgIndex {
  TdFilePtr pFile;
  char      path[TSDB_FILENAME_LEN * 2];

  SyncIndex configIndexArr[MAX_CONFIG_INDEX_COUNT];
  int32_t   configIndexCount;
} SRaftCfgIndex;

SRaftCfgIndex *raftCfgIndexOpen(const char *path);
int32_t        raftCfgIndexClose(SRaftCfgIndex *pRaftCfgIndex);
int32_t        raftCfgIndexPersist(SRaftCfgIndex *pRaftCfgIndex);
int32_t        raftCfgIndexAddConfigIndex(SRaftCfgIndex *pRaftCfgIndex, SyncIndex configIndex);

cJSON  *raftCfgIndex2Json(SRaftCfgIndex *pRaftCfgIndex);
char   *raftCfgIndex2Str(SRaftCfgIndex *pRaftCfgIndex);
int32_t raftCfgIndexFromJson(const cJSON *pRoot, SRaftCfgIndex *pRaftCfgIndex);
int32_t raftCfgIndexFromStr(const char *s, SRaftCfgIndex *pRaftCfgIndex);

int32_t raftCfgIndexCreateFile(const char *path);

// ---------------------------------------------------------

M
Minghao Li 已提交
57 58 59 60
typedef struct SRaftCfg {
  SSyncCfg  cfg;
  TdFilePtr pFile;
  char      path[TSDB_FILENAME_LEN * 2];
M
Minghao Li 已提交
61
  int8_t    isStandBy;
M
Minghao Li 已提交
62
  int32_t   batchSize;
M
Minghao Li 已提交
63
  int8_t    snapshotStrategy;
64
  SyncIndex lastConfigIndex;
65 66 67 68

  SyncIndex configIndexArr[MAX_CONFIG_INDEX_COUNT];
  int32_t   configIndexCount;

M
Minghao Li 已提交
69 70 71 72 73
} SRaftCfg;

SRaftCfg *raftCfgOpen(const char *path);
int32_t   raftCfgClose(SRaftCfg *pRaftCfg);
int32_t   raftCfgPersist(SRaftCfg *pRaftCfg);
74
int32_t   raftCfgAddConfigIndex(SRaftCfg *pRaftCfg, SyncIndex configIndex);
M
Minghao Li 已提交
75

76 77 78
cJSON  *syncCfg2Json(SSyncCfg *pSyncCfg);
char   *syncCfg2Str(SSyncCfg *pSyncCfg);
char   *syncCfg2SimpleStr(SSyncCfg *pSyncCfg);
M
Minghao Li 已提交
79 80 81
int32_t syncCfgFromJson(const cJSON *pRoot, SSyncCfg *pSyncCfg);
int32_t syncCfgFromStr(const char *s, SSyncCfg *pSyncCfg);

82 83
cJSON  *raftCfg2Json(SRaftCfg *pRaftCfg);
char   *raftCfg2Str(SRaftCfg *pRaftCfg);
M
Minghao Li 已提交
84 85
int32_t raftCfgFromJson(const cJSON *pRoot, SRaftCfg *pRaftCfg);
int32_t raftCfgFromStr(const char *s, SRaftCfg *pRaftCfg);
M
Minghao Li 已提交
86

M
Minghao Li 已提交
87
typedef struct SRaftCfgMeta {
88
  int8_t    isStandBy;
M
Minghao Li 已提交
89
  int32_t   batchSize;
M
Minghao Li 已提交
90
  int8_t    snapshotStrategy;
91
  SyncIndex lastConfigIndex;
M
Minghao Li 已提交
92 93 94
} SRaftCfgMeta;

int32_t raftCfgCreateFile(SSyncCfg *pCfg, SRaftCfgMeta meta, const char *path);
M
Minghao Li 已提交
95 96 97 98 99 100

// for debug ----------------------
void syncCfgPrint(SSyncCfg *pCfg);
void syncCfgPrint2(char *s, SSyncCfg *pCfg);
void syncCfgLog(SSyncCfg *pCfg);
void syncCfgLog2(char *s, SSyncCfg *pCfg);
M
Minghao Li 已提交
101
void syncCfgLog3(char *s, SSyncCfg *pCfg);
M
Minghao Li 已提交
102 103 104 105 106 107

void raftCfgPrint(SRaftCfg *pCfg);
void raftCfgPrint2(char *s, SRaftCfg *pCfg);
void raftCfgLog(SRaftCfg *pCfg);
void raftCfgLog2(char *s, SRaftCfg *pCfg);

108 109 110 111 112
void raftCfgIndexPrint(SRaftCfgIndex *pCfg);
void raftCfgIndexPrint2(char *s, SRaftCfgIndex *pCfg);
void raftCfgIndexLog(SRaftCfgIndex *pCfg);
void raftCfgIndexLog2(char *s, SRaftCfgIndex *pCfg);

M
Minghao Li 已提交
113 114 115 116 117
#ifdef __cplusplus
}
#endif

#endif /*_TD_LIBS_SYNC_RAFT_CFG_H*/