mirror of
https://github.com/taosdata/TDengine
synced 2026-05-24 10:09:01 +00:00
238 lines
6.3 KiB
C
238 lines
6.3 KiB
C
/*
|
|
* 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 "vnodeInt.h"
|
|
|
|
static int metaSaveToTbDb(SMeta *pMeta, int64_t version, const SMetaEntry *pME);
|
|
static int metaUpdateUidIdx(SMeta *pMeta, tb_uid_t uid, int64_t version);
|
|
static int metaUpdateNameIdx(SMeta *pMeta, const char *name, tb_uid_t uid);
|
|
static int metaCreateNormalTable(SMeta *pMeta, int64_t version, SMetaEntry *pME);
|
|
static int metaCreateChildTable(SMeta *pMeta, int64_t version, SMetaEntry *pME);
|
|
static int metaUpdateTtlIdx(SMeta *pMeta, int64_t dtime, tb_uid_t uid);
|
|
|
|
int metaCreateSTable(SMeta *pMeta, int64_t version, SVCreateStbReq *pReq) {
|
|
SSkmDbKey skmDbKey = {0};
|
|
SMetaEntry me = {0};
|
|
int kLen = 0;
|
|
int vLen = 0;
|
|
const void *pKey = NULL;
|
|
const void *pVal = NULL;
|
|
void *pBuf = NULL;
|
|
int32_t szBuf = 0;
|
|
void *p = NULL;
|
|
SCoder coder = {0};
|
|
|
|
{
|
|
// TODO: validate request (uid and name unique)
|
|
}
|
|
|
|
// set structs
|
|
me.type = TSDB_SUPER_TABLE;
|
|
me.uid = pReq->suid;
|
|
me.name = pReq->name;
|
|
me.stbEntry.nCols = pReq->nCols;
|
|
me.stbEntry.sver = pReq->sver;
|
|
me.stbEntry.pSchema = pReq->pSchema;
|
|
me.stbEntry.nTags = pReq->nTags;
|
|
me.stbEntry.pSchemaTg = pReq->pSchemaTg;
|
|
|
|
skmDbKey.uid = pReq->suid;
|
|
skmDbKey.sver = 0; // (TODO)
|
|
|
|
// save to table.db
|
|
if (metaSaveToTbDb(pMeta, version, &me) < 0) goto _err;
|
|
|
|
// save to schema.db (TODO)
|
|
// if (metaSaveToSkmDb(pMeta) < 0) goto _err;
|
|
|
|
// update uid idx
|
|
if (metaUpdateUidIdx(pMeta, me.uid, version) < 0) goto _err;
|
|
|
|
// update name.idx
|
|
if (metaUpdateNameIdx(pMeta, me.name, me.uid) < 0) goto _err;
|
|
|
|
metaDebug("vgId: %d super table is created, name:%s uid: %" PRId64, TD_VID(pMeta->pVnode), pReq->name, pReq->suid);
|
|
|
|
return 0;
|
|
|
|
_err:
|
|
metaError("vgId: %d failed to create super table: %s uid: %" PRId64 " since %s", TD_VID(pMeta->pVnode), pReq->name,
|
|
pReq->suid, tstrerror(terrno));
|
|
return -1;
|
|
}
|
|
|
|
int metaDropSTable(SMeta *pMeta, int64_t verison, SVDropStbReq *pReq) {
|
|
// TODO
|
|
return 0;
|
|
}
|
|
|
|
int metaCreateTable(SMeta *pMeta, int64_t version, SVCreateTbReq *pReq) {
|
|
SMetaEntry me = {0};
|
|
|
|
// validate message
|
|
if (pReq->type != TSDB_CHILD_TABLE && pReq->type != TSDB_NORMAL_TABLE) {
|
|
terrno = TSDB_CODE_INVALID_MSG;
|
|
goto _err;
|
|
}
|
|
|
|
// preprocess req
|
|
pReq->uid = tGenIdPI64();
|
|
pReq->ctime = taosGetTimestampSec();
|
|
|
|
{
|
|
// TODO: validate request (uid and name unique)
|
|
// for child table, also check if super table exists
|
|
}
|
|
|
|
// build SMetaEntry
|
|
me.type = pReq->type;
|
|
me.uid = pReq->uid;
|
|
me.name = pReq->name;
|
|
if (me.type == TSDB_CHILD_TABLE) {
|
|
me.ctbEntry.ctime = pReq->ctime;
|
|
me.ctbEntry.ttlDays = pReq->ttl;
|
|
me.ctbEntry.suid = pReq->ctb.suid;
|
|
me.ctbEntry.pTags = pReq->ctb.pTag;
|
|
} else {
|
|
me.ntbEntry.ctime = pReq->ctime;
|
|
me.ntbEntry.ttlDays = pReq->ttl;
|
|
me.ntbEntry.nCols = pReq->ntb.nCols;
|
|
me.ntbEntry.sver = pReq->ntb.sver;
|
|
me.ntbEntry.pSchema = pReq->ntb.pSchema;
|
|
}
|
|
|
|
// save table
|
|
if (me.type == TSDB_CHILD_TABLE) {
|
|
if (metaCreateChildTable(pMeta, version, &me) < 0) {
|
|
goto _err;
|
|
}
|
|
} else {
|
|
if (metaCreateNormalTable(pMeta, version, &me) < 0) {
|
|
goto _err;
|
|
}
|
|
}
|
|
|
|
metaDebug("vgId:%d table %s uid %" PRId64 " is created", TD_VID(pMeta->pVnode), pReq->name, pReq->uid);
|
|
return 0;
|
|
|
|
_err:
|
|
metaError("vgId:%d failed to create table:%s type:%s since %s", TD_VID(pMeta->pVnode), pReq->name,
|
|
pReq->type == TSDB_CHILD_TABLE ? "child table" : "normal table", tstrerror(terrno));
|
|
return -1;
|
|
}
|
|
|
|
int metaDropTable(SMeta *pMeta, tb_uid_t uid) {
|
|
#if 0
|
|
if (metaRemoveTableFromIdx(pMeta, uid) < 0) {
|
|
// TODO: handle error
|
|
return -1;
|
|
}
|
|
|
|
if (metaRemoveTableFromIdx(pMeta, uid) < 0) {
|
|
// TODO
|
|
return -1;
|
|
}
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int metaSaveToTbDb(SMeta *pMeta, int64_t version, const SMetaEntry *pME) {
|
|
STbDbKey tbDbKey;
|
|
void *pKey = NULL;
|
|
void *pVal = NULL;
|
|
int kLen = 0;
|
|
int vLen = 0;
|
|
SCoder coder = {0};
|
|
|
|
// set key and value
|
|
tbDbKey.version = version;
|
|
tbDbKey.uid = pME->uid;
|
|
|
|
pKey = &tbDbKey;
|
|
kLen = sizeof(tbDbKey);
|
|
|
|
if (tEncodeSize(metaEncodeEntry, pME, vLen) < 0) {
|
|
goto _err;
|
|
}
|
|
|
|
pVal = taosMemoryMalloc(vLen);
|
|
if (pVal == NULL) {
|
|
terrno = TSDB_CODE_OUT_OF_MEMORY;
|
|
goto _err;
|
|
}
|
|
|
|
tCoderInit(&coder, TD_LITTLE_ENDIAN, pVal, vLen, TD_ENCODER);
|
|
|
|
if (metaEncodeEntry(&coder, pME) < 0) {
|
|
goto _err;
|
|
}
|
|
|
|
tCoderClear(&coder);
|
|
|
|
// write to table.db
|
|
if (tdbDbInsert(pMeta->pTbDb, pKey, kLen, pVal, vLen, NULL) < 0) {
|
|
goto _err;
|
|
}
|
|
|
|
taosMemoryFree(pVal);
|
|
return 0;
|
|
|
|
_err:
|
|
taosMemoryFree(pVal);
|
|
return -1;
|
|
}
|
|
|
|
static int metaUpdateUidIdx(SMeta *pMeta, tb_uid_t uid, int64_t version) {
|
|
return tdbDbInsert(pMeta->pUidIdx, &uid, sizeof(uid), &version, sizeof(version), NULL);
|
|
}
|
|
|
|
static int metaUpdateNameIdx(SMeta *pMeta, const char *name, tb_uid_t uid) {
|
|
return tdbDbInsert(pMeta->pNameIdx, name, strlen(name) + 1, &uid, sizeof(uid), NULL);
|
|
}
|
|
|
|
static int metaUpdateTtlIdx(SMeta *pMeta, int64_t dtime, tb_uid_t uid) {
|
|
STtlIdxKey ttlKey = {.dtime = dtime, .uid = uid};
|
|
return tdbDbInsert(pMeta->pTtlIdx, &ttlKey, sizeof(ttlKey), NULL, 0, NULL);
|
|
}
|
|
|
|
static int metaCreateChildTable(SMeta *pMeta, int64_t version, SMetaEntry *pME) {
|
|
// TODO
|
|
return 0;
|
|
}
|
|
|
|
static int metaCreateNormalTable(SMeta *pMeta, int64_t version, SMetaEntry *pME) {
|
|
int64_t dtime;
|
|
|
|
// save to table.db
|
|
if (metaSaveToTbDb(pMeta, version, pME) < 0) return -1;
|
|
|
|
// save to schema.db
|
|
|
|
// update uid.idx
|
|
if (metaUpdateUidIdx(pMeta, pME->uid, version) < 0) return -1;
|
|
|
|
// save to name.idx
|
|
if (metaUpdateNameIdx(pMeta, pME->name, pME->uid) < 0) return -1;
|
|
|
|
// save to pTtlIdx if need
|
|
if (pME->ntbEntry.ttlDays > 0) {
|
|
dtime = pME->ntbEntry.ctime + pME->ntbEntry.ttlDays * 24 * 60;
|
|
|
|
if (metaUpdateTtlIdx(pMeta, dtime, pME->uid) < 0) return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|