syncSnapshot.h 3.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_SNAPSHOT_H
#define _TD_LIBS_SYNC_SNAPSHOT_H

#ifdef __cplusplus
extern "C" {
#endif

#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
M
Minghao Li 已提交
26
#include "cJSON.h"
M
Minghao Li 已提交
27
#include "syncInt.h"
M
Minghao Li 已提交
28
#include "syncMessage.h"
M
Minghao Li 已提交
29 30
#include "taosdef.h"

31
#define SYNC_SNAPSHOT_SEQ_INVALID -1
M
Minghao Li 已提交
32
#define SYNC_SNAPSHOT_SEQ_FORCE_CLOSE -2
33 34
#define SYNC_SNAPSHOT_SEQ_BEGIN 0
#define SYNC_SNAPSHOT_SEQ_END 0x7FFFFFFF
M
Minghao Li 已提交
35

M
Minghao Li 已提交
36 37
#define SYNC_SNAPSHOT_RETRY_MS 5000

38
//---------------------------------------------------
M
Minghao Li 已提交
39
typedef struct SSyncSnapshotSender {
40 41 42
  bool           start;
  int32_t        seq;
  int32_t        ack;
M
Minghao Li 已提交
43 44
  void          *pReader;
  void          *pCurrentBlock;
45 46 47 48 49
  int32_t        blockLen;
  SSnapshotParam snapshotParam;
  SSnapshot      snapshot;
  SSyncCfg       lastConfig;
  int64_t        sendingMS;
M
Minghao Li 已提交
50
  SSyncNode     *pSyncNode;
51 52 53
  int32_t        replicaIndex;
  SyncTerm       term;
  SyncTerm       privateTerm;
54
  int64_t        startTime;
55
  bool           finish;
M
Minghao Li 已提交
56 57
} SSyncSnapshotSender;

M
Minghao Li 已提交
58
SSyncSnapshotSender *snapshotSenderCreate(SSyncNode *pSyncNode, int32_t replicaIndex);
M
Minghao Li 已提交
59
void                 snapshotSenderDestroy(SSyncSnapshotSender *pSender);
M
Minghao Li 已提交
60
bool                 snapshotSenderIsStart(SSyncSnapshotSender *pSender);
61 62
int32_t              snapshotSenderStart(SSyncSnapshotSender *pSender, SSnapshotParam snapshotParam, SSnapshot snapshot,
                                         void *pReader);
63
int32_t              snapshotSenderStop(SSyncSnapshotSender *pSender, bool finish);
M
Minghao Li 已提交
64 65
int32_t              snapshotSend(SSyncSnapshotSender *pSender);
int32_t              snapshotReSend(SSyncSnapshotSender *pSender);
M
Minghao Li 已提交
66

67
cJSON *snapshotSender2Json(SSyncSnapshotSender *pSender);
M
Minghao Li 已提交
68 69
char  *snapshotSender2Str(SSyncSnapshotSender *pSender);
char  *snapshotSender2SimpleStr(SSyncSnapshotSender *pSender, char *event);
70 71

int32_t syncNodeStartSnapshot(SSyncNode *pSyncNode, SRaftId *pDestId);
72

73 74
//---------------------------------------------------
typedef struct SSyncSnapshotReceiver {
75 76
  bool           start;
  int32_t        ack;
M
Minghao Li 已提交
77
  void          *pWriter;
78 79 80 81 82
  SyncTerm       term;
  SyncTerm       privateTerm;
  SSnapshotParam snapshotParam;
  SSnapshot      snapshot;
  SRaftId        fromId;
M
Minghao Li 已提交
83
  SSyncNode     *pSyncNode;
84

M
Minghao Li 已提交
85 86
} SSyncSnapshotReceiver;

87
SSyncSnapshotReceiver *snapshotReceiverCreate(SSyncNode *pSyncNode, SRaftId fromId);
M
Minghao Li 已提交
88
void                   snapshotReceiverDestroy(SSyncSnapshotReceiver *pReceiver);
89 90 91
int32_t                snapshotReceiverStart(SSyncSnapshotReceiver *pReceiver, SyncSnapshotSend *pBeginMsg);
int32_t                snapshotReceiverStop(SSyncSnapshotReceiver *pReceiver);
bool                   snapshotReceiverIsStart(SSyncSnapshotReceiver *pReceiver);
92
void                   snapshotReceiverForceStop(SSyncSnapshotReceiver *pReceiver);
93

M
Minghao Li 已提交
94
cJSON *snapshotReceiver2Json(SSyncSnapshotReceiver *pReceiver);
M
Minghao Li 已提交
95 96
char  *snapshotReceiver2Str(SSyncSnapshotReceiver *pReceiver);
char  *snapshotReceiver2SimpleStr(SSyncSnapshotReceiver *pReceiver, char *event);
M
Minghao Li 已提交
97

98 99
//---------------------------------------------------
// on message
M
Minghao Li 已提交
100 101 102
int32_t syncNodeOnSnapshot(SSyncNode *ths, SyncSnapshotSend *pMsg);
int32_t syncNodeOnSnapshotReply(SSyncNode *ths, SyncSnapshotRsp *pMsg);

M
Minghao Li 已提交
103 104 105 106 107
#ifdef __cplusplus
}
#endif

#endif /*_TD_LIBS_SYNC_SNAPSHOT_H*/