/* * 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 _TD_META_H_ #define _TD_META_H_ #include "impl/metaImpl.h" #ifdef __cplusplus extern "C" { #endif // Types exported typedef struct SMeta SMeta; typedef struct SMetaOptions SMetaOptions; typedef struct STbOptions STbOptions; // SMeta operations SMeta *metaOpen(const char *path, const SMetaOptions *); void metaClose(SMeta *); void metaRemove(const char *path); int metaCreateTable(SMeta *pMeta, const STbOptions *); int metaDropTable(SMeta *pMeta, tb_uid_t uid); int metaCommit(SMeta *); // Options void metaOptionsInit(SMetaOptions *); void metaOptionsClear(SMetaOptions *); // STableOpts #define META_TABLE_OPTS_DECLARE(name) STableOpts name = {0} void metaNormalTableOptsInit(STbOptions *, const char *name, const STSchema *pSchema); void metaSuperTableOptsInit(STbOptions *, const char *name, tb_uid_t uid, const STSchema *pSchema, const STSchema *pTagSchema); void metaChildTableOptsInit(STbOptions *, const char *name, tb_uid_t suid, const SKVRow tags); void metaTableOptsClear(STbOptions *); #ifdef __cplusplus } #endif #endif /*_TD_META_H_*/