sdbHash.c 12.4 KB
Newer Older
S
Shengliang Guan 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * 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/>.
 */

#define _DEFAULT_SOURCE
S
Shengliang Guan 已提交
17
#include "sdb.h"
S
Shengliang Guan 已提交
18

S
Shengliang Guan 已提交
19
static void sdbCheckRow(SSdb *pSdb, SSdbRow *pRow);
20

S
Shengliang Guan 已提交
21
const char *sdbTableName(ESdbType type) {
S
Shengliang Guan 已提交
22 23 24 25 26 27 28
  switch (type) {
    case SDB_TRANS:
      return "trans";
    case SDB_CLUSTER:
      return "cluster";
    case SDB_MNODE:
      return "mnode";
S
Shengliang Guan 已提交
29 30 31 32 33 34
    case SDB_QNODE:
      return "qnode";
    case SDB_SNODE:
      return "snode";
    case SDB_BNODE:
      return "bnode";
S
Shengliang Guan 已提交
35 36 37 38 39 40 41 42
    case SDB_DNODE:
      return "dnode";
    case SDB_USER:
      return "user";
    case SDB_AUTH:
      return "auth";
    case SDB_ACCT:
      return "acct";
L
add log  
Liu Jicong 已提交
43 44 45 46
    case SDB_STREAM:
      return "stream";
    case SDB_OFFSET:
      return "offset";
L
Liu Jicong 已提交
47 48
    case SDB_SUBSCRIBE:
      return "subscribe";
S
Shengliang Guan 已提交
49 50
    case SDB_CONSUMER:
      return "consumer";
S
Shengliang Guan 已提交
51 52 53
    case SDB_TOPIC:
      return "topic";
    case SDB_VGROUP:
54 55 56
      return "vgroup";
    case SDB_SMA:
      return "sma";
S
Shengliang Guan 已提交
57 58 59 60 61 62 63 64 65 66 67
    case SDB_STB:
      return "stb";
    case SDB_DB:
      return "db";
    case SDB_FUNC:
      return "func";
    default:
      return "undefine";
  }
}

S
Shengliang Guan 已提交
68
static const char *sdbStatusName(ESdbStatus status) {
S
Shengliang Guan 已提交
69 70 71 72 73 74 75 76 77
  switch (status) {
    case SDB_STATUS_CREATING:
      return "creating";
    case SDB_STATUS_DROPPING:
      return "dropping";
    case SDB_STATUS_READY:
      return "ready";
    case SDB_STATUS_DROPPED:
      return "dropped";
78 79
    case SDB_STATUS_INIT:
      return "init";
S
Shengliang Guan 已提交
80 81 82 83 84
    default:
      return "undefine";
  }
}

S
Shengliang Guan 已提交
85 86 87 88
void sdbPrintOper(SSdb *pSdb, SSdbRow *pRow, const char *oper) {
  EKeyType keyType = pSdb->keyTypes[pRow->type];

  if (keyType == SDB_KEY_BINARY) {
89
    mTrace("%s:%s, ref:%d oper:%s row:%p status:%s", sdbTableName(pRow->type), (char *)pRow->pObj, pRow->refCount, oper,
S
Shengliang Guan 已提交
90
           pRow->pObj, sdbStatusName(pRow->status));
S
Shengliang Guan 已提交
91
  } else if (keyType == SDB_KEY_INT32) {
92
    mTrace("%s:%d, ref:%d oper:%s row:%p status:%s", sdbTableName(pRow->type), *(int32_t *)pRow->pObj, pRow->refCount,
S
Shengliang Guan 已提交
93
           oper, pRow->pObj, sdbStatusName(pRow->status));
S
Shengliang Guan 已提交
94
  } else if (keyType == SDB_KEY_INT64) {
95
    mTrace("%s:%" PRId64 ", ref:%d oper:%s row:%p status:%s", sdbTableName(pRow->type), *(int64_t *)pRow->pObj,
S
Shengliang Guan 已提交
96
           pRow->refCount, oper, pRow->pObj, sdbStatusName(pRow->status));
S
Shengliang Guan 已提交
97 98 99 100
  } else {
  }
}

S
Shengliang Guan 已提交
101
static SHashObj *sdbGetHash(SSdb *pSdb, int32_t type) {
S
Shengliang Guan 已提交
102
  if (type >= SDB_MAX || type < 0) {
S
Shengliang Guan 已提交
103 104 105 106
    terrno = TSDB_CODE_SDB_INVALID_TABLE_TYPE;
    return NULL;
  }

S
Shengliang Guan 已提交
107
  SHashObj *hash = pSdb->hashObjs[type];
S
Shengliang Guan 已提交
108 109 110 111 112 113 114 115
  if (hash == NULL) {
    terrno = TSDB_CODE_SDB_APP_ERROR;
    return NULL;
  }

  return hash;
}

L
Liu Jicong 已提交
116
static int32_t sdbGetkeySize(SSdb *pSdb, ESdbType type, const void *pKey) {
S
Shengliang Guan 已提交
117
  int32_t  keySize = 0;
S
Shengliang Guan 已提交
118
  EKeyType keyType = pSdb->keyTypes[type];
S
Shengliang Guan 已提交
119 120 121 122 123 124 125 126 127 128 129 130

  if (keyType == SDB_KEY_INT32) {
    keySize = sizeof(int32_t);
  } else if (keyType == SDB_KEY_BINARY) {
    keySize = strlen(pKey) + 1;
  } else {
    keySize = sizeof(int64_t);
  }

  return keySize;
}

S
Shengliang Guan 已提交
131
static int32_t sdbInsertRow(SSdb *pSdb, SHashObj *hash, SSdbRaw *pRaw, SSdbRow *pRow, int32_t keySize) {
132 133
  TdThreadRwlock *pLock = &pSdb->locks[pRow->type];
  taosThreadRwlockWrlock(pLock);
S
Shengliang Guan 已提交
134

S
Shengliang Guan 已提交
135 136
  SSdbRow *pOldRow = taosHashGet(hash, pRow->pObj, keySize);
  if (pOldRow != NULL) {
137
    taosThreadRwlockUnlock(pLock);
138
    sdbFreeRow(pSdb, pRow, false);
S
Shengliang Guan 已提交
139 140
    terrno = TSDB_CODE_SDB_OBJ_ALREADY_THERE;
    return terrno;
S
Shengliang Guan 已提交
141 142
  }

S
Shengliang Guan 已提交
143
  pRow->refCount = 0;
S
Shengliang Guan 已提交
144
  pRow->status = pRaw->status;
145
  sdbPrintOper(pSdb, pRow, "insert");
S
Shengliang Guan 已提交
146 147

  if (taosHashPut(hash, pRow->pObj, keySize, &pRow, sizeof(void *)) != 0) {
148
    taosThreadRwlockUnlock(pLock);
149
    sdbFreeRow(pSdb, pRow, false);
S
Shengliang Guan 已提交
150
    terrno = TSDB_CODE_OUT_OF_MEMORY;
S
Shengliang Guan 已提交
151
    return terrno;
S
Shengliang Guan 已提交
152 153
  }

154
  taosThreadRwlockUnlock(pLock);
S
Shengliang Guan 已提交
155

S
Shengliang Guan 已提交
156
  int32_t     code = 0;
S
Shengliang Guan 已提交
157
  SdbInsertFp insertFp = pSdb->insertFps[pRow->type];
S
Shengliang Guan 已提交
158
  if (insertFp != NULL) {
S
Shengliang Guan 已提交
159 160
    code = (*insertFp)(pSdb, pRow->pObj);
    if (code != 0) {
S
Shengliang Guan 已提交
161
      code = terrno;
162
      taosThreadRwlockWrlock(pLock);
S
Shengliang Guan 已提交
163
      taosHashRemove(hash, pRow->pObj, keySize);
164
      taosThreadRwlockUnlock(pLock);
165
      sdbFreeRow(pSdb, pRow, false);
S
Shengliang Guan 已提交
166 167
      terrno = code;
      return terrno;
S
Shengliang Guan 已提交
168 169 170
    }
  }

S
Shengliang Guan 已提交
171
  if (pSdb->keyTypes[pRow->type] == SDB_KEY_INT32) {
dengyihao's avatar
dengyihao 已提交
172
    pSdb->maxId[pRow->type] = TMAX(pSdb->maxId[pRow->type], *((int32_t *)pRow->pObj));
S
Shengliang Guan 已提交
173 174
  }
  if (pSdb->keyTypes[pRow->type] == SDB_KEY_INT64) {
dengyihao's avatar
dengyihao 已提交
175
    pSdb->maxId[pRow->type] = TMAX(pSdb->maxId[pRow->type], *((int32_t *)pRow->pObj));
S
Shengliang Guan 已提交
176 177 178
  }
  pSdb->tableVer[pRow->type]++;

S
Shengliang Guan 已提交
179 180 181
  return 0;
}

S
Shengliang Guan 已提交
182
static int32_t sdbUpdateRow(SSdb *pSdb, SHashObj *hash, SSdbRaw *pRaw, SSdbRow *pNewRow, int32_t keySize) {
183 184
  TdThreadRwlock *pLock = &pSdb->locks[pNewRow->type];
  taosThreadRwlockWrlock(pLock);
S
Shengliang Guan 已提交
185

S
Shengliang Guan 已提交
186 187
  SSdbRow **ppOldRow = taosHashGet(hash, pNewRow->pObj, keySize);
  if (ppOldRow == NULL || *ppOldRow == NULL) {
188
    taosThreadRwlockUnlock(pLock);
S
Shengliang Guan 已提交
189
    return sdbInsertRow(pSdb, hash, pRaw, pNewRow, keySize);
S
Shengliang Guan 已提交
190 191
  }

S
Shengliang Guan 已提交
192
  SSdbRow *pOldRow = *ppOldRow;
S
Shengliang Guan 已提交
193
  pOldRow->status = pRaw->status;
194
  sdbPrintOper(pSdb, pOldRow, "update");
195
  taosThreadRwlockUnlock(pLock);
S
Shengliang Guan 已提交
196

S
Shengliang Guan 已提交
197
  int32_t     code = 0;
S
Shengliang Guan 已提交
198
  SdbUpdateFp updateFp = pSdb->updateFps[pNewRow->type];
S
Shengliang Guan 已提交
199
  if (updateFp != NULL) {
S
Shengliang Guan 已提交
200
    code = (*updateFp)(pSdb, pOldRow->pObj, pNewRow->pObj);
S
Shengliang Guan 已提交
201 202
  }

203
  sdbFreeRow(pSdb, pNewRow, false);
S
Shengliang Guan 已提交
204 205

  pSdb->tableVer[pOldRow->type]++;
S
Shengliang Guan 已提交
206
  return code;
S
Shengliang Guan 已提交
207 208
}

S
Shengliang Guan 已提交
209
static int32_t sdbDeleteRow(SSdb *pSdb, SHashObj *hash, SSdbRaw *pRaw, SSdbRow *pRow, int32_t keySize) {
210 211
  TdThreadRwlock *pLock = &pSdb->locks[pRow->type];
  taosThreadRwlockWrlock(pLock);
S
Shengliang Guan 已提交
212

S
Shengliang Guan 已提交
213 214
  SSdbRow **ppOldRow = taosHashGet(hash, pRow->pObj, keySize);
  if (ppOldRow == NULL || *ppOldRow == NULL) {
215
    taosThreadRwlockUnlock(pLock);
216
    sdbFreeRow(pSdb, pRow, false);
S
Shengliang Guan 已提交
217 218
    terrno = TSDB_CODE_SDB_OBJ_NOT_THERE;
    return terrno;
S
Shengliang Guan 已提交
219
  }
S
Shengliang Guan 已提交
220
  SSdbRow *pOldRow = *ppOldRow;
S
Shengliang Guan 已提交
221

S
Shengliang Guan 已提交
222
  pOldRow->status = pRaw->status;
223
  sdbPrintOper(pSdb, pOldRow, "delete");
S
Shengliang Guan 已提交
224

S
Shengliang Guan 已提交
225
  taosHashRemove(hash, pOldRow->pObj, keySize);
226
  taosThreadRwlockUnlock(pLock);
S
Shengliang Guan 已提交
227

S
Shengliang Guan 已提交
228
  pSdb->tableVer[pOldRow->type]++;
229
  sdbFreeRow(pSdb, pRow, false);
230

S
Shengliang Guan 已提交
231
  sdbCheckRow(pSdb, pOldRow);
S
Shengliang Guan 已提交
232
  return 0;
S
Shengliang Guan 已提交
233 234
}

235
int32_t sdbWriteWithoutFree(SSdb *pSdb, SSdbRaw *pRaw) {
S
Shengliang Guan 已提交
236
  SHashObj *hash = sdbGetHash(pSdb, pRaw->type);
S
Shengliang Guan 已提交
237
  if (hash == NULL) return terrno;
S
Shengliang Guan 已提交
238

S
Shengliang Guan 已提交
239
  SdbDecodeFp decodeFp = pSdb->decodeFps[pRaw->type];
S
Shengliang Guan 已提交
240 241
  SSdbRow    *pRow = (*decodeFp)(pRaw);
  if (pRow == NULL) {
S
Shengliang Guan 已提交
242
    return terrno;
S
Shengliang Guan 已提交
243 244
  }

S
Shengliang Guan 已提交
245
  pRow->type = pRaw->type;
S
Shengliang Guan 已提交
246

S
Shengliang Guan 已提交
247
  int32_t keySize = sdbGetkeySize(pSdb, pRow->type, pRow->pObj);
S
Shengliang Guan 已提交
248
  int32_t code = TSDB_CODE_SDB_INVALID_ACTION_TYPE;
S
Shengliang Guan 已提交
249 250 251

  switch (pRaw->status) {
    case SDB_STATUS_CREATING:
S
Shengliang Guan 已提交
252
      code = sdbInsertRow(pSdb, hash, pRaw, pRow, keySize);
S
Shengliang Guan 已提交
253 254
      break;
    case SDB_STATUS_READY:
S
Shengliang Guan 已提交
255
    case SDB_STATUS_DROPPING:
S
Shengliang Guan 已提交
256
      code = sdbUpdateRow(pSdb, hash, pRaw, pRow, keySize);
S
Shengliang Guan 已提交
257 258
      break;
    case SDB_STATUS_DROPPED:
S
Shengliang Guan 已提交
259
      code = sdbDeleteRow(pSdb, hash, pRaw, pRow, keySize);
S
Shengliang Guan 已提交
260
      break;
S
Shengliang Guan 已提交
261 262
  }

263
  return code;
S
Shengliang Guan 已提交
264 265
}

S
Shengliang Guan 已提交
266
int32_t sdbWrite(SSdb *pSdb, SSdbRaw *pRaw) {
267
  int32_t code = sdbWriteWithoutFree(pSdb, pRaw);
S
Shengliang Guan 已提交
268 269 270 271
  sdbFreeRaw(pRaw);
  return code;
}

L
Liu Jicong 已提交
272
void *sdbAcquire(SSdb *pSdb, ESdbType type, const void *pKey) {
273 274
  terrno = 0;

S
Shengliang Guan 已提交
275
  SHashObj *hash = sdbGetHash(pSdb, type);
S
Shengliang Guan 已提交
276 277 278
  if (hash == NULL) return NULL;

  void   *pRet = NULL;
S
Shengliang Guan 已提交
279
  int32_t keySize = sdbGetkeySize(pSdb, type, pKey);
S
Shengliang Guan 已提交
280

281 282
  TdThreadRwlock *pLock = &pSdb->locks[type];
  taosThreadRwlockRdlock(pLock);
S
Shengliang Guan 已提交
283 284

  SSdbRow **ppRow = taosHashGet(hash, pKey, keySize);
S
Shengliang Guan 已提交
285
  if (ppRow == NULL || *ppRow == NULL) {
286
    taosThreadRwlockUnlock(pLock);
S
Shengliang Guan 已提交
287
    terrno = TSDB_CODE_SDB_OBJ_NOT_THERE;
S
Shengliang Guan 已提交
288 289 290
    return NULL;
  }

S
Shengliang Guan 已提交
291 292 293 294 295
  SSdbRow *pRow = *ppRow;
  switch (pRow->status) {
    case SDB_STATUS_READY:
      atomic_add_fetch_32(&pRow->refCount, 1);
      pRet = pRow->pObj;
296
      sdbPrintOper(pSdb, pRow, "acquire");
S
Shengliang Guan 已提交
297
      break;
S
Shengliang Guan 已提交
298 299
    case SDB_STATUS_CREATING:
      terrno = TSDB_CODE_SDB_OBJ_CREATING;
S
Shengliang Guan 已提交
300
      break;
S
Shengliang Guan 已提交
301
    case SDB_STATUS_DROPPING:
S
Shengliang Guan 已提交
302
      terrno = TSDB_CODE_SDB_OBJ_DROPPING;
S
Shengliang Guan 已提交
303 304
      break;
    default:
S
Shengliang Guan 已提交
305 306
      terrno = TSDB_CODE_SDB_APP_ERROR;
      break;
S
Shengliang Guan 已提交
307 308
  }

309
  taosThreadRwlockUnlock(pLock);
S
Shengliang Guan 已提交
310
  return pRet;
S
Shengliang Guan 已提交
311 312
}

S
Shengliang Guan 已提交
313
static void sdbCheckRow(SSdb *pSdb, SSdbRow *pRow) {
314 315
  TdThreadRwlock *pLock = &pSdb->locks[pRow->type];
  taosThreadRwlockWrlock(pLock);
316 317

  int32_t ref = atomic_load_32(&pRow->refCount);
318
  sdbPrintOper(pSdb, pRow, "check");
319
  if (ref <= 0 && pRow->status == SDB_STATUS_DROPPED) {
320
    sdbFreeRow(pSdb, pRow, true);
321 322
  }

323
  taosThreadRwlockUnlock(pLock);
324 325
}

S
Shengliang Guan 已提交
326
void sdbRelease(SSdb *pSdb, void *pObj) {
S
Shengliang Guan 已提交
327 328
  if (pObj == NULL) return;

S
Shengliang Guan 已提交
329
  SSdbRow *pRow = (SSdbRow *)((char *)pObj - sizeof(SSdbRow));
330
  if (pRow->type >= SDB_MAX) return;
S
Shengliang Guan 已提交
331

332 333
  TdThreadRwlock *pLock = &pSdb->locks[pRow->type];
  taosThreadRwlockWrlock(pLock);
S
Shengliang Guan 已提交
334 335

  int32_t ref = atomic_sub_fetch_32(&pRow->refCount, 1);
336
  sdbPrintOper(pSdb, pRow, "release");
S
Shengliang Guan 已提交
337
  if (ref <= 0 && pRow->status == SDB_STATUS_DROPPED) {
338
    sdbFreeRow(pSdb, pRow, true);
S
Shengliang Guan 已提交
339 340
  }

341
  taosThreadRwlockUnlock(pLock);
S
Shengliang Guan 已提交
342 343
}

S
Shengliang Guan 已提交
344
void *sdbFetch(SSdb *pSdb, ESdbType type, void *pIter, void **ppObj) {
345 346
  *ppObj = NULL;

S
Shengliang Guan 已提交
347
  SHashObj *hash = sdbGetHash(pSdb, type);
S
Shengliang Guan 已提交
348
  if (hash == NULL) return NULL;
S
Shengliang Guan 已提交
349

350 351
  TdThreadRwlock *pLock = &pSdb->locks[type];
  taosThreadRwlockRdlock(pLock);
S
Shengliang Guan 已提交
352

S
Shengliang Guan 已提交
353
  SSdbRow **ppRow = taosHashIterate(hash, pIter);
S
Shengliang Guan 已提交
354 355 356 357 358 359 360 361
  while (ppRow != NULL) {
    SSdbRow *pRow = *ppRow;
    if (pRow == NULL || pRow->status != SDB_STATUS_READY) {
      ppRow = taosHashIterate(hash, ppRow);
      continue;
    }

    atomic_add_fetch_32(&pRow->refCount, 1);
362
    sdbPrintOper(pSdb, pRow, "fetch");
S
Shengliang Guan 已提交
363 364 365
    *ppObj = pRow->pObj;
    break;
  }
366
  taosThreadRwlockUnlock(pLock);
S
Shengliang Guan 已提交
367

S
Shengliang Guan 已提交
368
  return ppRow;
S
Shengliang Guan 已提交
369 370
}

371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398
void *sdbFetchAll(SSdb *pSdb, ESdbType type, void *pIter, void **ppObj, ESdbStatus *status) {
  *ppObj = NULL;

  SHashObj *hash = sdbGetHash(pSdb, type);
  if (hash == NULL) return NULL;

  TdThreadRwlock *pLock = &pSdb->locks[type];
  taosThreadRwlockRdlock(pLock);

  SSdbRow **ppRow = taosHashIterate(hash, pIter);
  while (ppRow != NULL) {
    SSdbRow *pRow = *ppRow;
    if (pRow == NULL) {
      ppRow = taosHashIterate(hash, ppRow);
      continue;
    }

    atomic_add_fetch_32(&pRow->refCount, 1);
    sdbPrintOper(pSdb, pRow, "fetch");
    *ppObj = pRow->pObj;
    *status = pRow->status;
    break;
  }
  taosThreadRwlockUnlock(pLock);

  return ppRow;
}

S
Shengliang Guan 已提交
399
void sdbCancelFetch(SSdb *pSdb, void *pIter) {
S
Shengliang Guan 已提交
400 401
  if (pIter == NULL) return;
  SSdbRow  *pRow = *(SSdbRow **)pIter;
S
Shengliang Guan 已提交
402
  SHashObj *hash = sdbGetHash(pSdb, pRow->type);
S
Shengliang Guan 已提交
403
  if (hash == NULL) return;
S
Shengliang Guan 已提交
404

405 406
  TdThreadRwlock *pLock = &pSdb->locks[pRow->type];
  taosThreadRwlockRdlock(pLock);
S
Shengliang Guan 已提交
407
  taosHashCancelIterate(hash, pIter);
408
  taosThreadRwlockUnlock(pLock);
S
Shengliang Guan 已提交
409 410
}

S
Shengliang Guan 已提交
411 412 413 414
void sdbTraverse(SSdb *pSdb, ESdbType type, sdbTraverseFp fp, void *p1, void *p2, void *p3) {
  SHashObj *hash = sdbGetHash(pSdb, type);
  if (hash == NULL) return;

415 416
  TdThreadRwlock *pLock = &pSdb->locks[type];
  taosThreadRwlockRdlock(pLock);
S
Shengliang Guan 已提交
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431

  SSdbRow **ppRow = taosHashIterate(hash, NULL);
  while (ppRow != NULL) {
    SSdbRow *pRow = *ppRow;
    if (pRow->status == SDB_STATUS_READY) {
      bool isContinue = (*fp)(pSdb->pMnode, pRow->pObj, p1, p2, p3);
      if (!isContinue) {
        taosHashCancelIterate(hash, ppRow);
        break;
      }
    }

    ppRow = taosHashIterate(hash, ppRow);
  }

432
  taosThreadRwlockUnlock(pLock);
S
Shengliang Guan 已提交
433 434
}

S
Shengliang Guan 已提交
435 436
int32_t sdbGetSize(SSdb *pSdb, ESdbType type) {
  SHashObj *hash = sdbGetHash(pSdb, type);
S
Shengliang Guan 已提交
437
  if (hash == NULL) return 0;
S
Shengliang Guan 已提交
438

439 440
  TdThreadRwlock *pLock = &pSdb->locks[type];
  taosThreadRwlockRdlock(pLock);
S
Shengliang Guan 已提交
441
  int32_t size = taosHashGetSize(hash);
442
  taosThreadRwlockUnlock(pLock);
S
Shengliang Guan 已提交
443 444

  return size;
S
Shengliang Guan 已提交
445
}
S
Shengliang Guan 已提交
446 447 448 449 450 451 452 453 454

int32_t sdbGetMaxId(SSdb *pSdb, ESdbType type) {
  SHashObj *hash = sdbGetHash(pSdb, type);
  if (hash == NULL) return -1;

  if (pSdb->keyTypes[type] != SDB_KEY_INT32) return -1;

  int32_t maxId = 0;

455 456
  TdThreadRwlock *pLock = &pSdb->locks[type];
  taosThreadRwlockRdlock(pLock);
S
Shengliang Guan 已提交
457 458 459 460 461

  SSdbRow **ppRow = taosHashIterate(hash, NULL);
  while (ppRow != NULL) {
    SSdbRow *pRow = *ppRow;
    int32_t  id = *(int32_t *)pRow->pObj;
dengyihao's avatar
dengyihao 已提交
462
    maxId = TMAX(id, maxId);
S
Shengliang Guan 已提交
463 464 465
    ppRow = taosHashIterate(hash, ppRow);
  }

466
  taosThreadRwlockUnlock(pLock);
S
Shengliang Guan 已提交
467

dengyihao's avatar
dengyihao 已提交
468
  maxId = TMAX(maxId, pSdb->maxId[type]);
S
Shengliang Guan 已提交
469 470
  return maxId + 1;
}
471 472 473 474 475 476 477 478 479

int64_t sdbGetTableVer(SSdb *pSdb, ESdbType type) {
  if (type >= SDB_MAX || type < 0) {
    terrno = TSDB_CODE_SDB_INVALID_TABLE_TYPE;
    return -1;
  }

  return pSdb->tableVer[type];
}