metaQuery.c 39.7 KB
Newer Older
H
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * 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/>.
 */

H
Hongze Cheng 已提交
16
#include "meta.h"
D
dapan1121 已提交
17 18
#include "osMemory.h"
#include "tencode.h"
H
Hongze Cheng 已提交
19

H
Hongze Cheng 已提交
20
void metaReaderInit(SMetaReader *pReader, SMeta *pMeta, int32_t flags) {
H
Hongze Cheng 已提交
21 22
  memset(pReader, 0, sizeof(*pReader));
  pReader->flags = flags;
H
Hongze Cheng 已提交
23
  pReader->pMeta = pMeta;
24
  if (pReader->pMeta && !(flags & META_READER_NOLOCK)) {
25 26
    metaRLock(pMeta);
  }
H
Hongze Cheng 已提交
27
}
H
Hongze Cheng 已提交
28

29 30 31 32 33 34 35
void metaReaderReleaseLock(SMetaReader *pReader) {
  if (pReader->pMeta && !(pReader->flags & META_READER_NOLOCK)) {
    metaULock(pReader->pMeta);
    pReader->flags |= META_READER_NOLOCK;
  }
}

H
Hongze Cheng 已提交
36
void metaReaderClear(SMetaReader *pReader) {
37
  if (pReader->pMeta && !(pReader->flags & META_READER_NOLOCK)) {
H
Hongze Cheng 已提交
38 39
    metaULock(pReader->pMeta);
  }
H
Hongze Cheng 已提交
40
  tDecoderClear(&pReader->coder);
H
Hongze Cheng 已提交
41
  tdbFree(pReader->pBuf);
H
Hongze Cheng 已提交
42 43
}

H
Hongze Cheng 已提交
44
int metaGetTableEntryByVersion(SMetaReader *pReader, int64_t version, tb_uid_t uid) {
H
Hongze Cheng 已提交
45
  SMeta   *pMeta = pReader->pMeta;
H
Hongze Cheng 已提交
46 47
  STbDbKey tbDbKey = {.version = version, .uid = uid};

H
Hongze Cheng 已提交
48
  // query table.db
H
Hongze Cheng 已提交
49
  if (tdbTbGet(pMeta->pTbDb, &tbDbKey, sizeof(tbDbKey), &pReader->pBuf, &pReader->szBuf) < 0) {
H
Hongze Cheng 已提交
50
    terrno = TSDB_CODE_PAR_TABLE_NOT_EXIST;
H
Hongze Cheng 已提交
51 52 53 54
    goto _err;
  }

  // decode the entry
H
Hongze Cheng 已提交
55
  tDecoderInit(&pReader->coder, pReader->pBuf, pReader->szBuf);
H
Hongze Cheng 已提交
56 57 58 59 60 61 62 63 64 65 66

  if (metaDecodeEntry(&pReader->coder, &pReader->me) < 0) {
    goto _err;
  }

  return 0;

_err:
  return -1;
}

dengyihao's avatar
dengyihao 已提交
67
// int metaGetTableEntryByUidTest(void* meta, SArray *uidList) {
wmmhello's avatar
wmmhello 已提交
68
//
dengyihao's avatar
dengyihao 已提交
69 70 71 72 73
//   SArray* readerList = taosArrayInit(taosArrayGetSize(uidList), sizeof(SMetaReader));
//   SArray* uidVersion = taosArrayInit(taosArrayGetSize(uidList), sizeof(STbDbKey));
//   SMeta  *pMeta = meta;
//   int64_t version;
//   SHashObj *uHash = taosHashInit(32, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), false, HASH_NO_LOCK);
wmmhello's avatar
wmmhello 已提交
74
//
dengyihao's avatar
dengyihao 已提交
75 76 77 78 79 80 81 82 83 84
//   int64_t stt1 = taosGetTimestampUs();
//   for(int i = 0; i < taosArrayGetSize(uidList); i++) {
//     void* ppVal = NULL;
//     int vlen = 0;
//     uint64_t *  uid = taosArrayGet(uidList, i);
//     // query uid.idx
//     if (tdbTbGet(pMeta->pUidIdx, uid, sizeof(*uid), &ppVal, &vlen) < 0) {
//       continue;
//     }
//     version = *(int64_t *)ppVal;
wmmhello's avatar
wmmhello 已提交
85
//
dengyihao's avatar
dengyihao 已提交
86 87 88 89 90 91
//     STbDbKey tbDbKey = {.version = version, .uid = *uid};
//     taosArrayPush(uidVersion, &tbDbKey);
//     taosHashPut(uHash, uid, sizeof(int64_t), ppVal, sizeof(int64_t));
//   }
//   int64_t stt2 = taosGetTimestampUs();
//   qDebug("metaGetTableEntryByUidTest1 rows:%d, cost:%ld us", taosArrayGetSize(uidList), stt2-stt1);
wmmhello's avatar
wmmhello 已提交
92
//
dengyihao's avatar
dengyihao 已提交
93 94 95 96 97
//   TBC        *pCur = NULL;
//   tdbTbcOpen(pMeta->pTbDb, &pCur, NULL);
//   tdbTbcMoveToFirst(pCur);
//   void *pKey = NULL;
//   int   kLen = 0;
wmmhello's avatar
wmmhello 已提交
98
//
dengyihao's avatar
dengyihao 已提交
99 100 101 102 103 104 105 106 107 108
//   while(1){
//     SMetaReader pReader = {0};
//     int32_t ret = tdbTbcNext(pCur, &pKey, &kLen, &pReader.pBuf, &pReader.szBuf);
//     if (ret < 0) break;
//     STbDbKey *tmp = (STbDbKey*)pKey;
//     int64_t *ver = (int64_t*)taosHashGet(uHash, &tmp->uid, sizeof(int64_t));
//     if(ver == NULL || *ver != tmp->version) continue;
//     taosArrayPush(readerList, &pReader);
//   }
//   tdbTbcClose(pCur);
wmmhello's avatar
wmmhello 已提交
109
//
dengyihao's avatar
dengyihao 已提交
110 111 112 113 114
//   taosArrayClear(readerList);
//   int64_t stt3 = taosGetTimestampUs();
//   qDebug("metaGetTableEntryByUidTest2 rows:%d, cost:%ld us", taosArrayGetSize(uidList), stt3-stt2);
//   for(int i = 0; i < taosArrayGetSize(uidVersion); i++) {
//     SMetaReader pReader = {0};
wmmhello's avatar
wmmhello 已提交
115
//
dengyihao's avatar
dengyihao 已提交
116 117 118 119 120 121 122 123 124
//     STbDbKey *tbDbKey = taosArrayGet(uidVersion, i);
//     // query table.db
//     if (tdbTbGet(pMeta->pTbDb, tbDbKey, sizeof(STbDbKey), &pReader.pBuf, &pReader.szBuf) < 0) {
//       continue;
//     }
//     taosArrayPush(readerList, &pReader);
//   }
//   int64_t stt4 = taosGetTimestampUs();
//   qDebug("metaGetTableEntryByUidTest3 rows:%d, cost:%ld us", taosArrayGetSize(uidList), stt4-stt3);
wmmhello's avatar
wmmhello 已提交
125
//
dengyihao's avatar
dengyihao 已提交
126 127 128 129 130
//   for(int i = 0; i < taosArrayGetSize(readerList); i++){
//     SMetaReader* pReader  = taosArrayGet(readerList, i);
//     metaReaderInit(pReader, meta, 0);
//     // decode the entry
//     tDecoderInit(&pReader->coder, pReader->pBuf, pReader->szBuf);
wmmhello's avatar
wmmhello 已提交
131
//
dengyihao's avatar
dengyihao 已提交
132 133 134 135 136 137 138 139
//     if (metaDecodeEntry(&pReader->coder, &pReader->me) < 0) {
//     }
//     metaReaderClear(pReader);
//   }
//   int64_t stt5 = taosGetTimestampUs();
//   qDebug("metaGetTableEntryByUidTest4 rows:%d, cost:%ld us", taosArrayGetSize(readerList), stt5-stt4);
//   return 0;
// }
wmmhello's avatar
wmmhello 已提交
140

H
Hongze Cheng 已提交
141
bool metaIsTableExist(SMeta *pMeta, tb_uid_t uid) {
142
  // query uid.idx
143 144
  metaRLock(pMeta);

145
  if (tdbTbGet(pMeta->pUidIdx, &uid, sizeof(uid), NULL, NULL) < 0) {
146 147
    metaULock(pMeta);

148 149 150
    return false;
  }

151 152
  metaULock(pMeta);

153 154 155
  return true;
}

H
Hongze Cheng 已提交
156
int metaGetTableEntryByUid(SMetaReader *pReader, tb_uid_t uid) {
157
  SMeta  *pMeta = pReader->pMeta;
158
  int64_t version1;
H
Hongze Cheng 已提交
159 160

  // query uid.idx
H
Hongze Cheng 已提交
161
  if (tdbTbGet(pMeta->pUidIdx, &uid, sizeof(uid), &pReader->pBuf, &pReader->szBuf) < 0) {
H
Hongze Cheng 已提交
162
    terrno = TSDB_CODE_PAR_TABLE_NOT_EXIST;
H
Hongze Cheng 已提交
163 164 165
    return -1;
  }

166 167
  version1 = ((SUidIdxVal *)pReader->pBuf)[0].version;
  return metaGetTableEntryByVersion(pReader, version1, uid);
H
Hongze Cheng 已提交
168 169
}

H
Haojun Liao 已提交
170 171
int metaGetTableEntryByUidCache(SMetaReader *pReader, tb_uid_t uid) {
  SMeta *pMeta = pReader->pMeta;
172 173 174 175 176 177 178 179

  SMetaInfo info;
  if (metaGetInfo(pMeta, uid, &info, pReader) == TSDB_CODE_NOT_FOUND) {
    terrno = TSDB_CODE_PAR_TABLE_NOT_EXIST;
    return -1;
  }

  return metaGetTableEntryByVersion(pReader, info.version, uid);
H
Hongze Cheng 已提交
180 181
}

H
Hongze Cheng 已提交
182
int metaGetTableEntryByName(SMetaReader *pReader, const char *name) {
H
Hongze Cheng 已提交
183
  SMeta   *pMeta = pReader->pMeta;
H
Hongze Cheng 已提交
184 185 186
  tb_uid_t uid;

  // query name.idx
H
Hongze Cheng 已提交
187
  if (tdbTbGet(pMeta->pNameIdx, name, strlen(name) + 1, &pReader->pBuf, &pReader->szBuf) < 0) {
H
Hongze Cheng 已提交
188
    terrno = TSDB_CODE_PAR_TABLE_NOT_EXIST;
H
Hongze Cheng 已提交
189 190 191 192
    return -1;
  }

  uid = *(tb_uid_t *)pReader->pBuf;
H
Hongze Cheng 已提交
193
  return metaGetTableEntryByUid(pReader, uid);
H
Hongze Cheng 已提交
194 195
}

H
Hongze Cheng 已提交
196
tb_uid_t metaGetTableEntryUidByName(SMeta *pMeta, const char *name) {
H
Hongze Cheng 已提交
197
  void    *pData = NULL;
H
Hongze Cheng 已提交
198 199 200
  int      nData = 0;
  tb_uid_t uid = 0;

wmmhello's avatar
wmmhello 已提交
201 202
  metaRLock(pMeta);

H
Hongze Cheng 已提交
203 204 205 206 207
  if (tdbTbGet(pMeta->pNameIdx, name, strlen(name) + 1, &pData, &nData) == 0) {
    uid = *(tb_uid_t *)pData;
    tdbFree(pData);
  }

wmmhello's avatar
wmmhello 已提交
208 209
  metaULock(pMeta);

210
  return uid;
H
Hongze Cheng 已提交
211 212
}

dengyihao's avatar
dengyihao 已提交
213
int metaGetTableNameByUid(void *meta, uint64_t uid, char *tbName) {
214
  int         code = 0;
D
dapan1121 已提交
215
  SMetaReader mr = {0};
dengyihao's avatar
dengyihao 已提交
216
  metaReaderInit(&mr, (SMeta *)meta, 0);
217 218 219 220 221
  code = metaGetTableEntryByUid(&mr, uid);
  if (code < 0) {
    metaReaderClear(&mr);
    return -1;
  }
D
dapan1121 已提交
222 223 224 225 226 227

  STR_TO_VARSTR(tbName, mr.me.name);
  metaReaderClear(&mr);

  return 0;
}
S
slzhou 已提交
228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243

int metaGetTableSzNameByUid(void *meta, uint64_t uid, char *tbName) {
  int         code = 0;
  SMetaReader mr = {0};
  metaReaderInit(&mr, (SMeta *)meta, 0);
  code = metaGetTableEntryByUid(&mr, uid);
  if (code < 0) {
    metaReaderClear(&mr);
    return -1;
  }
  strncpy(tbName, mr.me.name, TSDB_TABLE_NAME_LEN);
  metaReaderClear(&mr);

  return 0;
}

H
Haojun Liao 已提交
244
int metaGetTableUidByName(void *meta, char *tbName, uint64_t *uid) {
dengyihao's avatar
dengyihao 已提交
245 246 247
  int         code = 0;
  SMetaReader mr = {0};
  metaReaderInit(&mr, (SMeta *)meta, 0);
dengyihao's avatar
dengyihao 已提交
248 249 250 251

  SMetaReader *pReader = &mr;

  // query name.idx
dengyihao's avatar
dengyihao 已提交
252
  if (tdbTbGet(pReader->pMeta->pNameIdx, tbName, strlen(tbName) + 1, &pReader->pBuf, &pReader->szBuf) < 0) {
dengyihao's avatar
dengyihao 已提交
253
    terrno = TSDB_CODE_PAR_TABLE_NOT_EXIST;
dengyihao's avatar
dengyihao 已提交
254 255 256 257
    metaReaderClear(&mr);
    return -1;
  }

dengyihao's avatar
dengyihao 已提交
258
  *uid = *(tb_uid_t *)pReader->pBuf;
dengyihao's avatar
dengyihao 已提交
259

dengyihao's avatar
dengyihao 已提交
260 261 262 263
  metaReaderClear(&mr);

  return 0;
}
D
dapan1121 已提交
264

dengyihao's avatar
dengyihao 已提交
265 266 267 268 269
int metaGetTableTypeByName(void *meta, char *tbName, ETableType *tbType) {
  int         code = 0;
  SMetaReader mr = {0};
  metaReaderInit(&mr, (SMeta *)meta, 0);

dengyihao's avatar
dengyihao 已提交
270 271 272
  code = metaGetTableEntryByName(&mr, tbName);
  if (code == 0) *tbType = mr.me.type;

dengyihao's avatar
dengyihao 已提交
273
  metaReaderClear(&mr);
dengyihao's avatar
dengyihao 已提交
274
  return code;
dengyihao's avatar
dengyihao 已提交
275 276
}

H
Hongze Cheng 已提交
277
int metaReadNext(SMetaReader *pReader) {
H
Hongze Cheng 已提交
278 279
  SMeta *pMeta = pReader->pMeta;

H
Hongze Cheng 已提交
280
  // TODO
H
Hongze Cheng 已提交
281

H
Hongze Cheng 已提交
282 283 284 285
  return 0;
}

#if 1  // ===================================================
H
Hongze Cheng 已提交
286 287 288 289 290 291 292 293
SMTbCursor *metaOpenTbCursor(SMeta *pMeta) {
  SMTbCursor *pTbCur = NULL;

  pTbCur = (SMTbCursor *)taosMemoryCalloc(1, sizeof(*pTbCur));
  if (pTbCur == NULL) {
    return NULL;
  }

H
Hongze Cheng 已提交
294
  metaReaderInit(&pTbCur->mr, pMeta, 0);
H
Hongze Cheng 已提交
295

H
Hongze Cheng 已提交
296
  tdbTbcOpen(pMeta->pUidIdx, &pTbCur->pDbc, NULL);
H
Hongze Cheng 已提交
297

H
Hongze Cheng 已提交
298
  tdbTbcMoveToFirst(pTbCur->pDbc);
H
Hongze Cheng 已提交
299

H
Hongze Cheng 已提交
300 301 302 303 304
  return pTbCur;
}

void metaCloseTbCursor(SMTbCursor *pTbCur) {
  if (pTbCur) {
H
Hongze Cheng 已提交
305 306
    tdbFree(pTbCur->pKey);
    tdbFree(pTbCur->pVal);
H
Hongze Cheng 已提交
307
    metaReaderClear(&pTbCur->mr);
H
Hongze Cheng 已提交
308
    if (pTbCur->pDbc) {
H
Hongze Cheng 已提交
309
      tdbTbcClose(pTbCur->pDbc);
H
Hongze Cheng 已提交
310 311 312 313 314
    }
    taosMemoryFree(pTbCur);
  }
}

X
Xiaoyu Wang 已提交
315
int32_t metaTbCursorNext(SMTbCursor *pTbCur, ETableType jumpTableType) {
H
Hongze Cheng 已提交
316
  int    ret;
H
Hongze Cheng 已提交
317
  void  *pBuf;
H
Hongze Cheng 已提交
318 319 320
  STbCfg tbCfg;

  for (;;) {
H
Hongze Cheng 已提交
321
    ret = tdbTbcNext(pTbCur->pDbc, &pTbCur->pKey, &pTbCur->kLen, &pTbCur->pVal, &pTbCur->vLen);
H
Hongze Cheng 已提交
322 323
    if (ret < 0) {
      return -1;
H
Hongze Cheng 已提交
324 325
    }

M
Minglei Jin 已提交
326 327
    tDecoderClear(&pTbCur->mr.coder);

H
Hongze Cheng 已提交
328
    metaGetTableEntryByVersion(&pTbCur->mr, ((SUidIdxVal *)pTbCur->pVal)[0].version, *(tb_uid_t *)pTbCur->pKey);
wmmhello's avatar
wmmhello 已提交
329
    if (pTbCur->mr.me.type == jumpTableType) {
H
Hongze Cheng 已提交
330 331
      continue;
    }
H
Hongze Cheng 已提交
332 333

    break;
H
Hongze Cheng 已提交
334 335
  }

H
Hongze Cheng 已提交
336
  return 0;
H
Hongze Cheng 已提交
337 338
}

D
dapan1121 已提交
339
int32_t metaTbCursorPrev(SMTbCursor *pTbCur, ETableType jumpTableType) {
340 341 342 343 344 345 346 347 348 349 350 351 352
  int    ret;
  void  *pBuf;
  STbCfg tbCfg;

  for (;;) {
    ret = tdbTbcPrev(pTbCur->pDbc, &pTbCur->pKey, &pTbCur->kLen, &pTbCur->pVal, &pTbCur->vLen);
    if (ret < 0) {
      return -1;
    }

    tDecoderClear(&pTbCur->mr.coder);

    metaGetTableEntryByVersion(&pTbCur->mr, ((SUidIdxVal *)pTbCur->pVal)[0].version, *(tb_uid_t *)pTbCur->pKey);
D
dapan1121 已提交
353
    if (pTbCur->mr.me.type == jumpTableType) {
354 355 356 357 358 359 360 361 362
      continue;
    }

    break;
  }

  return 0;
}

363
SSchemaWrapper *metaGetTableSchema(SMeta *pMeta, tb_uid_t uid, int32_t sver, int lock) {
H
Hongze Cheng 已提交
364
  void           *pData = NULL;
H
Hongze Cheng 已提交
365 366 367 368 369
  int             nData = 0;
  int64_t         version;
  SSchemaWrapper  schema = {0};
  SSchemaWrapper *pSchema = NULL;
  SDecoder        dc = {0};
370 371 372
  if (lock) {
    metaRLock(pMeta);
  }
H
Hongze Cheng 已提交
373 374 375 376
_query:
  if (tdbTbGet(pMeta->pUidIdx, &uid, sizeof(uid), &pData, &nData) < 0) {
    goto _err;
  }
H
Hongze Cheng 已提交
377

H
Hongze Cheng 已提交
378
  version = ((SUidIdxVal *)pData)[0].version;
H
Hongze Cheng 已提交
379

H
Hongze Cheng 已提交
380 381 382 383 384 385
  tdbTbGet(pMeta->pTbDb, &(STbDbKey){.uid = uid, .version = version}, sizeof(STbDbKey), &pData, &nData);
  SMetaEntry me = {0};
  tDecoderInit(&dc, pData, nData);
  metaDecodeEntry(&dc, &me);
  if (me.type == TSDB_SUPER_TABLE) {
    if (sver == -1 || sver == me.stbEntry.schemaRow.version) {
H
Hongze Cheng 已提交
386
      pSchema = tCloneSSchemaWrapper(&me.stbEntry.schemaRow);
H
Hongze Cheng 已提交
387 388
      tDecoderClear(&dc);
      goto _exit;
H
Hongze Cheng 已提交
389
    }
390 391
    {  // Traverse to find the previous qualified data
      TBC *pCur;
392 393
      tdbTbcOpen(pMeta->pTbDb, &pCur, NULL);
      STbDbKey key = {.version = sver, .uid = INT64_MAX};
394
      int      c = 0;
395
      tdbTbcMoveTo(pCur, &key, sizeof(key), &c);
396
      if (c < 0) {
397 398 399 400 401 402
        tdbTbcMoveToPrev(pCur);
      }

      void *pKey = NULL;
      void *pVal = NULL;
      int   vLen = 0, kLen = 0;
403
      while (1) {
404 405 406
        int32_t ret = tdbTbcPrev(pCur, &pKey, &kLen, &pVal, &vLen);
        if (ret < 0) break;

407 408
        STbDbKey *tmp = (STbDbKey *)pKey;
        if (tmp->uid != uid) {
409 410 411 412 413 414 415 416 417
          continue;
        }
        SDecoder   dcNew = {0};
        SMetaEntry meNew = {0};
        tDecoderInit(&dcNew, pVal, vLen);
        metaDecodeEntry(&dcNew, &meNew);
        pSchema = tCloneSSchemaWrapper(&meNew.stbEntry.schemaRow);
        tDecoderClear(&dcNew);
        tdbTbcClose(pCur);
418 419
        tdbFree(pKey);
        tdbFree(pVal);
420 421
        goto _exit;
      }
422 423
      tdbFree(pKey);
      tdbFree(pVal);
424 425
      tdbTbcClose(pCur);
    }
H
Hongze Cheng 已提交
426 427
  } else if (me.type == TSDB_CHILD_TABLE) {
    uid = me.ctbEntry.suid;
H
Hongze Cheng 已提交
428
    tDecoderClear(&dc);
H
Hongze Cheng 已提交
429
    goto _query;
H
Hongze Cheng 已提交
430
  } else {
H
Hongze Cheng 已提交
431 432 433 434
    if (sver == -1 || sver == me.ntbEntry.schemaRow.version) {
      pSchema = tCloneSSchemaWrapper(&me.ntbEntry.schemaRow);
      tDecoderClear(&dc);
      goto _exit;
H
Hongze Cheng 已提交
435
    }
H
Hongze Cheng 已提交
436 437
  }
  tDecoderClear(&dc);
H
Hongze Cheng 已提交
438

H
Hongze Cheng 已提交
439 440 441
  // query from skm db
  if (tdbTbGet(pMeta->pSkmDb, &(SSkmDbKey){.uid = uid, .sver = sver}, sizeof(SSkmDbKey), &pData, &nData) < 0) {
    goto _err;
H
Hongze Cheng 已提交
442
  }
H
Hongze Cheng 已提交
443

H
Hongze Cheng 已提交
444
  tDecoderInit(&dc, pData, nData);
M
Minglei Jin 已提交
445
  tDecodeSSchemaWrapperEx(&dc, &schema);
H
Hongze Cheng 已提交
446 447 448 449
  pSchema = tCloneSSchemaWrapper(&schema);
  tDecoderClear(&dc);

_exit:
450
  tDecoderClear(&dc);
451 452 453
  if (lock) {
    metaULock(pMeta);
  }
H
Hongze Cheng 已提交
454 455
  tdbFree(pData);
  return pSchema;
H
Hongze Cheng 已提交
456

H
Hongze Cheng 已提交
457
_err:
458
  tDecoderClear(&dc);
459 460 461
  if (lock) {
    metaULock(pMeta);
  }
H
Hongze Cheng 已提交
462 463
  tdbFree(pData);
  return NULL;
H
Hongze Cheng 已提交
464 465
}

H
Hongze Cheng 已提交
466 467 468
int metaTtlSmaller(SMeta *pMeta, uint64_t ttl, SArray *uidList) {
  TBC *pCur;
  int  ret = tdbTbcOpen(pMeta->pTtlIdx, &pCur, NULL);
469 470 471 472 473 474 475 476 477 478 479 480 481 482
  if (ret < 0) {
    return ret;
  }

  STtlIdxKey ttlKey = {0};
  ttlKey.dtime = ttl;
  ttlKey.uid = INT64_MAX;
  int c = 0;
  tdbTbcMoveTo(pCur, &ttlKey, sizeof(ttlKey), &c);
  if (c < 0) {
    tdbTbcMoveToPrev(pCur);
  }

  void *pKey = NULL;
H
Hongze Cheng 已提交
483 484
  int   kLen = 0;
  while (1) {
485 486 487 488
    ret = tdbTbcPrev(pCur, &pKey, &kLen, NULL, NULL);
    if (ret < 0) {
      break;
    }
H
Hongze Cheng 已提交
489
    ttlKey = *(STtlIdxKey *)pKey;
490 491
    taosArrayPush(uidList, &ttlKey.uid);
  }
wmmhello's avatar
wmmhello 已提交
492
  tdbFree(pKey);
493 494 495 496
  tdbTbcClose(pCur);
  return 0;
}

H
Hongze Cheng 已提交
497
struct SMCtbCursor {
H
Hongze Cheng 已提交
498 499
  SMeta   *pMeta;
  TBC     *pCur;
H
Hongze Cheng 已提交
500
  tb_uid_t suid;
H
Hongze Cheng 已提交
501 502
  void    *pKey;
  void    *pVal;
H
Hongze Cheng 已提交
503 504 505 506
  int      kLen;
  int      vLen;
};

507
SMCtbCursor *metaOpenCtbCursor(SMeta *pMeta, tb_uid_t uid, int lock) {
H
Hongze Cheng 已提交
508
  SMCtbCursor *pCtbCur = NULL;
H
Hongze Cheng 已提交
509
  SCtbIdxKey   ctbIdxKey;
C
Cary Xu 已提交
510 511
  int          ret = 0;
  int          c = 0;
H
Hongze Cheng 已提交
512

H
Hongze Cheng 已提交
513 514 515 516
  pCtbCur = (SMCtbCursor *)taosMemoryCalloc(1, sizeof(*pCtbCur));
  if (pCtbCur == NULL) {
    return NULL;
  }
H
Hongze Cheng 已提交
517

H
fix  
Hongze Cheng 已提交
518
  pCtbCur->pMeta = pMeta;
H
Hongze Cheng 已提交
519
  pCtbCur->suid = uid;
520 521 522
  if (lock) {
    metaRLock(pMeta);
  }
H
fix  
Hongze Cheng 已提交
523

H
Hongze Cheng 已提交
524
  ret = tdbTbcOpen(pMeta->pCtbIdx, &pCtbCur->pCur, NULL);
H
Hongze Cheng 已提交
525
  if (ret < 0) {
H
fix  
Hongze Cheng 已提交
526
    metaULock(pMeta);
H
Hongze Cheng 已提交
527 528 529
    taosMemoryFree(pCtbCur);
    return NULL;
  }
H
Hongze Cheng 已提交
530

H
Hongze Cheng 已提交
531 532 533
  // move to the suid
  ctbIdxKey.suid = uid;
  ctbIdxKey.uid = INT64_MIN;
H
Hongze Cheng 已提交
534
  tdbTbcMoveTo(pCtbCur->pCur, &ctbIdxKey, sizeof(ctbIdxKey), &c);
H
Hongze Cheng 已提交
535
  if (c > 0) {
H
Hongze Cheng 已提交
536
    tdbTbcMoveToNext(pCtbCur->pCur);
H
Hongze Cheng 已提交
537 538
  }

H
Hongze Cheng 已提交
539 540 541
  return pCtbCur;
}

542
void metaCloseCtbCursor(SMCtbCursor *pCtbCur, int lock) {
H
Hongze Cheng 已提交
543
  if (pCtbCur) {
544
    if (pCtbCur->pMeta && lock) metaULock(pCtbCur->pMeta);
H
Hongze Cheng 已提交
545
    if (pCtbCur->pCur) {
H
Hongze Cheng 已提交
546
      tdbTbcClose(pCtbCur->pCur);
H
Hongze Cheng 已提交
547

H
Hongze Cheng 已提交
548 549
      tdbFree(pCtbCur->pKey);
      tdbFree(pCtbCur->pVal);
H
Hongze Cheng 已提交
550
    }
H
Hongze Cheng 已提交
551

H
Hongze Cheng 已提交
552 553
    taosMemoryFree(pCtbCur);
  }
H
Hongze Cheng 已提交
554 555 556
}

tb_uid_t metaCtbCursorNext(SMCtbCursor *pCtbCur) {
H
Hongze Cheng 已提交
557 558
  int         ret;
  SCtbIdxKey *pCtbIdxKey;
H
Hongze Cheng 已提交
559

H
Hongze Cheng 已提交
560
  ret = tdbTbcNext(pCtbCur->pCur, &pCtbCur->pKey, &pCtbCur->kLen, &pCtbCur->pVal, &pCtbCur->vLen);
H
Hongze Cheng 已提交
561 562 563
  if (ret < 0) {
    return 0;
  }
H
Hongze Cheng 已提交
564

H
Hongze Cheng 已提交
565
  pCtbIdxKey = pCtbCur->pKey;
H
Hongze Cheng 已提交
566 567 568
  if (pCtbIdxKey->suid > pCtbCur->suid) {
    return 0;
  }
H
Hongze Cheng 已提交
569

H
Hongze Cheng 已提交
570
  return pCtbIdxKey->uid;
H
Hongze Cheng 已提交
571 572
}

C
Cary Xu 已提交
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589
struct SMStbCursor {
  SMeta   *pMeta;
  TBC     *pCur;
  tb_uid_t suid;
  void    *pKey;
  void    *pVal;
  int      kLen;
  int      vLen;
};

SMStbCursor *metaOpenStbCursor(SMeta *pMeta, tb_uid_t suid) {
  SMStbCursor *pStbCur = NULL;
  int          ret = 0;
  int          c = 0;

  pStbCur = (SMStbCursor *)taosMemoryCalloc(1, sizeof(*pStbCur));
  if (pStbCur == NULL) {
C
Cary Xu 已提交
590
    terrno = TSDB_CODE_OUT_OF_MEMORY;
C
Cary Xu 已提交
591 592 593 594 595 596 597 598 599
    return NULL;
  }

  pStbCur->pMeta = pMeta;
  pStbCur->suid = suid;
  metaRLock(pMeta);

  ret = tdbTbcOpen(pMeta->pSuidIdx, &pStbCur->pCur, NULL);
  if (ret < 0) {
C
Cary Xu 已提交
600
    terrno = TSDB_CODE_OUT_OF_MEMORY;
C
Cary Xu 已提交
601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635
    metaULock(pMeta);
    taosMemoryFree(pStbCur);
    return NULL;
  }

  // move to the suid
  tdbTbcMoveTo(pStbCur->pCur, &suid, sizeof(suid), &c);
  if (c > 0) {
    tdbTbcMoveToNext(pStbCur->pCur);
  }

  return pStbCur;
}

void metaCloseStbCursor(SMStbCursor *pStbCur) {
  if (pStbCur) {
    if (pStbCur->pMeta) metaULock(pStbCur->pMeta);
    if (pStbCur->pCur) {
      tdbTbcClose(pStbCur->pCur);

      tdbFree(pStbCur->pKey);
      tdbFree(pStbCur->pVal);
    }

    taosMemoryFree(pStbCur);
  }
}

tb_uid_t metaStbCursorNext(SMStbCursor *pStbCur) {
  int ret;

  ret = tdbTbcNext(pStbCur->pCur, &pStbCur->pKey, &pStbCur->kLen, &pStbCur->pVal, &pStbCur->vLen);
  if (ret < 0) {
    return 0;
  }
H
Hongze Cheng 已提交
636
  return *(tb_uid_t *)pStbCur->pKey;
C
Cary Xu 已提交
637 638
}

639
STSchema *metaGetTbTSchema(SMeta *pMeta, tb_uid_t uid, int32_t sver, int lock) {
H
Hongze Cheng 已提交
640
  STSchema       *pTSchema = NULL;
H
Hongze Cheng 已提交
641
  SSchemaWrapper *pSW = NULL;
H
Hongze Cheng 已提交
642

643
  pSW = metaGetTableSchema(pMeta, uid, sver, lock);
C
Cary Xu 已提交
644
  if (!pSW) return NULL;
H
fix  
Hongze Cheng 已提交
645

H
Hongze Cheng 已提交
646
  pTSchema = tBuildTSchema(pSW->pSchema, pSW->nCols, pSW->version);
H
Hongze Cheng 已提交
647

H
Hongze Cheng 已提交
648 649
  taosMemoryFree(pSW->pSchema);
  taosMemoryFree(pSW);
H
Hongze Cheng 已提交
650 651 652
  return pTSchema;
}

H
Hongze Cheng 已提交
653
int32_t metaGetTbTSchemaEx(SMeta *pMeta, tb_uid_t suid, tb_uid_t uid, int32_t sver, STSchema **ppTSchema) {
H
Hongze Cheng 已提交
654 655
  int32_t code = 0;

H
Hongze Cheng 已提交
656 657
  void     *pData = NULL;
  int       nData = 0;
H
Hongze Cheng 已提交
658 659 660
  SSkmDbKey skmDbKey;
  if (sver <= 0) {
    SMetaInfo info;
661
    if (metaGetInfo(pMeta, suid ? suid : uid, &info, NULL) == 0) {
H
Hongze Cheng 已提交
662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679
      sver = info.skmVer;
    } else {
      TBC *pSkmDbC = NULL;
      int  c;

      skmDbKey.uid = suid ? suid : uid;
      skmDbKey.sver = INT32_MAX;

      tdbTbcOpen(pMeta->pSkmDb, &pSkmDbC, NULL);
      metaRLock(pMeta);

      if (tdbTbcMoveTo(pSkmDbC, &skmDbKey, sizeof(skmDbKey), &c) < 0) {
        metaULock(pMeta);
        tdbTbcClose(pSkmDbC);
        code = TSDB_CODE_NOT_FOUND;
        goto _exit;
      }

680
      if (c == 0) {
681 682
        metaULock(pMeta);
        tdbTbcClose(pSkmDbC);
683
        code = TSDB_CODE_FAILED;
684
        metaError("meta/query: incorrect c: %" PRId32 ".", c);
685 686
        goto _exit;
      }
H
Hongze Cheng 已提交
687 688 689 690 691 692 693 694 695

      if (c < 0) {
        tdbTbcMoveToPrev(pSkmDbC);
      }

      const void *pKey = NULL;
      int32_t     nKey = 0;
      tdbTbcGet(pSkmDbC, &pKey, &nKey, NULL, NULL);

H
Hongze Cheng 已提交
696
      if (((SSkmDbKey *)pKey)->uid != skmDbKey.uid) {
H
Hongze Cheng 已提交
697 698 699 700 701 702 703 704 705 706 707 708
        metaULock(pMeta);
        tdbTbcClose(pSkmDbC);
        code = TSDB_CODE_NOT_FOUND;
        goto _exit;
      }

      sver = ((SSkmDbKey *)pKey)->sver;

      metaULock(pMeta);
      tdbTbcClose(pSkmDbC);
    }
  }
H
Hongze Cheng 已提交
709

710
  if (ASSERTS(sver > 0, "failed to get table schema version: %d", sver)) {
H
Hongze Cheng 已提交
711
    code = TSDB_CODE_NOT_FOUND;
712 713
    goto _exit;
  }
H
Hongze Cheng 已提交
714 715 716

  skmDbKey.uid = suid ? suid : uid;
  skmDbKey.sver = sver;
H
Hongze Cheng 已提交
717
  metaRLock(pMeta);
H
Hongze Cheng 已提交
718
  if (tdbTbGet(pMeta->pSkmDb, &skmDbKey, sizeof(SSkmDbKey), &pData, &nData) < 0) {
H
Hongze Cheng 已提交
719
    metaULock(pMeta);
H
Hongze Cheng 已提交
720 721
    code = TSDB_CODE_NOT_FOUND;
    goto _exit;
H
Hongze Cheng 已提交
722 723 724 725 726 727 728 729 730
  }
  metaULock(pMeta);

  // decode
  SDecoder        dc = {0};
  SSchemaWrapper  schema;
  SSchemaWrapper *pSchemaWrapper = &schema;

  tDecoderInit(&dc, pData, nData);
M
Minglei Jin 已提交
731
  (void)tDecodeSSchemaWrapper(&dc, pSchemaWrapper);
H
Hongze Cheng 已提交
732
  tDecoderClear(&dc);
733
  tdbFree(pData);
H
Hongze Cheng 已提交
734 735

  // convert
H
Hongze Cheng 已提交
736
  STSchema *pTSchema = tBuildTSchema(pSchemaWrapper->pSchema, pSchemaWrapper->nCols, pSchemaWrapper->version);
H
Haojun Liao 已提交
737 738 739 740
  if (pTSchema == NULL) {
    code = TSDB_CODE_OUT_OF_MEMORY;
  }

H
Hongze Cheng 已提交
741 742 743
  *ppTSchema = pTSchema;
  taosMemoryFree(pSchemaWrapper->pSchema);

H
Hongze Cheng 已提交
744
_exit:
H
Hongze Cheng 已提交
745 746 747
  return code;
}

748 749
// N.B. Called by statusReq per second
int64_t metaGetTbNum(SMeta *pMeta) {
750 751 752 753 754
  // num of child tables (excluding normal tables , stables and others)

  /* int64_t num = 0; */
  /* vnodeGetAllCtbNum(pMeta->pVnode, &num); */

755
  return pMeta->pVnode->config.vndStats.numOfCTables + pMeta->pVnode->config.vndStats.numOfNTables;
756 757 758
}

// N.B. Called by statusReq per second
M
Minglei Jin 已提交
759
int64_t metaGetTimeSeriesNum(SMeta *pMeta) {
760
  // sum of (number of columns of stable -  1) * number of ctables (excluding timestamp column)
761 762
  if (pMeta->pVnode->config.vndStats.numOfTimeSeries <= 0 ||
      ++pMeta->pVnode->config.vndStats.itvTimeSeries % (60 * 5) == 0) {
763 764 765 766
    int64_t num = 0;
    vnodeGetTimeSeriesNum(pMeta->pVnode, &num);
    pMeta->pVnode->config.vndStats.numOfTimeSeries = num;

767
    pMeta->pVnode->config.vndStats.itvTimeSeries = (TD_VID(pMeta->pVnode) % 100) * 2;
768
  }
769

770
  return pMeta->pVnode->config.vndStats.numOfTimeSeries + pMeta->pVnode->config.vndStats.numOfNTimeSeries;
C
Cary Xu 已提交
771
}
H
Hongze Cheng 已提交
772

773
int64_t metaGetNtbNum(SMeta *pMeta) { return pMeta->pVnode->config.vndStats.numOfNTables; }
774

C
Cary Xu 已提交
775
typedef struct {
H
Hongze Cheng 已提交
776 777
  SMeta   *pMeta;
  TBC     *pCur;
C
Cary Xu 已提交
778
  tb_uid_t uid;
H
Hongze Cheng 已提交
779 780
  void    *pKey;
  void    *pVal;
C
Cary Xu 已提交
781 782 783 784 785 786 787 788 789 790 791 792 793
  int      kLen;
  int      vLen;
} SMSmaCursor;

SMSmaCursor *metaOpenSmaCursor(SMeta *pMeta, tb_uid_t uid) {
  SMSmaCursor *pSmaCur = NULL;
  SSmaIdxKey   smaIdxKey;
  int          ret;
  int          c;

  pSmaCur = (SMSmaCursor *)taosMemoryCalloc(1, sizeof(*pSmaCur));
  if (pSmaCur == NULL) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
H
Hongze Cheng 已提交
794 795 796
    return NULL;
  }

C
Cary Xu 已提交
797 798 799 800
  pSmaCur->pMeta = pMeta;
  pSmaCur->uid = uid;
  metaRLock(pMeta);

H
Hongze Cheng 已提交
801
  ret = tdbTbcOpen(pMeta->pSmaIdx, &pSmaCur->pCur, NULL);
C
Cary Xu 已提交
802 803 804
  if (ret < 0) {
    metaULock(pMeta);
    taosMemoryFree(pSmaCur);
H
Hongze Cheng 已提交
805 806 807
    return NULL;
  }

C
Cary Xu 已提交
808 809 810
  // move to the suid
  smaIdxKey.uid = uid;
  smaIdxKey.smaUid = INT64_MIN;
H
Hongze Cheng 已提交
811
  tdbTbcMoveTo(pSmaCur->pCur, &smaIdxKey, sizeof(smaIdxKey), &c);
C
Cary Xu 已提交
812
  if (c > 0) {
H
Hongze Cheng 已提交
813
    tdbTbcMoveToNext(pSmaCur->pCur);
C
Cary Xu 已提交
814
  }
H
Hongze Cheng 已提交
815

C
Cary Xu 已提交
816 817
  return pSmaCur;
}
H
Hongze Cheng 已提交
818

C
Cary Xu 已提交
819 820 821 822
void metaCloseSmaCursor(SMSmaCursor *pSmaCur) {
  if (pSmaCur) {
    if (pSmaCur->pMeta) metaULock(pSmaCur->pMeta);
    if (pSmaCur->pCur) {
H
Hongze Cheng 已提交
823
      tdbTbcClose(pSmaCur->pCur);
H
Hongze Cheng 已提交
824

C
Cary Xu 已提交
825 826 827
      tdbFree(pSmaCur->pKey);
      tdbFree(pSmaCur->pVal);
    }
H
Hongze Cheng 已提交
828

C
Cary Xu 已提交
829 830 831 832 833 834 835 836
    taosMemoryFree(pSmaCur);
  }
}

tb_uid_t metaSmaCursorNext(SMSmaCursor *pSmaCur) {
  int         ret;
  SSmaIdxKey *pSmaIdxKey;

H
Hongze Cheng 已提交
837
  ret = tdbTbcNext(pSmaCur->pCur, &pSmaCur->pKey, &pSmaCur->kLen, &pSmaCur->pVal, &pSmaCur->vLen);
C
Cary Xu 已提交
838 839 840 841 842 843 844 845 846 847 848 849 850 851
  if (ret < 0) {
    return 0;
  }

  pSmaIdxKey = pSmaCur->pKey;
  if (pSmaIdxKey->uid > pSmaCur->uid) {
    return 0;
  }

  return pSmaIdxKey->uid;
}

STSmaWrapper *metaGetSmaInfoByTable(SMeta *pMeta, tb_uid_t uid, bool deepCopy) {
  STSmaWrapper *pSW = NULL;
H
Hongze Cheng 已提交
852
  SArray       *pSmaIds = NULL;
C
Cary Xu 已提交
853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875

  if (!(pSmaIds = metaGetSmaIdsByTable(pMeta, uid))) {
    return NULL;
  }

  pSW = taosMemoryCalloc(1, sizeof(*pSW));
  if (!pSW) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    goto _err;
  }

  pSW->number = taosArrayGetSize(pSmaIds);
  pSW->tSma = taosMemoryCalloc(pSW->number, sizeof(STSma));

  if (!pSW->tSma) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    goto _err;
  }

  SMetaReader mr = {0};
  metaReaderInit(&mr, pMeta, 0);
  int64_t smaId;
  int     smaIdx = 0;
H
Hongze Cheng 已提交
876
  STSma  *pTSma = NULL;
C
Cary Xu 已提交
877 878 879
  for (int i = 0; i < pSW->number; ++i) {
    smaId = *(tb_uid_t *)taosArrayGet(pSmaIds, i);
    if (metaGetTableEntryByUid(&mr, smaId) < 0) {
880
      tDecoderClear(&mr.coder);
S
Shengliang Guan 已提交
881
      metaWarn("vgId:%d, no entry for tbId:%" PRIi64 ", smaId:%" PRIi64, TD_VID(pMeta->pVnode), uid, smaId);
C
Cary Xu 已提交
882 883
      continue;
    }
884
    tDecoderClear(&mr.coder);
C
Cary Xu 已提交
885 886 887 888 889 890 891 892
    pTSma = pSW->tSma + smaIdx;
    memcpy(pTSma, mr.me.smaEntry.tsma, sizeof(STSma));
    if (deepCopy) {
      if (pTSma->exprLen > 0) {
        if (!(pTSma->expr = taosMemoryCalloc(1, pTSma->exprLen))) {
          terrno = TSDB_CODE_OUT_OF_MEMORY;
          goto _err;
        }
H
Hongze Cheng 已提交
893
        memcpy((void *)pTSma->expr, mr.me.smaEntry.tsma->expr, pTSma->exprLen);
H
Hongze Cheng 已提交
894
      }
C
Cary Xu 已提交
895 896 897 898 899
      if (pTSma->tagsFilterLen > 0) {
        if (!(pTSma->tagsFilter = taosMemoryCalloc(1, pTSma->tagsFilterLen))) {
          terrno = TSDB_CODE_OUT_OF_MEMORY;
          goto _err;
        }
H
Hongze Cheng 已提交
900
      }
H
Hongze Cheng 已提交
901
      memcpy((void *)pTSma->tagsFilter, mr.me.smaEntry.tsma->tagsFilter, pTSma->tagsFilterLen);
C
Cary Xu 已提交
902 903 904 905 906
    } else {
      pTSma->exprLen = 0;
      pTSma->expr = NULL;
      pTSma->tagsFilterLen = 0;
      pTSma->tagsFilter = NULL;
H
Hongze Cheng 已提交
907
    }
H
Hongze Cheng 已提交
908

C
Cary Xu 已提交
909
    ++smaIdx;
H
Hongze Cheng 已提交
910 911
  }

C
Cary Xu 已提交
912 913
  if (smaIdx <= 0) goto _err;
  pSW->number = smaIdx;
H
Hongze Cheng 已提交
914

C
Cary Xu 已提交
915 916
  metaReaderClear(&mr);
  taosArrayDestroy(pSmaIds);
H
Hongze Cheng 已提交
917
  return pSW;
C
Cary Xu 已提交
918 919 920
_err:
  metaReaderClear(&mr);
  taosArrayDestroy(pSmaIds);
C
Cary Xu 已提交
921
  tFreeTSmaWrapper(pSW, deepCopy);
H
Hongze Cheng 已提交
922 923 924
  return NULL;
}

C
Cary Xu 已提交
925
STSma *metaGetSmaInfoByIndex(SMeta *pMeta, int64_t indexUid) {
H
Hongze Cheng 已提交
926
  STSma      *pTSma = NULL;
C
Cary Xu 已提交
927 928 929
  SMetaReader mr = {0};
  metaReaderInit(&mr, pMeta, 0);
  if (metaGetTableEntryByUid(&mr, indexUid) < 0) {
S
Shengliang Guan 已提交
930
    metaWarn("vgId:%d, failed to get table entry for smaId:%" PRIi64, TD_VID(pMeta->pVnode), indexUid);
C
Cary Xu 已提交
931 932 933 934 935 936 937 938 939 940 941 942 943 944
    metaReaderClear(&mr);
    return NULL;
  }
  pTSma = (STSma *)taosMemoryMalloc(sizeof(STSma));
  if (!pTSma) {
    terrno = TSDB_CODE_OUT_OF_MEMORY;
    metaReaderClear(&mr);
    return NULL;
  }

  memcpy(pTSma, mr.me.smaEntry.tsma, sizeof(STSma));

  metaReaderClear(&mr);
  return pTSma;
H
Hongze Cheng 已提交
945 946
}

C
Cary Xu 已提交
947
SArray *metaGetSmaIdsByTable(SMeta *pMeta, tb_uid_t uid) {
H
Hongze Cheng 已提交
948
  SArray     *pUids = NULL;
C
Cary Xu 已提交
949
  SSmaIdxKey *pSmaIdxKey = NULL;
H
Hongze Cheng 已提交
950

C
Cary Xu 已提交
951 952
  SMSmaCursor *pCur = metaOpenSmaCursor(pMeta, uid);
  if (!pCur) {
H
Hongze Cheng 已提交
953 954 955
    return NULL;
  }

C
Cary Xu 已提交
956 957 958 959 960
  while (1) {
    tb_uid_t id = metaSmaCursorNext(pCur);
    if (id == 0) {
      break;
    }
H
Hongze Cheng 已提交
961

C
Cary Xu 已提交
962 963
    if (!pUids) {
      pUids = taosArrayInit(16, sizeof(tb_uid_t));
H
Hongze Cheng 已提交
964
      if (!pUids) {
C
Cary Xu 已提交
965 966 967
        terrno = TSDB_CODE_OUT_OF_MEMORY;
        metaCloseSmaCursor(pCur);
        return NULL;
H
Hongze Cheng 已提交
968
      }
C
Cary Xu 已提交
969
    }
H
Hongze Cheng 已提交
970

C
Cary Xu 已提交
971
    pSmaIdxKey = (SSmaIdxKey *)pCur->pKey;
H
Hongze Cheng 已提交
972

C
Cary Xu 已提交
973
    if (!taosArrayPush(pUids, &pSmaIdxKey->smaUid)) {
C
Cary Xu 已提交
974 975 976 977
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      metaCloseSmaCursor(pCur);
      taosArrayDestroy(pUids);
      return NULL;
H
Hongze Cheng 已提交
978 979 980 981 982 983 984
    }
  }

  metaCloseSmaCursor(pCur);
  return pUids;
}

C
Cary Xu 已提交
985
SArray *metaGetSmaTbUids(SMeta *pMeta) {
H
Hongze Cheng 已提交
986
  SArray     *pUids = NULL;
C
Cary Xu 已提交
987 988 989 990 991
  SSmaIdxKey *pSmaIdxKey = NULL;
  tb_uid_t    lastUid = 0;

  SMSmaCursor *pCur = metaOpenSmaCursor(pMeta, 0);
  if (!pCur) {
H
Hongze Cheng 已提交
992 993 994
    return NULL;
  }

C
Cary Xu 已提交
995 996 997 998 999
  while (1) {
    tb_uid_t uid = metaSmaCursorNext(pCur);
    if (uid == 0) {
      break;
    }
H
Hongze Cheng 已提交
1000

C
Cary Xu 已提交
1001 1002 1003
    if (lastUid == uid) {
      continue;
    }
H
Hongze Cheng 已提交
1004

C
Cary Xu 已提交
1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
    lastUid = uid;

    if (!pUids) {
      pUids = taosArrayInit(16, sizeof(tb_uid_t));
      if (!pUids) {
        terrno = TSDB_CODE_OUT_OF_MEMORY;
        metaCloseSmaCursor(pCur);
        return NULL;
      }
    }

C
Cary Xu 已提交
1016
    if (!taosArrayPush(pUids, &uid)) {
C
Cary Xu 已提交
1017 1018 1019 1020 1021
      terrno = TSDB_CODE_OUT_OF_MEMORY;
      metaCloseSmaCursor(pCur);
      taosArrayDestroy(pUids);
      return NULL;
    }
H
Hongze Cheng 已提交
1022 1023
  }

C
Cary Xu 已提交
1024 1025
  metaCloseSmaCursor(pCur);
  return pUids;
H
Hongze Cheng 已提交
1026 1027
}

L
Liu Jicong 已提交
1028
#endif
H
Hongze Cheng 已提交
1029

1030
const void *metaGetTableTagVal(void *pTag, int16_t type, STagVal *val) {
dengyihao's avatar
dengyihao 已提交
1031
  STag *tag = (STag *)pTag;
dengyihao's avatar
dengyihao 已提交
1032
  if (type == TSDB_DATA_TYPE_JSON) {
wmmhello's avatar
wmmhello 已提交
1033 1034
    return tag;
  }
wmmhello's avatar
wmmhello 已提交
1035 1036
  bool find = tTagGet(tag, val);

dengyihao's avatar
dengyihao 已提交
1037
  if (!find) {
wmmhello's avatar
wmmhello 已提交
1038 1039
    return NULL;
  }
wmmhello's avatar
wmmhello 已提交
1040

wmmhello's avatar
wmmhello 已提交
1041
#ifdef TAG_FILTER_DEBUG
wmmhello's avatar
wmmhello 已提交
1042
  if (IS_VAR_DATA_TYPE(val->type)) {
1043
    char *buf = taosMemoryCalloc(val->nData + 1, 1);
wmmhello's avatar
wmmhello 已提交
1044 1045 1046 1047 1048 1049 1050 1051 1052
    memcpy(buf, val->pData, val->nData);
    metaDebug("metaTag table val varchar index:%d cid:%d type:%d value:%s", 1, val->cid, val->type, buf);
    taosMemoryFree(buf);
  } else {
    double dval = 0;
    GET_TYPED_DATA(dval, double, val->type, &val->i64);
    metaDebug("metaTag table val number index:%d cid:%d type:%d value:%f", 1, val->cid, val->type, dval);
  }

1053 1054
  SArray *pTagVals = NULL;
  tTagToValArray((STag *)pTag, &pTagVals);
wmmhello's avatar
wmmhello 已提交
1055
  for (int i = 0; i < taosArrayGetSize(pTagVals); i++) {
1056
    STagVal *pTagVal = (STagVal *)taosArrayGet(pTagVals, i);
wmmhello's avatar
wmmhello 已提交
1057 1058

    if (IS_VAR_DATA_TYPE(pTagVal->type)) {
1059
      char *buf = taosMemoryCalloc(pTagVal->nData + 1, 1);
wmmhello's avatar
wmmhello 已提交
1060 1061 1062 1063 1064 1065 1066 1067 1068
      memcpy(buf, pTagVal->pData, pTagVal->nData);
      metaDebug("metaTag table varchar index:%d cid:%d type:%d value:%s", i, pTagVal->cid, pTagVal->type, buf);
      taosMemoryFree(buf);
    } else {
      double dval = 0;
      GET_TYPED_DATA(dval, double, pTagVal->type, &pTagVal->i64);
      metaDebug("metaTag table number index:%d cid:%d type:%d value:%f", i, pTagVal->cid, pTagVal->type, dval);
    }
  }
wmmhello's avatar
wmmhello 已提交
1069
#endif
wmmhello's avatar
wmmhello 已提交
1070

wmmhello's avatar
wmmhello 已提交
1071
  return val;
dengyihao's avatar
dengyihao 已提交
1072
}
wmmhello's avatar
wmmhello 已提交
1073 1074

typedef struct {
H
Hongze Cheng 已提交
1075 1076
  SMeta   *pMeta;
  TBC     *pCur;
wmmhello's avatar
wmmhello 已提交
1077 1078 1079
  tb_uid_t suid;
  int16_t  cid;
  int16_t  type;
H
Hongze Cheng 已提交
1080 1081
  void    *pKey;
  void    *pVal;
wmmhello's avatar
wmmhello 已提交
1082 1083 1084 1085
  int32_t  kLen;
  int32_t  vLen;
} SIdxCursor;

dengyihao's avatar
dengyihao 已提交
1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109
int32_t metaFilterCreateTime(SMeta *pMeta, SMetaFltParam *param, SArray *pUids) {
  int32_t ret = 0;

  SIdxCursor *pCursor = NULL;
  pCursor = (SIdxCursor *)taosMemoryCalloc(1, sizeof(SIdxCursor));
  pCursor->pMeta = pMeta;
  pCursor->suid = param->suid;
  pCursor->cid = param->cid;
  pCursor->type = param->type;

  metaRLock(pMeta);
  ret = tdbTbcOpen(pMeta->pCtimeIdx, &pCursor->pCur, NULL);
  if (ret != 0) {
    goto END;
  }
  int64_t uidLimit = param->reverse ? INT64_MAX : 0;

  SCtimeIdxKey  ctimeKey = {.ctime = *(int64_t *)(param->val), .uid = uidLimit};
  SCtimeIdxKey *pCtimeKey = &ctimeKey;

  int cmp = 0;
  if (tdbTbcMoveTo(pCursor->pCur, &ctimeKey, sizeof(ctimeKey), &cmp) < 0) {
    goto END;
  }
dengyihao's avatar
dengyihao 已提交
1110

dengyihao's avatar
dengyihao 已提交
1111
  int32_t valid = 0;
dengyihao's avatar
dengyihao 已提交
1112 1113
  int32_t count = 0;

dengyihao's avatar
dengyihao 已提交
1114
  static const int8_t TRY_ERROR_LIMIT = 1;
dengyihao's avatar
dengyihao 已提交
1115
  do {
dengyihao's avatar
dengyihao 已提交
1116 1117 1118 1119 1120 1121
    void   *entryKey = NULL;
    int32_t nEntryKey = -1;
    valid = tdbTbcGet(pCursor->pCur, (const void **)&entryKey, &nEntryKey, NULL, NULL);
    if (valid < 0) break;

    SCtimeIdxKey *p = entryKey;
dengyihao's avatar
dengyihao 已提交
1122
    if (count > TRY_ERROR_LIMIT) break;
dengyihao's avatar
dengyihao 已提交
1123

dengyihao's avatar
dengyihao 已提交
1124
    int32_t cmp = (*param->filterFunc)((void *)&p->ctime, (void *)&pCtimeKey->ctime, param->type);
dengyihao's avatar
dengyihao 已提交
1125 1126 1127
    if (cmp == 0)
      taosArrayPush(pUids, &p->uid);
    else {
dengyihao's avatar
dengyihao 已提交
1128 1129 1130 1131
      if (param->equal == true) {
        if (count > TRY_ERROR_LIMIT) break;
        count++;
      }
dengyihao's avatar
dengyihao 已提交
1132
    }
dengyihao's avatar
dengyihao 已提交
1133 1134
    valid = param->reverse ? tdbTbcMoveToPrev(pCursor->pCur) : tdbTbcMoveToNext(pCursor->pCur);
    if (valid < 0) break;
dengyihao's avatar
dengyihao 已提交
1135
  } while (1);
dengyihao's avatar
dengyihao 已提交
1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157

END:
  if (pCursor->pMeta) metaULock(pCursor->pMeta);
  if (pCursor->pCur) tdbTbcClose(pCursor->pCur);
  taosMemoryFree(pCursor);
  return ret;
}

int32_t metaFilterTableName(SMeta *pMeta, SMetaFltParam *param, SArray *pUids) {
  int32_t ret = 0;
  char   *buf = NULL;

  STagIdxKey *pKey = NULL;
  int32_t     nKey = 0;

  SIdxCursor *pCursor = NULL;
  pCursor = (SIdxCursor *)taosMemoryCalloc(1, sizeof(SIdxCursor));
  pCursor->pMeta = pMeta;
  pCursor->suid = param->suid;
  pCursor->cid = param->cid;
  pCursor->type = param->type;

dengyihao's avatar
dengyihao 已提交
1158 1159
  char *pName = param->val;

dengyihao's avatar
dengyihao 已提交
1160 1161
  metaRLock(pMeta);
  ret = tdbTbcOpen(pMeta->pNameIdx, &pCursor->pCur, NULL);
dengyihao's avatar
dengyihao 已提交
1162 1163 1164 1165 1166 1167 1168 1169 1170
  if (ret != 0) {
    goto END;
  }

  int cmp = 0;
  if (tdbTbcMoveTo(pCursor->pCur, pName, strlen(pName) + 1, &cmp) < 0) {
    goto END;
  }
  int32_t valid = 0;
dengyihao's avatar
dengyihao 已提交
1171 1172
  int32_t count = 0;

dengyihao's avatar
dengyihao 已提交
1173
  int32_t TRY_ERROR_LIMIT = 1;
dengyihao's avatar
dengyihao 已提交
1174
  do {
dengyihao's avatar
dengyihao 已提交
1175 1176 1177 1178 1179
    void   *pEntryKey = NULL, *pEntryVal = NULL;
    int32_t nEntryKey = -1, nEntryVal = 0;
    valid = tdbTbcGet(pCursor->pCur, (const void **)pEntryKey, &nEntryKey, (const void **)&pEntryVal, &nEntryVal);
    if (valid < 0) break;

dengyihao's avatar
dengyihao 已提交
1180 1181
    if (count > TRY_ERROR_LIMIT) break;

1182
    char *pTableKey = (char *)pEntryKey;
H
Haojun Liao 已提交
1183
    cmp = (*param->filterFunc)(pTableKey, pName, pCursor->type);
dengyihao's avatar
dengyihao 已提交
1184 1185 1186 1187
    if (cmp == 0) {
      tb_uid_t tuid = *(tb_uid_t *)pEntryVal;
      taosArrayPush(pUids, &tuid);
    } else {
dengyihao's avatar
dengyihao 已提交
1188 1189 1190 1191
      if (param->equal == true) {
        if (count > TRY_ERROR_LIMIT) break;
        count++;
      }
dengyihao's avatar
dengyihao 已提交
1192 1193 1194 1195 1196
    }
    valid = param->reverse ? tdbTbcMoveToPrev(pCursor->pCur) : tdbTbcMoveToNext(pCursor->pCur);
    if (valid < 0) {
      break;
    }
dengyihao's avatar
dengyihao 已提交
1197
  } while (1);
dengyihao's avatar
dengyihao 已提交
1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237

END:
  if (pCursor->pMeta) metaULock(pCursor->pMeta);
  if (pCursor->pCur) tdbTbcClose(pCursor->pCur);
  taosMemoryFree(buf);
  taosMemoryFree(pKey);

  taosMemoryFree(pCursor);

  return ret;
}
int32_t metaFilterTtl(SMeta *pMeta, SMetaFltParam *param, SArray *pUids) {
  int32_t ret = 0;
  char   *buf = NULL;

  STtlIdxKey *pKey = NULL;
  int32_t     nKey = 0;

  SIdxCursor *pCursor = NULL;
  pCursor = (SIdxCursor *)taosMemoryCalloc(1, sizeof(SIdxCursor));
  pCursor->pMeta = pMeta;
  pCursor->suid = param->suid;
  pCursor->cid = param->cid;
  pCursor->type = param->type;

  metaRLock(pMeta);
  ret = tdbTbcOpen(pMeta->pTtlIdx, &pCursor->pCur, NULL);

END:
  if (pCursor->pMeta) metaULock(pCursor->pMeta);
  if (pCursor->pCur) tdbTbcClose(pCursor->pCur);
  taosMemoryFree(buf);
  taosMemoryFree(pKey);

  taosMemoryFree(pCursor);

  return ret;
  // impl later
  return 0;
}
dengyihao's avatar
dengyihao 已提交
1238
int32_t metaFilterTableIds(SMeta *pMeta, SMetaFltParam *param, SArray *pUids) {
D
dapan1121 已提交
1239 1240 1241 1242 1243 1244 1245 1246
  SMetaEntry oStbEntry = {0};
  int32_t    ret = -1;
  char      *buf = NULL;
  void      *pData = NULL;
  int        nData = 0;

  SDecoder    dc = {0};
  STbDbKey    tbDbKey = {0};
dengyihao's avatar
dengyihao 已提交
1247 1248 1249 1250
  STagIdxKey *pKey = NULL;
  int32_t     nKey = 0;

  SIdxCursor *pCursor = NULL;
wmmhello's avatar
wmmhello 已提交
1251 1252 1253 1254 1255 1256 1257
  pCursor = (SIdxCursor *)taosMemoryCalloc(1, sizeof(SIdxCursor));
  pCursor->pMeta = pMeta;
  pCursor->suid = param->suid;
  pCursor->cid = param->cid;
  pCursor->type = param->type;

  metaRLock(pMeta);
D
dapan1121 已提交
1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283

  if (tdbTbGet(pMeta->pUidIdx, &param->suid, sizeof(tb_uid_t), &pData, &nData) != 0) {
    goto END;
  }
  tbDbKey.uid = param->suid;
  tbDbKey.version = ((SUidIdxVal *)pData)[0].version;
  tdbTbGet(pMeta->pTbDb, &tbDbKey, sizeof(tbDbKey), &pData, &nData);

  tDecoderInit(&dc, pData, nData);
  ret = metaDecodeEntry(&dc, &oStbEntry);

  if (oStbEntry.stbEntry.schemaTag.pSchema == NULL || oStbEntry.stbEntry.schemaTag.pSchema == NULL) {
    ret = -1;
    goto END;
  }
  ret = -1;
  for (int i = 0; i < oStbEntry.stbEntry.schemaTag.nCols; i++) {
    SSchema *schema = oStbEntry.stbEntry.schemaTag.pSchema + i;
    if (schema->colId == param->cid && param->type == schema->type && (IS_IDX_ON(schema) || i == 0)) {
      ret = 0;
    }
  }
  if (ret != 0) {
    goto END;
  }

dengyihao's avatar
dengyihao 已提交
1284
  ret = tdbTbcOpen(pMeta->pTagIdx, &pCursor->pCur, NULL);
D
dapan1121 已提交
1285
  if (ret != 0) {
wmmhello's avatar
wmmhello 已提交
1286 1287 1288
    goto END;
  }

dengyihao's avatar
dengyihao 已提交
1289
  int32_t maxSize = 0;
wmmhello's avatar
wmmhello 已提交
1290
  int32_t nTagData = 0;
H
Hongze Cheng 已提交
1291
  void   *tagData = NULL;
dengyihao's avatar
dengyihao 已提交
1292

dengyihao's avatar
dengyihao 已提交
1293
  if (param->val == NULL) {
S
Shengliang Guan 已提交
1294
    metaError("vgId:%d, failed to filter NULL data", TD_VID(pMeta->pVnode));
dengyihao's avatar
dengyihao 已提交
1295
    ret = -1;
dengyihao's avatar
dengyihao 已提交
1296
    goto END;
dengyihao's avatar
dengyihao 已提交
1297
  } else {
dengyihao's avatar
dengyihao 已提交
1298 1299 1300 1301 1302 1303 1304 1305
    if (IS_VAR_DATA_TYPE(param->type)) {
      tagData = varDataVal(param->val);
      nTagData = varDataLen(param->val);

      if (param->type == TSDB_DATA_TYPE_NCHAR) {
        maxSize = 4 * nTagData + 1;
        buf = taosMemoryCalloc(1, maxSize);
        if (false == taosMbsToUcs4(tagData, nTagData, (TdUcs4 *)buf, maxSize, &maxSize)) {
D
dapan1121 已提交
1306
          ret = -1;
dengyihao's avatar
dengyihao 已提交
1307 1308
          goto END;
        }
dengyihao's avatar
dengyihao 已提交
1309

dengyihao's avatar
dengyihao 已提交
1310 1311 1312 1313 1314 1315
        tagData = buf;
        nTagData = maxSize;
      }
    } else {
      tagData = param->val;
      nTagData = tDataTypes[param->type].bytes;
dengyihao's avatar
dengyihao 已提交
1316
    }
wmmhello's avatar
wmmhello 已提交
1317
  }
dengyihao's avatar
dengyihao 已提交
1318
  ret = metaCreateTagIdxKey(pCursor->suid, pCursor->cid, tagData, nTagData, pCursor->type,
wmmhello's avatar
wmmhello 已提交
1319
                            param->reverse ? INT64_MAX : INT64_MIN, &pKey, &nKey);
dengyihao's avatar
dengyihao 已提交
1320

wmmhello's avatar
wmmhello 已提交
1321 1322 1323
  if (ret != 0) {
    goto END;
  }
D
dapan1121 已提交
1324

wmmhello's avatar
wmmhello 已提交
1325
  int cmp = 0;
D
dapan1121 已提交
1326 1327
  ret = tdbTbcMoveTo(pCursor->pCur, pKey, nKey, &cmp);
  if (ret != 0) {
wmmhello's avatar
wmmhello 已提交
1328 1329
    goto END;
  }
dengyihao's avatar
dengyihao 已提交
1330

dengyihao's avatar
dengyihao 已提交
1331
  int     count = 0;
dengyihao's avatar
dengyihao 已提交
1332
  int32_t valid = 0;
dengyihao's avatar
dengyihao 已提交
1333
  bool    found = false;
dengyihao's avatar
dengyihao 已提交
1334

dengyihao's avatar
dengyihao 已提交
1335
  static const int8_t TRY_ERROR_LIMIT = 1;
dengyihao's avatar
dengyihao 已提交
1336 1337 1338

  /// src:   [[suid, cid1, type1]....[suid, cid2, type2]....[suid, cid3, type3]...]
  /// target:                        [suid, cid2, type2]
1339
  int diffCidCount = 0;
dengyihao's avatar
dengyihao 已提交
1340
  do {
dengyihao's avatar
dengyihao 已提交
1341 1342 1343
    void   *entryKey = NULL, *entryVal = NULL;
    int32_t nEntryKey, nEntryVal;

wmmhello's avatar
wmmhello 已提交
1344 1345 1346 1347
    valid = tdbTbcGet(pCursor->pCur, (const void **)&entryKey, &nEntryKey, (const void **)&entryVal, &nEntryVal);
    if (valid < 0) {
      break;
    }
dengyihao's avatar
dengyihao 已提交
1348
    if (count > TRY_ERROR_LIMIT) {
dengyihao's avatar
dengyihao 已提交
1349 1350 1351
      break;
    }

wmmhello's avatar
wmmhello 已提交
1352
    STagIdxKey *p = entryKey;
dengyihao's avatar
dengyihao 已提交
1353
    if (p == NULL) break;
dengyihao's avatar
dengyihao 已提交
1354

dengyihao's avatar
dengyihao 已提交
1355
    if (p->type != pCursor->type || p->suid != pCursor->suid || p->cid != pCursor->cid) {
1356 1357 1358
      if (found == true) break;  //
      if (diffCidCount > TRY_ERROR_LIMIT) break;
      diffCidCount++;
dengyihao's avatar
dengyihao 已提交
1359 1360 1361
      count++;
      valid = param->reverse ? tdbTbcMoveToPrev(pCursor->pCur) : tdbTbcMoveToNext(pCursor->pCur);
      if (valid < 0) {
dengyihao's avatar
dengyihao 已提交
1362
        break;
dengyihao's avatar
dengyihao 已提交
1363 1364
      } else {
        continue;
dengyihao's avatar
dengyihao 已提交
1365 1366
      }
    }
dengyihao's avatar
dengyihao 已提交
1367

dengyihao's avatar
dengyihao 已提交
1368 1369 1370 1371 1372 1373
    int32_t cmp = (*param->filterFunc)(p->data, pKey->data, pKey->type);
    if (cmp == 0) {
      // match
      tb_uid_t tuid = 0;
      if (IS_VAR_DATA_TYPE(pKey->type)) {
        tuid = *(tb_uid_t *)(p->data + varDataTLen(p->data));
wmmhello's avatar
wmmhello 已提交
1374
      } else {
dengyihao's avatar
dengyihao 已提交
1375
        tuid = *(tb_uid_t *)(p->data + tDataTypes[pCursor->type].bytes);
wmmhello's avatar
wmmhello 已提交
1376
      }
dengyihao's avatar
dengyihao 已提交
1377
      taosArrayPush(pUids, &tuid);
dengyihao's avatar
dengyihao 已提交
1378
      found = true;
dengyihao's avatar
dengyihao 已提交
1379
    } else {
dengyihao's avatar
dengyihao 已提交
1380 1381 1382 1383
      if (param->equal == true) {
        if (count > TRY_ERROR_LIMIT) break;
        count++;
      }
wmmhello's avatar
wmmhello 已提交
1384 1385 1386 1387 1388
    }
    valid = param->reverse ? tdbTbcMoveToPrev(pCursor->pCur) : tdbTbcMoveToNext(pCursor->pCur);
    if (valid < 0) {
      break;
    }
dengyihao's avatar
dengyihao 已提交
1389
  } while (1);
dengyihao's avatar
dengyihao 已提交
1390

wmmhello's avatar
wmmhello 已提交
1391 1392 1393
END:
  if (pCursor->pMeta) metaULock(pCursor->pMeta);
  if (pCursor->pCur) tdbTbcClose(pCursor->pCur);
D
dapan1121 已提交
1394 1395 1396 1397
  if (oStbEntry.pBuf) taosMemoryFree(oStbEntry.pBuf);
  tDecoderClear(&dc);
  tdbFree(pData);

dengyihao's avatar
dengyihao 已提交
1398
  taosMemoryFree(buf);
dengyihao's avatar
dengyihao 已提交
1399
  taosMemoryFree(pKey);
wmmhello's avatar
wmmhello 已提交
1400 1401 1402 1403

  taosMemoryFree(pCursor);

  return ret;
dengyihao's avatar
dengyihao 已提交
1404
}
H
Hongze Cheng 已提交
1405

dengyihao's avatar
dengyihao 已提交
1406
static int32_t metaGetTableTagByUid(SMeta *pMeta, int64_t suid, int64_t uid, void **tag, int32_t *len, bool lock) {
dengyihao's avatar
dengyihao 已提交
1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419
  int ret = 0;
  if (lock) {
    metaRLock(pMeta);
  }

  SCtbIdxKey ctbIdxKey = {.suid = suid, .uid = uid};
  ret = tdbTbGet(pMeta->pCtbIdx, &ctbIdxKey, sizeof(SCtbIdxKey), tag, len);
  if (lock) {
    metaULock(pMeta);
  }

  return ret;
}
H
Haojun Liao 已提交
1420

1421
int32_t metaGetTableTagsByUids(SMeta *pMeta, int64_t suid, SArray *uidList) {
dengyihao's avatar
dengyihao 已提交
1422 1423 1424
  const int32_t LIMIT = 128;

  int32_t isLock = false;
dengyihao's avatar
dengyihao 已提交
1425 1426
  int32_t sz = uidList ? taosArrayGetSize(uidList) : 0;
  for (int i = 0; i < sz; i++) {
1427
    STUidTagInfo *p = taosArrayGet(uidList, i);
dengyihao's avatar
dengyihao 已提交
1428 1429 1430 1431 1432 1433 1434 1435

    if (i % LIMIT == 0) {
      if (isLock) metaULock(pMeta);

      metaRLock(pMeta);
      isLock = true;
    }

X
Xiaoyu Wang 已提交
1436 1437 1438 1439 1440 1441 1442 1443 1444 1445
    //    if (taosHashGet(tags, &p->uid, sizeof(tb_uid_t)) == NULL) {
    void   *val = NULL;
    int32_t len = 0;
    if (metaGetTableTagByUid(pMeta, suid, p->uid, &val, &len, false) == 0) {
      p->pTagVal = taosMemoryMalloc(len);
      memcpy(p->pTagVal, val, len);
      tdbFree(val);
    } else {
      metaError("vgId:%d, failed to table tags, suid: %" PRId64 ", uid: %" PRId64 "", TD_VID(pMeta->pVnode), suid,
                p->uid);
dengyihao's avatar
dengyihao 已提交
1446 1447
    }
  }
X
Xiaoyu Wang 已提交
1448
  //  }
dengyihao's avatar
dengyihao 已提交
1449
  if (isLock) metaULock(pMeta);
dengyihao's avatar
dengyihao 已提交
1450 1451
  return 0;
}
dengyihao's avatar
dengyihao 已提交
1452

1453
int32_t metaGetTableTags(SMeta *pMeta, uint64_t suid, SArray *pUidTagInfo) {
1454
  SMCtbCursor *pCur = metaOpenCtbCursor(pMeta, suid, 1);
1455

1456 1457 1458 1459
  // If len > 0 means there already have uids, and we only want the
  // tags of the specified tables, of which uid in the uid list. Otherwise, all table tags are retrieved and kept
  // in the hash map, that may require a lot of memory
  SHashObj *pSepecifiedUidMap = NULL;
1460 1461
  size_t    numOfElems = taosArrayGetSize(pUidTagInfo);
  if (numOfElems > 0) {
X
Xiaoyu Wang 已提交
1462 1463
    pSepecifiedUidMap =
        taosHashInit(numOfElems / 0.7, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BIGINT), false, HASH_NO_LOCK);
1464
    for (int i = 0; i < numOfElems; i++) {
H
Haojun Liao 已提交
1465 1466
      STUidTagInfo *pTagInfo = taosArrayGet(pUidTagInfo, i);
      taosHashPut(pSepecifiedUidMap, &pTagInfo->uid, sizeof(uint64_t), &i, sizeof(int32_t));
1467 1468 1469
    }
  }

H
Haojun Liao 已提交
1470 1471 1472 1473 1474 1475
  if (numOfElems == 0) {  // all data needs to be added into the pUidTagInfo list
    while (1) {
      tb_uid_t uid = metaCtbCursorNext(pCur);
      if (uid == 0) {
        break;
      }
1476

1477 1478 1479 1480
      STUidTagInfo info = {.uid = uid, .pTagVal = pCur->pVal};
      info.pTagVal = taosMemoryMalloc(pCur->vLen);
      memcpy(info.pTagVal, pCur->pVal, pCur->vLen);
      taosArrayPush(pUidTagInfo, &info);
1481
    }
H
Haojun Liao 已提交
1482 1483 1484 1485 1486 1487
  } else {  // only the specified tables need to be added
    while (1) {
      tb_uid_t uid = metaCtbCursorNext(pCur);
      if (uid == 0) {
        break;
      }
1488

H
Haojun Liao 已提交
1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499
      int32_t *index = taosHashGet(pSepecifiedUidMap, &uid, sizeof(uint64_t));
      if (index == NULL) {
        continue;
      }

      STUidTagInfo *pTagInfo = taosArrayGet(pUidTagInfo, *index);
      if (pTagInfo->pTagVal == NULL) {
        pTagInfo->pTagVal = taosMemoryMalloc(pCur->vLen);
        memcpy(pTagInfo->pTagVal, pCur->pVal, pCur->vLen);
      }
    }
1500 1501
  }

1502
  taosHashCleanup(pSepecifiedUidMap);
1503
  metaCloseCtbCursor(pCur, 1);
1504 1505
  return TSDB_CODE_SUCCESS;
}
wmmhello's avatar
wmmhello 已提交
1506

H
Hongze Cheng 已提交
1507 1508
int32_t metaCacheGet(SMeta *pMeta, int64_t uid, SMetaInfo *pInfo);

1509
int32_t metaGetInfo(SMeta *pMeta, int64_t uid, SMetaInfo *pInfo, SMetaReader *pReader) {
H
Hongze Cheng 已提交
1510 1511 1512
  int32_t code = 0;
  void   *pData = NULL;
  int     nData = 0;
1513
  int     lock = 0;
H
Hongze Cheng 已提交
1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537

  metaRLock(pMeta);

  // search cache
  if (metaCacheGet(pMeta, uid, pInfo) == 0) {
    metaULock(pMeta);
    goto _exit;
  }

  // search TDB
  if (tdbTbGet(pMeta->pUidIdx, &uid, sizeof(uid), &pData, &nData) < 0) {
    // not found
    metaULock(pMeta);
    code = TSDB_CODE_NOT_FOUND;
    goto _exit;
  }

  metaULock(pMeta);

  pInfo->uid = uid;
  pInfo->suid = ((SUidIdxVal *)pData)->suid;
  pInfo->version = ((SUidIdxVal *)pData)->version;
  pInfo->skmVer = ((SUidIdxVal *)pData)->skmVer;

1538 1539 1540 1541 1542 1543 1544
  if (pReader != NULL) {
    lock = !(pReader->flags & META_READER_NOLOCK);
    if (lock) {
      metaULock(pReader->pMeta);
      // metaReaderReleaseLock(pReader);
    }
  }
H
Hongze Cheng 已提交
1545 1546 1547 1548 1549
  // upsert the cache
  metaWLock(pMeta);
  metaCacheUpsert(pMeta, pInfo);
  metaULock(pMeta);

1550 1551 1552 1553
  if (lock) {
    metaRLock(pReader->pMeta);
  }

H
Hongze Cheng 已提交
1554 1555 1556 1557
_exit:
  tdbFree(pData);
  return code;
}
1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586

int32_t metaGetStbStats(SMeta *pMeta, int64_t uid, SMetaStbStats *pInfo) {
  int32_t code = 0;

  metaRLock(pMeta);

  // fast path: search cache
  if (metaStatsCacheGet(pMeta, uid, pInfo) == TSDB_CODE_SUCCESS) {
    metaULock(pMeta);
    goto _exit;
  }

  // slow path: search TDB
  int64_t ctbNum = 0;
  vnodeGetCtbNum(pMeta->pVnode, uid, &ctbNum);

  metaULock(pMeta);

  pInfo->uid = uid;
  pInfo->ctbNum = ctbNum;

  // upsert the cache
  metaWLock(pMeta);
  metaStatsCacheUpsert(pMeta, pInfo);
  metaULock(pMeta);

_exit:
  return code;
}
1587 1588 1589 1590 1591 1592 1593 1594 1595 1596

void metaUpdateStbStats(SMeta *pMeta, int64_t uid, int64_t delta) {
  SMetaStbStats stats = {0};

  if (metaStatsCacheGet(pMeta, uid, &stats) == TSDB_CODE_SUCCESS) {
    stats.ctbNum += delta;

    metaStatsCacheUpsert(pMeta, &stats);
  }
}