mockCatalog.cpp 3.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * 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/>.
 */

#include "mockCatalog.h"

#include <iostream>

X
Xiaoyu Wang 已提交
20 21 22
#include "stub.h"
#include "addr_any.h"

23 24 25
namespace {

void generateTestT1(MockCatalogService* mcs) {
26
  ITableBuilder& builder = mcs->createTableBuilder("root.test", "t1", TSDB_NORMAL_TABLE, 3)
27
      .setPrecision(TSDB_TIME_PRECISION_MILLI).setVgid(1).addColumn("ts", TSDB_DATA_TYPE_TIMESTAMP)
28
      .addColumn("c1", TSDB_DATA_TYPE_INT).addColumn("c2", TSDB_DATA_TYPE_BINARY, 20);
29 30 31 32
  builder.done();
}

void generateTestST1(MockCatalogService* mcs) {
33
  ITableBuilder& builder = mcs->createTableBuilder("root.test", "st1", TSDB_SUPER_TABLE, 3, 2)
34
      .setPrecision(TSDB_TIME_PRECISION_MILLI).addColumn("ts", TSDB_DATA_TYPE_TIMESTAMP)
35 36
      .addTag("tag1", TSDB_DATA_TYPE_INT).addTag("tag2", TSDB_DATA_TYPE_BINARY, 20)
      .addColumn("c1", TSDB_DATA_TYPE_INT).addColumn("c2", TSDB_DATA_TYPE_BINARY, 20);
37
  builder.done();
38 39
  mcs->createSubTable("root.test", "st1", "st1s1", 1);
  mcs->createSubTable("root.test", "st1", "st1s2", 2);
40 41 42 43
}

}

X
Xiaoyu Wang 已提交
44
int32_t __catalogGetHandle(const char *clusterId, struct SCatalog** catalogHandle) {
X
Xiaoyu Wang 已提交
45
  return 0;
46 47
}

X
Xiaoyu Wang 已提交
48
int32_t __catalogGetTableMeta(struct SCatalog* pCatalog, void *pRpc, const SEpSet* pMgmtEps, const char* pDBName, const char* pTableName, STableMeta** pTableMeta) {
X
Xiaoyu Wang 已提交
49 50 51 52 53
  return mockCatalogService->catalogGetTableMeta(pDBName, pTableName, pTableMeta);
}

int32_t __catalogGetTableHashVgroup(struct SCatalog* pCatalog, void *pRpc, const SEpSet* pMgmtEps, const char* pDBName, const char* pTableName, SVgroupInfo* vgInfo) {
  return mockCatalogService->catalogGetTableHashVgroup(pDBName, pTableName, vgInfo);
54 55
}

56 57
void initMetaDataEnv() {
  mockCatalogService.reset(new MockCatalogService());
X
Xiaoyu Wang 已提交
58 59 60 61

  static Stub stub;
  stub.set(catalogGetHandle, __catalogGetHandle);
  stub.set(catalogGetTableMeta, __catalogGetTableMeta);
X
Xiaoyu Wang 已提交
62
  stub.set(catalogGetTableHashVgroup, __catalogGetTableHashVgroup);
X
Xiaoyu Wang 已提交
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
  {
    AddrAny any("libcatalog.so");
    std::map<std::string,void*> result;
    any.get_global_func_addr_dynsym("^catalogGetHandle$", result);
    for (const auto& f : result) {
      stub.set(f.second, __catalogGetHandle);
    }
  }
  {
    AddrAny any("libcatalog.so");
    std::map<std::string,void*> result;
    any.get_global_func_addr_dynsym("^catalogGetTableMeta$", result);
    for (const auto& f : result) {
      stub.set(f.second, __catalogGetTableMeta);
    }
  }
X
Xiaoyu Wang 已提交
79 80 81 82 83 84 85 86
  {
    AddrAny any("libcatalog.so");
    std::map<std::string,void*> result;
    any.get_global_func_addr_dynsym("^catalogGetTableHashVgroup$", result);
    for (const auto& f : result) {
      stub.set(f.second, __catalogGetTableHashVgroup);
    }
  }
87 88 89 90 91 92 93 94 95 96
}

void generateMetaData() {
  generateTestT1(mockCatalogService.get());
  generateTestST1(mockCatalogService.get());
  mockCatalogService->showTables();
}

void destroyMetaDataEnv() {
  mockCatalogService.reset();
97
}