syncLogStoreCheck2.cpp 1.7 KB
Newer Older
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 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
#include <gtest/gtest.h>
#include <stdio.h>
#include "syncEnv.h"
#include "syncIO.h"
#include "syncInt.h"
#include "syncRaftLog.h"
#include "syncRaftStore.h"
#include "syncUtil.h"
#include "wal.h"

void logTest() {
  sTrace("--- sync log test: trace");
  sDebug("--- sync log test: debug");
  sInfo("--- sync log test: info");
  sWarn("--- sync log test: warn");
  sError("--- sync log test: error");
  sFatal("--- sync log test: fatal");
}

void init() {
  int code = walInit();
  assert(code == 0);
}

void cleanup() { walCleanUp(); }

SWal* createWal(char* path, int32_t vgId) {
  SWalCfg walCfg;
  memset(&walCfg, 0, sizeof(SWalCfg));
  walCfg.vgId = vgId;
  walCfg.fsyncPeriod = 1000;
  walCfg.retentionPeriod = 1000;
  walCfg.rollPeriod = 1000;
  walCfg.retentionSize = 1000;
  walCfg.segSize = 1000;
  walCfg.level = TAOS_WAL_FSYNC;
  SWal* pWal = walOpen(path, &walCfg);
  assert(pWal != NULL);
  return pWal;
}

SSyncNode* createSyncNode(SWal* pWal) {
  SSyncNode* pSyncNode = (SSyncNode*)taosMemoryMalloc(sizeof(SSyncNode));
  memset(pSyncNode, 0, sizeof(SSyncNode));
  pSyncNode->pWal = pWal;
  return pSyncNode;
}

void usage(char* exe) { printf("usage: %s path vgId \n", exe); }

int main(int argc, char** argv) {
  if (argc != 3) {
    usage(argv[0]);
    exit(-1);
  }
  char*   path = argv[1];
  int32_t vgId = atoi(argv[2]);

  init();
  SWal* pWal = createWal(path, vgId);
  assert(pWal != NULL);
  SSyncNode* pSyncNode = createSyncNode(pWal);
  assert(pSyncNode != NULL);

  SSyncLogStore* pLog = logStoreCreate(pSyncNode);
  assert(pLog != NULL);

  logStorePrint2((char*)"==syncLogStoreCheck==", pLog);

  walClose(pWal);
  logStoreDestory(pLog);
  taosMemoryFree(pSyncNode);

  cleanup();
  return 0;
}