syncSnapshot.h 3.0 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"

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

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

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

M
Minghao Li 已提交
54
SSyncSnapshotSender *snapshotSenderCreate(SSyncNode *pSyncNode, int32_t replicaIndex);
M
Minghao Li 已提交
55
void                 snapshotSenderDestroy(SSyncSnapshotSender *pSender);
M
Minghao Li 已提交
56 57 58 59 60
bool                 snapshotSenderIsStart(SSyncSnapshotSender *pSender);
void                 snapshotSenderStart(SSyncSnapshotSender *pSender);
void                 snapshotSenderStop(SSyncSnapshotSender *pSender);
int32_t              snapshotSend(SSyncSnapshotSender *pSender);
int32_t              snapshotReSend(SSyncSnapshotSender *pSender);
61 62
cJSON *              snapshotSender2Json(SSyncSnapshotSender *pSender);
char *               snapshotSender2Str(SSyncSnapshotSender *pSender);
M
Minghao Li 已提交
63 64

typedef struct SSyncSnapshotReceiver {
65 66 67
  bool start;

  int32_t  ack;
68
  void *   pWriter;
69
  SyncTerm term;
70
  SyncTerm privateTerm;
71

M
Minghao Li 已提交
72
  SSyncNode *pSyncNode;
73 74
  SRaftId    fromId;

M
Minghao Li 已提交
75 76
} SSyncSnapshotReceiver;

77
SSyncSnapshotReceiver *snapshotReceiverCreate(SSyncNode *pSyncNode, SRaftId fromId);
M
Minghao Li 已提交
78
void                   snapshotReceiverDestroy(SSyncSnapshotReceiver *pReceiver);
79
void                   snapshotReceiverStart(SSyncSnapshotReceiver *pReceiver, SyncTerm privateTerm, SRaftId fromId);
80
bool                   snapshotReceiverIsStart(SSyncSnapshotReceiver *pReceiver);
81
void                   snapshotReceiverStop(SSyncSnapshotReceiver *pReceiver, bool apply);
82 83
cJSON *                snapshotReceiver2Json(SSyncSnapshotReceiver *pReceiver);
char *                 snapshotReceiver2Str(SSyncSnapshotReceiver *pReceiver);
M
Minghao Li 已提交
84 85 86

int32_t syncNodeOnSnapshotSendCb(SSyncNode *ths, SyncSnapshotSend *pMsg);
int32_t syncNodeOnSnapshotRspCb(SSyncNode *ths, SyncSnapshotRsp *pMsg);
M
Minghao Li 已提交
87 88 89 90 91 92

#ifdef __cplusplus
}
#endif

#endif /*_TD_LIBS_SYNC_SNAPSHOT_H*/