syncSnapshot.h 2.1 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 29
#include "taosdef.h"

M
Minghao Li 已提交
30
typedef struct SSyncSnapshotSender {
31 32 33
  int32_t    sending;
  int32_t    received;
  bool       finish;
M
Minghao Li 已提交
34
  void *     pCurrentBlock;
35 36
  int32_t    blockLen;
  int64_t    sendingMS;
M
Minghao Li 已提交
37
  SSnapshot *pSnapshot;
M
Minghao Li 已提交
38
  SSyncNode *pSyncNode;
M
Minghao Li 已提交
39 40
} SSyncSnapshotSender;

M
Minghao Li 已提交
41 42 43 44 45
SSyncSnapshotSender *snapshotSenderCreate(SSyncNode *pSyncNode);
void                 snapshotSenderDestroy(SSyncSnapshotSender *pSender);
int32_t              snapshotSend(SSyncSnapshotSender *pSender);
cJSON *              snapshotSender2Json(SSyncSnapshotSender *pSender);
char *               snapshotSender2Str(SSyncSnapshotSender *pSender);
M
Minghao Li 已提交
46 47

typedef struct SSyncSnapshotReceiver {
48 49
  bool       start;
  int32_t    received;
M
Minghao Li 已提交
50 51 52 53
  int32_t    progressIndex;
  void *     pCurrentBlock;
  int32_t    len;
  SSnapshot *pSnapshot;
M
Minghao Li 已提交
54
  SSyncNode *pSyncNode;
M
Minghao Li 已提交
55 56
} SSyncSnapshotReceiver;

M
Minghao Li 已提交
57 58 59 60 61
SSyncSnapshotReceiver *snapshotReceiverCreate(SSyncNode *pSyncNode);
void                   snapshotReceiverDestroy(SSyncSnapshotReceiver *pReceiver);
int32_t                snapshotReceive(SSyncSnapshotReceiver *pReceiver);
cJSON *                snapshotReceiver2Json(SSyncSnapshotReceiver *pReceiver);
char *                 snapshotReceiver2Str(SSyncSnapshotReceiver *pReceiver);
M
Minghao Li 已提交
62 63 64 65 66 67

#ifdef __cplusplus
}
#endif

#endif /*_TD_LIBS_SYNC_SNAPSHOT_H*/