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

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;
M
Minghao Li 已提交
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;
M
Minghao Li 已提交
50 51
} SSyncSnapshotSender;

M
Minghao Li 已提交
52
SSyncSnapshotSender *snapshotSenderCreate(SSyncNode *pSyncNode, int32_t replicaIndex);
M
Minghao Li 已提交
53
void                 snapshotSenderDestroy(SSyncSnapshotSender *pSender);
M
Minghao Li 已提交
54 55
void                 snapshotSenderStart(SSyncSnapshotSender *pSender);
void                 snapshotSenderStop(SSyncSnapshotSender *pSender);
M
Minghao Li 已提交
56
int32_t              snapshotSend(SSyncSnapshotSender *pSender);
M
Minghao Li 已提交
57 58
cJSON               *snapshotSender2Json(SSyncSnapshotSender *pSender);
char                *snapshotSender2Str(SSyncSnapshotSender *pSender);
M
Minghao Li 已提交
59 60

typedef struct SSyncSnapshotReceiver {
61 62 63
  bool start;

  int32_t  ack;
M
Minghao Li 已提交
64 65
  void    *pWriter;
  void    *pCurrentBlock;
66 67 68
  int32_t  blockLen;
  SyncTerm term;

M
Minghao Li 已提交
69
  SSyncNode *pSyncNode;
M
Minghao Li 已提交
70
  int32_t    replicaIndex;
M
Minghao Li 已提交
71 72
} SSyncSnapshotReceiver;

73
SSyncSnapshotReceiver *snapshotReceiverCreate(SSyncNode *pSyncNode, int32_t replicaIndex);
M
Minghao Li 已提交
74
void                   snapshotReceiverDestroy(SSyncSnapshotReceiver *pReceiver);
M
Minghao Li 已提交
75 76
void                   snapshotReceiverStart(SSyncSnapshotReceiver *pReceiver);
void                   snapshotReceiverStop(SSyncSnapshotReceiver *pReceiver);
M
Minghao Li 已提交
77 78
cJSON                 *snapshotReceiver2Json(SSyncSnapshotReceiver *pReceiver);
char                  *snapshotReceiver2Str(SSyncSnapshotReceiver *pReceiver);
M
Minghao Li 已提交
79 80 81

int32_t syncNodeOnSnapshotSendCb(SSyncNode *ths, SyncSnapshotSend *pMsg);
int32_t syncNodeOnSnapshotRspCb(SSyncNode *ths, SyncSnapshotRsp *pMsg);
M
Minghao Li 已提交
82 83 84 85 86 87

#ifdef __cplusplus
}
#endif

#endif /*_TD_LIBS_SYNC_SNAPSHOT_H*/