/* * Copyright (c) 2019 TAOS Data, Inc. * * 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 . */ #ifndef MOCK_CATALOG_SERVICE_H #define MOCK_CATALOG_SERVICE_H #include #include #include #include "catalog.h" class ITableBuilder { public: ITableBuilder& addTag(const std::string& name, int8_t type) { return addColumn(name, type, tDataTypes[type].bytes); } ITableBuilder& addTag(const std::string& name, int8_t type, int32_t bytes) { return addColumn(name, type, bytes); } ITableBuilder& addColumn(const std::string& name, int8_t type) { return addColumn(name, type, tDataTypes[type].bytes); } virtual ITableBuilder& addColumn(const std::string& name, int8_t type, int32_t bytes) = 0; virtual ITableBuilder& setVgid(int16_t vgid) = 0; virtual ITableBuilder& setPrecision(uint8_t precision) = 0; virtual void done() = 0; }; struct MockTableMeta { std::shared_ptr schema; std::vector vgs; }; class MockCatalogServiceImpl; class MockCatalogService { public: MockCatalogService(); ~MockCatalogService(); ITableBuilder& createTableBuilder(const std::string& db, const std::string& tbname, int8_t tableType, int32_t numOfColumns, int32_t numOfTags = 0); void createSubTable(const std::string& db, const std::string& stbname, const std::string& tbname, int16_t vgid); void showTables() const; std::shared_ptr getTableMeta(const std::string& db, const std::string& tbname) const; // mock interface int32_t catalogGetHandle(const char *clusterId, struct SCatalog** catalogHandle) const; int32_t catalogGetTableMeta(struct SCatalog* pCatalog, void *pRpc, const SEpSet* pMgmtEps, const char* pDBName, const char* pTableName, STableMeta** pTableMeta) const; private: std::unique_ptr impl_; }; extern std::unique_ptr mockCatalogService; #endif // MOCK_CATALOG_SERVICE_H