streamBackendRocksdb.c 78.8 KB
Newer Older
dengyihao's avatar
dengyihao 已提交
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/>.
 */

dengyihao's avatar
dengyihao 已提交
16
#include "streamBackendRocksdb.h"
dengyihao's avatar
dengyihao 已提交
17
#include "executor.h"
dengyihao's avatar
dengyihao 已提交
18
#include "query.h"
dengyihao's avatar
dengyihao 已提交
19
#include "streamInc.h"
dengyihao's avatar
dengyihao 已提交
20
#include "tcommon.h"
dengyihao's avatar
dengyihao 已提交
21
#include "tref.h"
dengyihao's avatar
dengyihao 已提交
22

23 24 25 26
typedef struct SCompactFilteFactory {
  void* status;
} SCompactFilteFactory;

Y
yihaoDeng 已提交
27 28 29
typedef struct {
  void* tableOpt;
} RocksdbCfParam;
dengyihao's avatar
dengyihao 已提交
30 31 32 33 34 35 36
typedef struct {
  rocksdb_t*                       db;
  rocksdb_column_family_handle_t** pHandle;
  rocksdb_writeoptions_t*          wOpt;
  rocksdb_readoptions_t*           rOpt;
  rocksdb_options_t**              cfOpt;
  rocksdb_options_t*               dbOpt;
Y
yihaoDeng 已提交
37 38
  RocksdbCfParam*                  param;
  void*                            pBackend;
dengyihao's avatar
dengyihao 已提交
39
  SListNode*                       pCompareNode;
Y
yihaoDeng 已提交
40
  rocksdb_comparator_t**           pCompares;
dengyihao's avatar
dengyihao 已提交
41 42
} RocksdbCfInst;

dengyihao's avatar
dengyihao 已提交
43 44 45 46 47 48 49 50 51
uint32_t nextPow2(uint32_t x) {
  x = x - 1;
  x = x | (x >> 1);
  x = x | (x >> 2);
  x = x | (x >> 4);
  x = x | (x >> 8);
  x = x | (x >> 16);
  return x + 1;
}
Y
yihaoDeng 已提交
52
int32_t streamStateOpenBackendCf(void* backend, char* name, char** cfs, int32_t nCf);
dengyihao's avatar
dengyihao 已提交
53 54

void destroyRocksdbCfInst(RocksdbCfInst* inst);
dengyihao's avatar
dengyihao 已提交
55

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
void          destroyCompactFilteFactory(void* arg);
void          destroyCompactFilte(void* arg);
const char*   compactFilteFactoryName(void* arg);
const char*   compactFilteName(void* arg);
unsigned char compactFilte(void* arg, int level, const char* key, size_t klen, const char* val, size_t vlen,
                           char** newval, size_t* newvlen, unsigned char* value_changed);
rocksdb_compactionfilter_t* compactFilteFactoryCreateFilter(void* arg, rocksdb_compactionfiltercontext_t* ctx);

const char* cfName[] = {"default", "state", "fill", "sess", "func", "parname", "partag"};

typedef int (*EncodeFunc)(void* key, char* buf);
typedef int (*DecodeFunc)(void* key, char* buf);
typedef int (*ToStringFunc)(void* key, char* buf);
typedef const char* (*CompareName)(void* statue);
typedef int (*BackendCmpFunc)(void* state, const char* aBuf, size_t aLen, const char* bBuf, size_t bLen);
typedef void (*DestroyFunc)(void* state);
typedef int32_t (*EncodeValueFunc)(void* value, int32_t vlen, int64_t ttl, char** dest);
typedef int32_t (*DecodeValueFunc)(void* value, int32_t vlen, int64_t* ttl, char** dest);

const char* compareDefaultName(void* name);
const char* compareStateName(void* name);
const char* compareWinKeyName(void* name);
const char* compareSessionKeyName(void* name);
const char* compareFuncKeyName(void* name);
const char* compareParKeyName(void* name);
const char* comparePartagKeyName(void* name);

void* streamBackendInit(const char* path) {
dengyihao's avatar
dengyihao 已提交
84 85
  uint32_t dbMemLimit = nextPow2(tsMaxStreamBackendCache) << 20;

dengyihao's avatar
dengyihao 已提交
86
  qDebug("start to init stream backend at %s", path);
dengyihao's avatar
dengyihao 已提交
87
  SBackendHandle* pHandle = taosMemoryCalloc(1, sizeof(SBackendHandle));
88 89
  pHandle->list = tdListNew(sizeof(SCfComparator));
  taosThreadMutexInit(&pHandle->mutex, NULL);
dengyihao's avatar
dengyihao 已提交
90 91
  taosThreadMutexInit(&pHandle->cfMutex, NULL);
  pHandle->cfInst = taosHashInit(64, taosGetDefaultHashFunction(TSDB_DATA_TYPE_BINARY), false, HASH_NO_LOCK);
92 93 94

  rocksdb_env_t* env = rocksdb_create_default_env();  // rocksdb_envoptions_create();

dengyihao's avatar
dengyihao 已提交
95 96 97 98 99
  int32_t nBGThread = tsNumOfSnodeStreamThreads <= 2 ? 1 : tsNumOfSnodeStreamThreads / 2;
  rocksdb_env_set_low_priority_background_threads(env, nBGThread);
  rocksdb_env_set_high_priority_background_threads(env, nBGThread);

  rocksdb_cache_t* cache = rocksdb_cache_create_lru(dbMemLimit / 2);
100 101 102 103 104

  rocksdb_options_t* opts = rocksdb_options_create();
  rocksdb_options_set_env(opts, env);
  rocksdb_options_set_create_if_missing(opts, 1);
  rocksdb_options_set_create_missing_column_families(opts, 1);
dengyihao's avatar
dengyihao 已提交
105
  rocksdb_options_set_max_total_wal_size(opts, dbMemLimit);
106
  rocksdb_options_set_recycle_log_file_num(opts, 6);
dengyihao's avatar
dengyihao 已提交
107
  rocksdb_options_set_max_write_buffer_number(opts, 3);
dengyihao's avatar
dengyihao 已提交
108
  rocksdb_options_set_info_log_level(opts, 0);
dengyihao's avatar
dengyihao 已提交
109 110
  rocksdb_options_set_db_write_buffer_size(opts, dbMemLimit);
  rocksdb_options_set_write_buffer_size(opts, dbMemLimit / 2);
111 112 113 114 115 116 117 118

  pHandle->env = env;
  pHandle->dbOpt = opts;
  pHandle->cache = cache;
  pHandle->filterFactory = rocksdb_compactionfilterfactory_create(
      NULL, destroyCompactFilteFactory, compactFilteFactoryCreateFilter, compactFilteFactoryName);
  rocksdb_options_set_compaction_filter_factory(pHandle->dbOpt, pHandle->filterFactory);

dengyihao's avatar
dengyihao 已提交
119 120 121 122
  char*  err = NULL;
  size_t nCf = 0;

  char** cfs = rocksdb_list_column_families(opts, path, &nCf, &err);
dengyihao's avatar
dengyihao 已提交
123
  if (nCf == 0 || nCf == 1 || err != NULL) {
124
    taosMemoryFreeClear(err);
dengyihao's avatar
dengyihao 已提交
125 126 127 128
    pHandle->db = rocksdb_open(opts, path, &err);
    if (err != NULL) {
      qError("failed to open rocksdb, path:%s, reason:%s", path, err);
      taosMemoryFreeClear(err);
dengyihao's avatar
dengyihao 已提交
129
      goto _EXIT;
dengyihao's avatar
dengyihao 已提交
130 131
    }
  } else {
dengyihao's avatar
dengyihao 已提交
132 133 134
    /*
      list all cf and get prefix
    */
Y
yihaoDeng 已提交
135
    streamStateOpenBackendCf(pHandle, (char*)path, cfs, nCf);
136
  }
137 138 139
  if (cfs != NULL) {
    rocksdb_list_column_families_destroy(cfs, nCf);
  }
dengyihao's avatar
dengyihao 已提交
140
  qDebug("succ to init stream backend at %s, backend:%p", path, pHandle);
141 142 143 144 145 146 147

  return (void*)pHandle;
_EXIT:
  rocksdb_options_destroy(opts);
  rocksdb_cache_destroy(cache);
  rocksdb_env_destroy(env);
  taosThreadMutexDestroy(&pHandle->mutex);
dengyihao's avatar
dengyihao 已提交
148 149
  taosThreadMutexDestroy(&pHandle->cfMutex);
  taosHashCleanup(pHandle->cfInst);
150 151
  rocksdb_compactionfilterfactory_destroy(pHandle->filterFactory);
  tdListFree(pHandle->list);
dengyihao's avatar
dengyihao 已提交
152
  taosMemoryFree(pHandle);
dengyihao's avatar
dengyihao 已提交
153
  qDebug("failed to init stream backend at %s", path);
154 155 156
  return NULL;
}
void streamBackendCleanup(void* arg) {
dengyihao's avatar
dengyihao 已提交
157
  SBackendHandle* pHandle = (SBackendHandle*)arg;
dengyihao's avatar
dengyihao 已提交
158 159 160 161 162 163 164
  RocksdbCfInst** pIter = (RocksdbCfInst**)taosHashIterate(pHandle->cfInst, NULL);
  while (pIter != NULL) {
    RocksdbCfInst* inst = *pIter;
    destroyRocksdbCfInst(inst);
    taosHashIterate(pHandle->cfInst, pIter);
  }
  taosHashCleanup(pHandle->cfInst);
dengyihao's avatar
dengyihao 已提交
165

Y
yihaoDeng 已提交
166 167 168 169 170 171 172 173 174 175
  if (pHandle->db) {
    char*                   err = NULL;
    rocksdb_flushoptions_t* flushOpt = rocksdb_flushoptions_create();
    rocksdb_flush(pHandle->db, flushOpt, &err);
    if (err != NULL) {
      qError("failed to flush db before streamBackend clean up, reason:%s", err);
      taosMemoryFree(err);
    }
    rocksdb_flushoptions_destroy(flushOpt);
    rocksdb_close(pHandle->db);
dengyihao's avatar
dengyihao 已提交
176
  }
177 178 179 180 181 182 183 184 185 186
  rocksdb_options_destroy(pHandle->dbOpt);
  rocksdb_env_destroy(pHandle->env);
  rocksdb_cache_destroy(pHandle->cache);

  SListNode* head = tdListPopHead(pHandle->list);
  while (head != NULL) {
    streamStateDestroyCompar(head->data);
    taosMemoryFree(head);
    head = tdListPopHead(pHandle->list);
  }
dengyihao's avatar
dengyihao 已提交
187

188
  tdListFree(pHandle->list);
dengyihao's avatar
dengyihao 已提交
189 190
  taosThreadMutexDestroy(&pHandle->mutex);

dengyihao's avatar
dengyihao 已提交
191
  taosThreadMutexDestroy(&pHandle->cfMutex);
192 193

  taosMemoryFree(pHandle);
dengyihao's avatar
dengyihao 已提交
194
  qDebug("destroy stream backend backend:%p", pHandle);
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216
  return;
}
SListNode* streamBackendAddCompare(void* backend, void* arg) {
  SBackendHandle* pHandle = (SBackendHandle*)backend;
  SListNode*      node = NULL;
  taosThreadMutexLock(&pHandle->mutex);
  node = tdListAdd(pHandle->list, arg);
  taosThreadMutexUnlock(&pHandle->mutex);
  return node;
}
void streamBackendDelCompare(void* backend, void* arg) {
  SBackendHandle* pHandle = (SBackendHandle*)backend;
  SListNode*      node = NULL;
  taosThreadMutexLock(&pHandle->mutex);
  node = tdListPopNode(pHandle->list, arg);
  taosThreadMutexUnlock(&pHandle->mutex);
  if (node) {
    streamStateDestroyCompar(node->data);
    taosMemoryFree(node);
  }
}
void        streamStateDestroy_rocksdb(SStreamState* pState, bool remove) { streamStateCloseBackend(pState, remove); }
dengyihao's avatar
dengyihao 已提交
217 218 219 220 221 222 223 224
static bool streamStateIterSeekAndValid(rocksdb_iterator_t* iter, char* buf, size_t len);

// |key|-----value------|
// |key|ttl|len|userData|

static rocksdb_iterator_t* streamStateIterCreate(SStreamState* pState, const char* cfName,
                                                 rocksdb_snapshot_t** snapshot, rocksdb_readoptions_t** readOpt);

dengyihao's avatar
dengyihao 已提交
225
int defaultKeyComp(void* state, const char* aBuf, size_t aLen, const char* bBuf, size_t bLen) {
dengyihao's avatar
dengyihao 已提交
226 227 228 229 230 231 232 233 234 235 236
  int ret = memcmp(aBuf, bBuf, aLen);
  if (ret == 0) {
    if (aLen < bLen)
      return -1;
    else if (aLen > bLen)
      return 1;
    else
      return 0;
  } else {
    return ret;
  }
dengyihao's avatar
dengyihao 已提交
237
}
dengyihao's avatar
dengyihao 已提交
238 239 240
int streamStateValueIsStale(char* vv) {
  int64_t ts = 0;
  taosDecodeFixedI64(vv, &ts);
dengyihao's avatar
dengyihao 已提交
241
  return (ts != 0 && ts < taosGetTimestampMs()) ? 1 : 0;
dengyihao's avatar
dengyihao 已提交
242
}
dengyihao's avatar
dengyihao 已提交
243
int iterValueIsStale(rocksdb_iterator_t* iter) {
dengyihao's avatar
dengyihao 已提交
244 245 246
  size_t len;
  char*  v = (char*)rocksdb_iter_value(iter, &len);
  return streamStateValueIsStale(v);
dengyihao's avatar
dengyihao 已提交
247
}
dengyihao's avatar
dengyihao 已提交
248 249 250 251 252 253 254 255 256 257 258 259 260 261
int defaultKeyEncode(void* k, char* buf) {
  int len = strlen((char*)k);
  memcpy(buf, (char*)k, len);
  return len;
}
int defaultKeyDecode(void* k, char* buf) {
  int len = strlen(buf);
  memcpy(k, buf, len);
  return len;
}
int defaultKeyToString(void* k, char* buf) {
  // just to debug
  return sprintf(buf, "key: %s", (char*)k);
}
dengyihao's avatar
dengyihao 已提交
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
//
//  SStateKey
//  |--groupid--|---ts------|--opNum----|
//  |--uint64_t-|-uint64_t--|--int64_t--|
//
//
//
int stateKeyDBComp(void* state, const char* aBuf, size_t aLen, const char* bBuf, size_t bLen) {
  SStateKey key1, key2;
  memset(&key1, 0, sizeof(key1));
  memset(&key2, 0, sizeof(key2));

  char* p1 = (char*)aBuf;
  char* p2 = (char*)bBuf;

  p1 = taosDecodeFixedU64(p1, &key1.key.groupId);
  p2 = taosDecodeFixedU64(p2, &key2.key.groupId);

  p1 = taosDecodeFixedI64(p1, &key1.key.ts);
  p2 = taosDecodeFixedI64(p2, &key2.key.ts);

  taosDecodeFixedI64(p1, &key1.opNum);
  taosDecodeFixedI64(p2, &key2.opNum);

  return stateKeyCmpr(&key1, sizeof(key1), &key2, sizeof(key2));
}

int stateKeyEncode(void* k, char* buf) {
  SStateKey* key = k;
  int        len = 0;
  len += taosEncodeFixedU64((void**)&buf, key->key.groupId);
  len += taosEncodeFixedI64((void**)&buf, key->key.ts);
dengyihao's avatar
dengyihao 已提交
294
  len += taosEncodeFixedI64((void**)&buf, key->opNum);
dengyihao's avatar
dengyihao 已提交
295 296 297 298 299 300 301 302 303 304 305 306
  return len;
}
int stateKeyDecode(void* k, char* buf) {
  SStateKey* key = k;
  int        len = 0;
  char*      p = buf;
  p = taosDecodeFixedU64(p, &key->key.groupId);
  p = taosDecodeFixedI64(p, &key->key.ts);
  p = taosDecodeFixedI64(p, &key->opNum);
  return p - buf;
}

dengyihao's avatar
dengyihao 已提交
307 308 309
int stateKeyToString(void* k, char* buf) {
  SStateKey* key = k;
  int        n = 0;
dengyihao's avatar
dengyihao 已提交
310 311 312
  n += sprintf(buf + n, "[groupId:%" PRId64 ",", key->key.groupId);
  n += sprintf(buf + n, "ts:%" PRIi64 ",", key->key.ts);
  n += sprintf(buf + n, "opNum:%" PRIi64 "]", key->opNum);
dengyihao's avatar
dengyihao 已提交
313 314 315
  return n;
}

dengyihao's avatar
dengyihao 已提交
316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
//
// SStateSessionKey
//  |-----------SSessionKey----------|
//  |-----STimeWindow-----|
//  |---skey--|---ekey----|--groupId-|--opNum--|
//  |---int64-|--int64_t--|--uint64--|--int64_t|
// |
//
int stateSessionKeyDBComp(void* state, const char* aBuf, size_t aLen, const char* bBuf, size_t bLen) {
  SStateSessionKey w1, w2;
  memset(&w1, 0, sizeof(w1));
  memset(&w2, 0, sizeof(w2));

  char* p1 = (char*)aBuf;
  char* p2 = (char*)bBuf;

  p1 = taosDecodeFixedI64(p1, &w1.key.win.skey);
  p2 = taosDecodeFixedI64(p2, &w2.key.win.skey);

  p1 = taosDecodeFixedI64(p1, &w1.key.win.ekey);
  p2 = taosDecodeFixedI64(p2, &w2.key.win.ekey);

  p1 = taosDecodeFixedU64(p1, &w1.key.groupId);
  p2 = taosDecodeFixedU64(p2, &w2.key.groupId);

  p1 = taosDecodeFixedI64(p1, &w1.opNum);
  p2 = taosDecodeFixedI64(p2, &w2.opNum);

  return stateSessionKeyCmpr(&w1, sizeof(w1), &w2, sizeof(w2));
}
int stateSessionKeyEncode(void* ses, char* buf) {
  SStateSessionKey* sess = ses;
  int               len = 0;
  len += taosEncodeFixedI64((void**)&buf, sess->key.win.skey);
  len += taosEncodeFixedI64((void**)&buf, sess->key.win.ekey);
  len += taosEncodeFixedU64((void**)&buf, sess->key.groupId);
  len += taosEncodeFixedI64((void**)&buf, sess->opNum);
  return len;
}
int stateSessionKeyDecode(void* ses, char* buf) {
  SStateSessionKey* sess = ses;
  int               len = 0;

  char* p = buf;
  p = taosDecodeFixedI64(p, &sess->key.win.skey);
  p = taosDecodeFixedI64(p, &sess->key.win.ekey);
  p = taosDecodeFixedU64(p, &sess->key.groupId);
  p = taosDecodeFixedI64(p, &sess->opNum);
  return p - buf;
}
dengyihao's avatar
dengyihao 已提交
366 367 368
int stateSessionKeyToString(void* k, char* buf) {
  SStateSessionKey* key = k;
  int               n = 0;
dengyihao's avatar
dengyihao 已提交
369 370 371 372
  n += sprintf(buf + n, "[skey:%" PRIi64 ",", key->key.win.skey);
  n += sprintf(buf + n, "ekey:%" PRIi64 ",", key->key.win.ekey);
  n += sprintf(buf + n, "groupId:%" PRIu64 ",", key->key.groupId);
  n += sprintf(buf + n, "opNum:%" PRIi64 "]", key->opNum);
dengyihao's avatar
dengyihao 已提交
373 374
  return n;
}
dengyihao's avatar
dengyihao 已提交
375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413

/**
 *  SWinKey
 *  |------groupId------|-----ts------|
 *  |------uint64-------|----int64----|
 */
int winKeyDBComp(void* state, const char* aBuf, size_t aLen, const char* bBuf, size_t bLen) {
  SWinKey w1, w2;
  memset(&w1, 0, sizeof(w1));
  memset(&w2, 0, sizeof(w2));

  char* p1 = (char*)aBuf;
  char* p2 = (char*)bBuf;

  p1 = taosDecodeFixedU64(p1, &w1.groupId);
  p2 = taosDecodeFixedU64(p2, &w2.groupId);

  p1 = taosDecodeFixedI64(p1, &w1.ts);
  p2 = taosDecodeFixedI64(p2, &w2.ts);

  return winKeyCmpr(&w1, sizeof(w1), &w2, sizeof(w2));
}

int winKeyEncode(void* k, char* buf) {
  SWinKey* key = k;
  int      len = 0;
  len += taosEncodeFixedU64((void**)&buf, key->groupId);
  len += taosEncodeFixedI64((void**)&buf, key->ts);
  return len;
}

int winKeyDecode(void* k, char* buf) {
  SWinKey* key = k;
  int      len = 0;
  char*    p = buf;
  p = taosDecodeFixedU64(p, &key->groupId);
  p = taosDecodeFixedI64(p, &key->ts);
  return len;
}
dengyihao's avatar
dengyihao 已提交
414 415 416 417

int winKeyToString(void* k, char* buf) {
  SWinKey* key = k;
  int      n = 0;
dengyihao's avatar
dengyihao 已提交
418 419
  n += sprintf(buf + n, "[groupId:%" PRIu64 ",", key->groupId);
  n += sprintf(buf + n, "ts:%" PRIi64 "]", key->ts);
dengyihao's avatar
dengyihao 已提交
420 421
  return n;
}
dengyihao's avatar
dengyihao 已提交
422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463
/*
 * STupleKey
 * |---groupId---|---ts---|---exprIdx---|
 * |---uint64--|---int64--|---int32-----|
 */
int tupleKeyDBComp(void* state, const char* aBuf, size_t aLen, const char* bBuf, size_t bLen) {
  STupleKey w1, w2;
  memset(&w1, 0, sizeof(w1));
  memset(&w2, 0, sizeof(w2));

  char* p1 = (char*)aBuf;
  char* p2 = (char*)bBuf;

  p1 = taosDecodeFixedU64(p1, &w1.groupId);
  p2 = taosDecodeFixedU64(p2, &w2.groupId);

  p1 = taosDecodeFixedI64(p1, &w1.ts);
  p2 = taosDecodeFixedI64(p2, &w2.ts);

  p1 = taosDecodeFixedI32(p1, &w1.exprIdx);
  p2 = taosDecodeFixedI32(p2, &w2.exprIdx);

  return STupleKeyCmpr(&w1, sizeof(w1), &w2, sizeof(w2));
}

int tupleKeyEncode(void* k, char* buf) {
  STupleKey* key = k;
  int        len = 0;
  len += taosEncodeFixedU64((void**)&buf, key->groupId);
  len += taosEncodeFixedI64((void**)&buf, key->ts);
  len += taosEncodeFixedI32((void**)&buf, key->exprIdx);
  return len;
}
int tupleKeyDecode(void* k, char* buf) {
  STupleKey* key = k;
  int        len = 0;
  char*      p = buf;
  p = taosDecodeFixedU64(p, &key->groupId);
  p = taosDecodeFixedI64(p, &key->ts);
  p = taosDecodeFixedI32(p, &key->exprIdx);
  return len;
}
dengyihao's avatar
dengyihao 已提交
464 465 466
int tupleKeyToString(void* k, char* buf) {
  int        n = 0;
  STupleKey* key = k;
dengyihao's avatar
dengyihao 已提交
467 468 469
  n += sprintf(buf + n, "[groupId:%" PRIu64 ",", key->groupId);
  n += sprintf(buf + n, "ts:%" PRIi64 ",", key->ts);
  n += sprintf(buf + n, "exprIdx:%d]", key->exprIdx);
dengyihao's avatar
dengyihao 已提交
470 471
  return n;
}
dengyihao's avatar
dengyihao 已提交
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499

int parKeyDBComp(void* state, const char* aBuf, size_t aLen, const char* bBuf, size_t bLen) {
  int64_t w1, w2;
  memset(&w1, 0, sizeof(w1));
  memset(&w2, 0, sizeof(w2));
  char* p1 = (char*)aBuf;
  char* p2 = (char*)bBuf;

  taosDecodeFixedI64(p1, &w1);
  taosDecodeFixedI64(p2, &w2);
  if (w1 == w2) {
    return 0;
  } else {
    return w1 < w2 ? -1 : 1;
  }
}
int parKeyEncode(void* k, char* buf) {
  int64_t* groupid = k;
  int      len = taosEncodeFixedI64((void**)&buf, *groupid);
  return len;
}
int parKeyDecode(void* k, char* buf) {
  char*    p = buf;
  int64_t* groupid = k;

  p = taosDecodeFixedI64(p, groupid);
  return p - buf;
}
dengyihao's avatar
dengyihao 已提交
500 501 502
int parKeyToString(void* k, char* buf) {
  int64_t* key = k;
  int      n = 0;
dengyihao's avatar
dengyihao 已提交
503
  n = sprintf(buf + n, "[groupId:%" PRIi64 "]", *key);
dengyihao's avatar
dengyihao 已提交
504 505
  return n;
}
dengyihao's avatar
dengyihao 已提交
506
int stremaValueEncode(void* k, char* buf) {
dengyihao's avatar
dengyihao 已提交
507 508
  int           len = 0;
  SStreamValue* key = k;
dengyihao's avatar
dengyihao 已提交
509 510 511 512 513 514
  len += taosEncodeFixedI64((void**)&buf, key->unixTimestamp);
  len += taosEncodeFixedI32((void**)&buf, key->len);
  len += taosEncodeBinary((void**)&buf, key->data, key->len);
  return len;
}
int streamValueDecode(void* k, char* buf) {
dengyihao's avatar
dengyihao 已提交
515 516
  SStreamValue* key = k;
  char*         p = buf;
dengyihao's avatar
dengyihao 已提交
517 518 519 520 521 522
  p = taosDecodeFixedI64(p, &key->unixTimestamp);
  p = taosDecodeFixedI32(p, &key->len);
  p = taosDecodeBinary(p, (void**)&key->data, key->len);
  return p - buf;
}
int32_t streamValueToString(void* k, char* buf) {
dengyihao's avatar
dengyihao 已提交
523 524
  SStreamValue* key = k;
  int           n = 0;
dengyihao's avatar
dengyihao 已提交
525 526 527 528 529 530
  n += sprintf(buf + n, "[unixTimestamp:%" PRIi64 ",", key->unixTimestamp);
  n += sprintf(buf + n, "len:%d,", key->len);
  n += sprintf(buf + n, "data:%s]", key->data);
  return n;
}

dengyihao's avatar
dengyihao 已提交
531
/*1: stale, 0: no stale*/
dengyihao's avatar
dengyihao 已提交
532
int32_t streaValueIsStale(void* k, int64_t ts) {
dengyihao's avatar
dengyihao 已提交
533
  SStreamValue* key = k;
dengyihao's avatar
dengyihao 已提交
534 535 536 537 538
  if (key->unixTimestamp < ts) {
    return 1;
  }
  return 0;
}
dengyihao's avatar
dengyihao 已提交
539

dengyihao's avatar
dengyihao 已提交
540 541 542 543
void destroyFunc(void* arg) {
  (void)arg;
  return;
}
dengyihao's avatar
dengyihao 已提交
544

dengyihao's avatar
dengyihao 已提交
545
typedef struct {
dengyihao's avatar
dengyihao 已提交
546 547 548 549 550 551 552 553 554 555 556
  const char*     key;
  int32_t         len;
  int             idx;
  BackendCmpFunc  cmpFunc;
  EncodeFunc      enFunc;
  DecodeFunc      deFunc;
  ToStringFunc    toStrFunc;
  CompareName     cmpName;
  DestroyFunc     detroyFunc;
  EncodeValueFunc enValueFunc;
  DecodeValueFunc deValueFunc;
dengyihao's avatar
dengyihao 已提交
557

dengyihao's avatar
dengyihao 已提交
558 559
} SCfInit;

dengyihao's avatar
dengyihao 已提交
560
#define GEN_COLUMN_FAMILY_NAME(name, idstr, SUFFIX) sprintf(name, "%s_%s", idstr, (SUFFIX));
dengyihao's avatar
dengyihao 已提交
561

dengyihao's avatar
dengyihao 已提交
562 563
int32_t encodeValueFunc(void* value, int32_t vlen, int64_t ttl, char** dest) {
  SStreamValue key = {.unixTimestamp = ttl, .len = vlen, .data = (char*)(value)};
dengyihao's avatar
dengyihao 已提交
564 565 566 567 568 569 570 571 572 573 574 575 576 577
  int32_t      len = 0;
  if (*dest == NULL) {
    char* p = taosMemoryCalloc(1, sizeof(int64_t) + sizeof(int32_t) + key.len);
    char* buf = p;
    len += taosEncodeFixedI64((void**)&buf, key.unixTimestamp);
    len += taosEncodeFixedI32((void**)&buf, key.len);
    len += taosEncodeBinary((void**)&buf, (char*)value, vlen);
    *dest = p;
  } else {
    char* buf = *dest;
    len += taosEncodeFixedI64((void**)&buf, key.unixTimestamp);
    len += taosEncodeFixedI32((void**)&buf, key.len);
    len += taosEncodeBinary((void**)&buf, (char*)value, vlen);
  }
dengyihao's avatar
dengyihao 已提交
578 579
  return len;
}
dengyihao's avatar
dengyihao 已提交
580 581 582 583
/*
 *  ret >= 0 : found valid value
 *  ret < 0 : error or timeout
 */
dengyihao's avatar
dengyihao 已提交
584 585 586
int32_t decodeValueFunc(void* value, int32_t vlen, int64_t* ttl, char** dest) {
  SStreamValue key = {0};
  char*        p = value;
dengyihao's avatar
dengyihao 已提交
587
  if (streamStateValueIsStale(p)) {
dengyihao's avatar
dengyihao 已提交
588 589 590
    *dest = NULL;
    return -1;
  }
dengyihao's avatar
dengyihao 已提交
591 592
  p = taosDecodeFixedI64(p, &key.unixTimestamp);
  p = taosDecodeFixedI32(p, &key.len);
Y
yihaoDeng 已提交
593
  if (vlen != (sizeof(int64_t) + sizeof(int32_t) + key.len)) {
dengyihao's avatar
dengyihao 已提交
594
    if (dest != NULL) *dest = NULL;
Y
yihaoDeng 已提交
595
    qError("vlen: %d, read len: %d", vlen, key.len);
dengyihao's avatar
dengyihao 已提交
596 597 598
    return -1;
  }

dengyihao's avatar
dengyihao 已提交
599 600 601 602 603 604
  if (key.len == 0) {
    key.data = NULL;
  } else {
    p = taosDecodeBinary(p, (void**)&(key.data), key.len);
  }

dengyihao's avatar
dengyihao 已提交
605
  if (ttl != NULL) {
dengyihao's avatar
dengyihao 已提交
606
    int64_t now = taosGetTimestampMs();
dengyihao's avatar
dengyihao 已提交
607 608 609 610 611 612 613
    *ttl = key.unixTimestamp == 0 ? 0 : key.unixTimestamp - now;
  }
  if (dest != NULL) {
    *dest = key.data;
  } else {
    taosMemoryFree(key.data);
  }
dengyihao's avatar
dengyihao 已提交
614 615
  return key.len;
}
dengyihao's avatar
dengyihao 已提交
616
SCfInit ginitDict[] = {
dengyihao's avatar
dengyihao 已提交
617
    {"default", 7, 0, defaultKeyComp, defaultKeyEncode, defaultKeyDecode, defaultKeyToString, compareDefaultName,
dengyihao's avatar
dengyihao 已提交
618 619 620 621 622
     destroyFunc, encodeValueFunc, decodeValueFunc},
    {"state", 5, 1, stateKeyDBComp, stateKeyEncode, stateKeyDecode, stateKeyToString, compareStateName, destroyFunc,
     encodeValueFunc, decodeValueFunc},
    {"fill", 4, 2, winKeyDBComp, winKeyEncode, winKeyDecode, winKeyToString, compareWinKeyName, destroyFunc,
     encodeValueFunc, decodeValueFunc},
dengyihao's avatar
dengyihao 已提交
623
    {"sess", 4, 3, stateSessionKeyDBComp, stateSessionKeyEncode, stateSessionKeyDecode, stateSessionKeyToString,
dengyihao's avatar
dengyihao 已提交
624 625 626 627 628 629 630
     compareSessionKeyName, destroyFunc, encodeValueFunc, decodeValueFunc},
    {"func", 4, 4, tupleKeyDBComp, tupleKeyEncode, tupleKeyDecode, tupleKeyToString, compareFuncKeyName, destroyFunc,
     encodeValueFunc, decodeValueFunc},
    {"parname", 7, 5, parKeyDBComp, parKeyEncode, parKeyDecode, parKeyToString, compareParKeyName, destroyFunc,
     encodeValueFunc, decodeValueFunc},
    {"partag", 6, 6, parKeyDBComp, parKeyEncode, parKeyDecode, parKeyToString, comparePartagKeyName, destroyFunc,
     encodeValueFunc, decodeValueFunc},
dengyihao's avatar
dengyihao 已提交
631 632
};

dengyihao's avatar
dengyihao 已提交
633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
const char* compareDefaultName(void* arg) {
  (void)arg;
  return ginitDict[0].key;
}
const char* compareStateName(void* arg) {
  (void)arg;
  return ginitDict[1].key;
}
const char* compareWinKeyName(void* arg) {
  (void)arg;
  return ginitDict[2].key;
}
const char* compareSessionKeyName(void* arg) {
  (void)arg;
  return ginitDict[3].key;
}
const char* compareFuncKeyName(void* arg) {
  (void)arg;
  return ginitDict[4].key;
}
const char* compareParKeyName(void* arg) {
  (void)arg;
  return ginitDict[5].key;
}
const char* comparePartagKeyName(void* arg) {
  (void)arg;
  return ginitDict[6].key;
}
dengyihao's avatar
dengyihao 已提交
661

dengyihao's avatar
dengyihao 已提交
662 663 664 665 666 667 668 669
void destroyCompactFilteFactory(void* arg) {
  if (arg == NULL) return;
}
const char* compactFilteFactoryName(void* arg) {
  SCompactFilteFactory* state = arg;
  return "stream_compact_filter";
}

dengyihao's avatar
dengyihao 已提交
670
void          destroyCompactFilte(void* arg) { (void)arg; }
dengyihao's avatar
dengyihao 已提交
671 672
unsigned char compactFilte(void* arg, int level, const char* key, size_t klen, const char* val, size_t vlen,
                           char** newval, size_t* newvlen, unsigned char* value_changed) {
dengyihao's avatar
dengyihao 已提交
673
  return streamStateValueIsStale((char*)val) ? 1 : 0;
dengyihao's avatar
dengyihao 已提交
674 675 676 677 678 679 680 681 682
}
const char* compactFilteName(void* arg) { return "stream_filte"; }

rocksdb_compactionfilter_t* compactFilteFactoryCreateFilter(void* arg, rocksdb_compactionfiltercontext_t* ctx) {
  SCompactFilteFactory*       state = arg;
  rocksdb_compactionfilter_t* filter =
      rocksdb_compactionfilter_create(NULL, destroyCompactFilte, compactFilte, compactFilteName);
  return filter;
}
dengyihao's avatar
dengyihao 已提交
683

dengyihao's avatar
dengyihao 已提交
684 685
void destroyRocksdbCfInst(RocksdbCfInst* inst) {
  int cfLen = sizeof(ginitDict) / sizeof(ginitDict[0]);
dengyihao's avatar
dengyihao 已提交
686
  for (int i = 0; i < cfLen; i++) {
Y
yihaoDeng 已提交
687
    if (inst->pHandle[i]) rocksdb_column_family_handle_destroy((inst->pHandle)[i]);
dengyihao's avatar
dengyihao 已提交
688 689
  }

dengyihao's avatar
dengyihao 已提交
690 691 692 693 694 695 696 697 698
  rocksdb_writeoptions_destroy(inst->wOpt);
  inst->wOpt = NULL;

  rocksdb_readoptions_destroy(inst->rOpt);
  taosMemoryFree(inst->cfOpt);
  taosMemoryFreeClear(inst->param);
  taosMemoryFree(inst);
}

Y
yihaoDeng 已提交
699
int32_t streamStateOpenBackendCf(void* backend, char* name, char** cfs, int32_t nCf) {
dengyihao's avatar
dengyihao 已提交
700 701
  SBackendHandle* handle = backend;
  char*           err = NULL;
Y
yihaoDeng 已提交
702 703 704 705 706 707 708 709 710 711 712 713
  int64_t         streamId;
  int32_t         taskId, dummy = 0;
  char            suffix[64] = {0};

  rocksdb_options_t**              cfOpts = taosMemoryCalloc(nCf, sizeof(rocksdb_options_t*));
  RocksdbCfParam*                  params = taosMemoryCalloc(nCf, sizeof(RocksdbCfParam*));
  rocksdb_comparator_t**           pCompare = taosMemoryCalloc(nCf, sizeof(rocksdb_comparator_t**));
  rocksdb_column_family_handle_t** cfHandle = taosMemoryCalloc(nCf, sizeof(rocksdb_column_family_handle_t*));

  for (int i = 0; i < nCf; i++) {
    char* cf = cfs[i];
    char  funcname[64] = {0};
dengyihao's avatar
dengyihao 已提交
714
    cfOpts[i] = rocksdb_options_create_copy(handle->dbOpt);
Y
yihaoDeng 已提交
715 716 717 718
    if (i == 0) continue;
    if (3 == sscanf(cf, "0x%" PRIx64 "-%d_%s", &streamId, &taskId, funcname)) {
      rocksdb_block_based_table_options_t* tableOpt = rocksdb_block_based_options_create();
      rocksdb_block_based_options_set_block_cache(tableOpt, handle->cache);
dengyihao's avatar
dengyihao 已提交
719

Y
yihaoDeng 已提交
720 721
      rocksdb_filterpolicy_t* filter = rocksdb_filterpolicy_create_bloom(15);
      rocksdb_block_based_options_set_filter_policy(tableOpt, filter);
dengyihao's avatar
dengyihao 已提交
722

Y
yihaoDeng 已提交
723 724
      rocksdb_options_set_block_based_table_factory((rocksdb_options_t*)cfOpts[i], tableOpt);
      params[i].tableOpt = tableOpt;
dengyihao's avatar
dengyihao 已提交
725

dengyihao's avatar
dengyihao 已提交
726
      int      idx = streamStateGetCfIdx(NULL, funcname);
Y
yihaoDeng 已提交
727
      SCfInit* cfPara = &ginitDict[idx];
dengyihao's avatar
dengyihao 已提交
728

Y
yihaoDeng 已提交
729 730 731 732 733
      rocksdb_comparator_t* compare =
          rocksdb_comparator_create(NULL, cfPara->detroyFunc, cfPara->cmpFunc, cfPara->cmpName);
      rocksdb_options_set_comparator((rocksdb_options_t*)cfOpts[i], compare);
      pCompare[i] = compare;
    }
dengyihao's avatar
dengyihao 已提交
734
  }
Y
yihaoDeng 已提交
735
  rocksdb_t* db = rocksdb_open_column_families(handle->dbOpt, name, nCf, (const char* const*)cfs,
dengyihao's avatar
dengyihao 已提交
736
                                               (const rocksdb_options_t* const*)cfOpts, cfHandle, &err);
dengyihao's avatar
dengyihao 已提交
737 738 739 740
  if (err != NULL) {
    qError("failed to open rocksdb cf, reason:%s", err);
    taosMemoryFree(err);
  } else {
Y
yihaoDeng 已提交
741
    qDebug("succ to open rocksdb cf");
dengyihao's avatar
dengyihao 已提交
742
  }
Y
yihaoDeng 已提交
743
  // close default cf
744
  if (((rocksdb_column_family_handle_t**)cfHandle)[0] != 0) rocksdb_column_family_handle_destroy(cfHandle[0]);
Y
yihaoDeng 已提交
745 746
  rocksdb_options_destroy(cfOpts[0]);
  handle->db = db;
dengyihao's avatar
dengyihao 已提交
747

Y
yihaoDeng 已提交
748 749 750 751 752 753 754 755 756
  static int32_t cfLen = sizeof(ginitDict) / sizeof(ginitDict[0]);
  for (int i = 0; i < nCf; i++) {
    char* cf = cfs[i];
    if (i == 0) continue;
    char funcname[64] = {0};
    if (3 == sscanf(cf, "0x%" PRIx64 "-%d_%s", &streamId, &taskId, funcname)) {
      char idstr[128] = {0};
      sprintf(idstr, "0x%" PRIx64 "-%d", streamId, taskId);

dengyihao's avatar
dengyihao 已提交
757
      int idx = streamStateGetCfIdx(NULL, funcname);
Y
yihaoDeng 已提交
758 759

      RocksdbCfInst*  inst = NULL;
Y
yihaoDeng 已提交
760
      RocksdbCfInst** pInst = taosHashGet(handle->cfInst, idstr, strlen(idstr) + 1);
Y
yihaoDeng 已提交
761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781
      if (pInst == NULL || *pInst == NULL) {
        inst = taosMemoryCalloc(1, sizeof(RocksdbCfInst));
        inst->pHandle = taosMemoryCalloc(cfLen, sizeof(rocksdb_column_family_handle_t*));
        inst->cfOpt = taosMemoryCalloc(cfLen, sizeof(rocksdb_options_t*));
        inst->wOpt = rocksdb_writeoptions_create();
        inst->rOpt = rocksdb_readoptions_create();
        inst->param = taosMemoryCalloc(cfLen, sizeof(RocksdbCfParam));
        inst->pBackend = handle;
        inst->db = db;
        inst->pCompares = taosMemoryCalloc(cfLen, sizeof(rocksdb_comparator_t*));

        inst->dbOpt = handle->dbOpt;
        rocksdb_writeoptions_disable_WAL(inst->wOpt, 1);
        taosHashPut(handle->cfInst, idstr, strlen(idstr) + 1, &inst, sizeof(void*));
      } else {
        inst = *pInst;
      }
      inst->cfOpt[idx] = cfOpts[i];
      inst->pCompares[idx] = pCompare[i];
      memcpy(&(inst->param[idx]), &(params[i]), sizeof(RocksdbCfParam));
      inst->pHandle[idx] = cfHandle[i];
dengyihao's avatar
dengyihao 已提交
782
    }
Y
yihaoDeng 已提交
783 784
  }
  void** pIter = taosHashIterate(handle->cfInst, NULL);
Y
yihaoDeng 已提交
785
  while (pIter) {
Y
yihaoDeng 已提交
786
    RocksdbCfInst* inst = *pIter;
787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810

    for (int i = 0; i < cfLen; i++) {
      if (inst->cfOpt[i] == NULL) {
        rocksdb_options_t*                   opt = rocksdb_options_create_copy(handle->dbOpt);
        rocksdb_block_based_table_options_t* tableOpt = rocksdb_block_based_options_create();
        rocksdb_block_based_options_set_block_cache(tableOpt, handle->cache);

        rocksdb_filterpolicy_t* filter = rocksdb_filterpolicy_create_bloom(15);
        rocksdb_block_based_options_set_filter_policy(tableOpt, filter);

        rocksdb_options_set_block_based_table_factory((rocksdb_options_t*)opt, tableOpt);

        SCfInit* cfPara = &ginitDict[i];

        rocksdb_comparator_t* compare =
            rocksdb_comparator_create(NULL, cfPara->detroyFunc, cfPara->cmpFunc, cfPara->cmpName);
        rocksdb_options_set_comparator((rocksdb_options_t*)opt, compare);

        inst->pCompares[i] = compare;
        inst->cfOpt[i] = opt;
        inst->param[i].tableOpt = tableOpt;
      }
    }
    SCfComparator compare = {.comp = inst->pCompares, .numOfComp = cfLen};
dengyihao's avatar
dengyihao 已提交
811
    inst->pCompareNode = streamBackendAddCompare(handle, &compare);
812
    pIter = taosHashIterate(handle->cfInst, pIter);
dengyihao's avatar
dengyihao 已提交
813
  }
dengyihao's avatar
dengyihao 已提交
814

dengyihao's avatar
dengyihao 已提交
815 816 817 818 819
  taosMemoryFree(cfHandle);
  taosMemoryFree(pCompare);
  taosMemoryFree(params);
  taosMemoryFree(cfOpts);
  return 0;
dengyihao's avatar
dengyihao 已提交
820
}
dengyihao's avatar
dengyihao 已提交
821
int streamStateOpenBackend(void* backend, SStreamState* pState) {
dengyihao's avatar
dengyihao 已提交
822 823
  qInfo("start to open state %p on backend %p 0x%" PRIx64 "-%d", pState, backend, pState->streamId, pState->taskId);
  taosAcquireRef(streamBackendId, pState->streamBackendRid);
dengyihao's avatar
dengyihao 已提交
824
  SBackendHandle* handle = backend;
dengyihao's avatar
dengyihao 已提交
825

dengyihao's avatar
dengyihao 已提交
826
  sprintf(pState->pTdbState->idstr, "0x%" PRIx64 "-%d", pState->streamId, pState->taskId);
dengyihao's avatar
dengyihao 已提交
827
  taosThreadMutexLock(&handle->cfMutex);
dengyihao's avatar
dengyihao 已提交
828
  RocksdbCfInst** ppInst = taosHashGet(handle->cfInst, pState->pTdbState->idstr, strlen(pState->pTdbState->idstr) + 1);
dengyihao's avatar
dengyihao 已提交
829 830 831
  if (ppInst != NULL && *ppInst != NULL) {
    RocksdbCfInst* inst = *ppInst;
    pState->pTdbState->rocksdb = inst->db;
832
    pState->pTdbState->pHandle = (void**)inst->pHandle;
dengyihao's avatar
dengyihao 已提交
833 834
    pState->pTdbState->writeOpts = inst->wOpt;
    pState->pTdbState->readOpts = inst->rOpt;
835
    pState->pTdbState->cfOpts = (void**)(inst->cfOpt);
dengyihao's avatar
dengyihao 已提交
836 837
    pState->pTdbState->dbOpt = handle->dbOpt;
    pState->pTdbState->param = inst->param;
Y
yihaoDeng 已提交
838
    pState->pTdbState->pBackend = handle;
dengyihao's avatar
dengyihao 已提交
839 840 841 842 843 844
    pState->pTdbState->pComparNode = inst->pCompareNode;
    taosThreadMutexUnlock(&handle->cfMutex);
    return 0;
  }
  taosThreadMutexUnlock(&handle->cfMutex);

dengyihao's avatar
dengyihao 已提交
845
  char* err = NULL;
dengyihao's avatar
dengyihao 已提交
846
  int   cfLen = sizeof(ginitDict) / sizeof(ginitDict[0]);
dengyihao's avatar
dengyihao 已提交
847

dengyihao's avatar
dengyihao 已提交
848
  RocksdbCfParam*           param = taosMemoryCalloc(cfLen, sizeof(RocksdbCfParam));
dengyihao's avatar
dengyihao 已提交
849 850
  const rocksdb_options_t** cfOpt = taosMemoryCalloc(cfLen, sizeof(rocksdb_options_t*));
  for (int i = 0; i < cfLen; i++) {
851
    cfOpt[i] = rocksdb_options_create_copy(handle->dbOpt);
dengyihao's avatar
dengyihao 已提交
852
    // refactor later
dengyihao's avatar
dengyihao 已提交
853
    rocksdb_block_based_table_options_t* tableOpt = rocksdb_block_based_options_create();
dengyihao's avatar
dengyihao 已提交
854
    rocksdb_block_based_options_set_block_cache(tableOpt, handle->cache);
dengyihao's avatar
dengyihao 已提交
855

dengyihao's avatar
dengyihao 已提交
856
    rocksdb_filterpolicy_t* filter = rocksdb_filterpolicy_create_bloom(15);
dengyihao's avatar
dengyihao 已提交
857
    rocksdb_block_based_options_set_filter_policy(tableOpt, filter);
dengyihao's avatar
dengyihao 已提交
858 859

    rocksdb_options_set_block_based_table_factory((rocksdb_options_t*)cfOpt[i], tableOpt);
dengyihao's avatar
dengyihao 已提交
860

dengyihao's avatar
dengyihao 已提交
861
    param[i].tableOpt = tableOpt;
dengyihao's avatar
dengyihao 已提交
862
  };
dengyihao's avatar
dengyihao 已提交
863

dengyihao's avatar
dengyihao 已提交
864
  rocksdb_comparator_t** pCompare = taosMemoryCalloc(cfLen, sizeof(rocksdb_comparator_t**));
dengyihao's avatar
dengyihao 已提交
865
  for (int i = 0; i < cfLen; i++) {
dengyihao's avatar
dengyihao 已提交
866 867
    SCfInit* cf = &ginitDict[i];

dengyihao's avatar
dengyihao 已提交
868 869 870 871
    rocksdb_comparator_t* compare = rocksdb_comparator_create(NULL, cf->detroyFunc, cf->cmpFunc, cf->cmpName);
    rocksdb_options_set_comparator((rocksdb_options_t*)cfOpt[i], compare);
    pCompare[i] = compare;
  }
Y
yihaoDeng 已提交
872
  rocksdb_column_family_handle_t** cfHandle = taosMemoryCalloc(cfLen, sizeof(rocksdb_column_family_handle_t*));
dengyihao's avatar
dengyihao 已提交
873
  pState->pTdbState->rocksdb = handle->db;
874
  pState->pTdbState->pHandle = (void**)cfHandle;
dengyihao's avatar
dengyihao 已提交
875 876
  pState->pTdbState->writeOpts = rocksdb_writeoptions_create();
  pState->pTdbState->readOpts = rocksdb_readoptions_create();
877
  pState->pTdbState->cfOpts = (void**)cfOpt;
dengyihao's avatar
dengyihao 已提交
878
  pState->pTdbState->dbOpt = handle->dbOpt;
dengyihao's avatar
dengyihao 已提交
879
  pState->pTdbState->param = param;
Y
yihaoDeng 已提交
880
  pState->pTdbState->pBackend = handle;
dengyihao's avatar
dengyihao 已提交
881

Y
yihaoDeng 已提交
882
  taosThreadRwlockInit(&pState->pTdbState->rwLock, NULL);
dengyihao's avatar
dengyihao 已提交
883 884
  SCfComparator compare = {.comp = pCompare, .numOfComp = cfLen};
  pState->pTdbState->pComparNode = streamBackendAddCompare(handle, &compare);
dengyihao's avatar
dengyihao 已提交
885
  rocksdb_writeoptions_disable_WAL(pState->pTdbState->writeOpts, 1);
dengyihao's avatar
dengyihao 已提交
886
  qInfo("succ to open state %p on backend, %p, 0x%" PRIx64 "-%d", pState, handle, pState->streamId, pState->taskId);
dengyihao's avatar
dengyihao 已提交
887 888
  return 0;
}
889

dengyihao's avatar
dengyihao 已提交
890
void streamStateCloseBackend(SStreamState* pState, bool remove) {
Y
yihaoDeng 已提交
891
  SBackendHandle* pHandle = pState->pTdbState->pBackend;
dengyihao's avatar
dengyihao 已提交
892
  taosThreadMutexLock(&pHandle->cfMutex);
dengyihao's avatar
dengyihao 已提交
893
  RocksdbCfInst** ppInst = taosHashGet(pHandle->cfInst, pState->pTdbState->idstr, strlen(pState->pTdbState->idstr) + 1);
dengyihao's avatar
dengyihao 已提交
894 895 896
  if (ppInst != NULL && *ppInst != NULL) {
    RocksdbCfInst* inst = *ppInst;
    taosMemoryFree(inst);
dengyihao's avatar
dengyihao 已提交
897
    taosHashRemove(pHandle->cfInst, pState->pTdbState->idstr, strlen(pState->pTdbState->idstr) + 1);
dengyihao's avatar
dengyihao 已提交
898 899
  }
  taosThreadMutexUnlock(&pHandle->cfMutex);
dengyihao's avatar
dengyihao 已提交
900

dengyihao's avatar
dengyihao 已提交
901
  char* status[] = {"close", "drop"};
dengyihao's avatar
dengyihao 已提交
902
  qInfo("start to close %s state %p on backend %p 0x%" PRIx64 "-%d", status[remove == false ? 0 : 1], pState, pHandle,
dengyihao's avatar
dengyihao 已提交
903
        pState->streamId, pState->taskId);
dengyihao's avatar
dengyihao 已提交
904 905 906
  if (pState->pTdbState->rocksdb == NULL) {
    return;
  }
dengyihao's avatar
dengyihao 已提交
907

dengyihao's avatar
dengyihao 已提交
908
  int cfLen = sizeof(ginitDict) / sizeof(ginitDict[0]);
dengyihao's avatar
dengyihao 已提交
909

dengyihao's avatar
dengyihao 已提交
910 911 912
  char* err = NULL;
  if (remove) {
    for (int i = 0; i < cfLen; i++) {
Y
yihaoDeng 已提交
913
      if (pState->pTdbState->pHandle[i] != NULL)
Y
yihaoDeng 已提交
914 915
        rocksdb_drop_column_family(pState->pTdbState->rocksdb,
                                   ((rocksdb_column_family_handle_t**)pState->pTdbState->pHandle)[i], &err);
dengyihao's avatar
dengyihao 已提交
916 917 918 919 920 921 922 923
      if (err != NULL) {
        qError("failed to create cf:%s_%s, reason:%s", pState->pTdbState->idstr, ginitDict[i].key, err);
        taosMemoryFreeClear(err);
      }
    }
  } else {
    rocksdb_flushoptions_t* flushOpt = rocksdb_flushoptions_create();
    for (int i = 0; i < cfLen; i++) {
Y
yihaoDeng 已提交
924 925
      if (pState->pTdbState->pHandle[i] != NULL)
        rocksdb_flush_cf(pState->pTdbState->rocksdb, flushOpt, pState->pTdbState->pHandle[i], &err);
dengyihao's avatar
dengyihao 已提交
926 927 928 929
      if (err != NULL) {
        qError("failed to create cf:%s_%s, reason:%s", pState->pTdbState->idstr, ginitDict[i].key, err);
        taosMemoryFreeClear(err);
      }
dengyihao's avatar
dengyihao 已提交
930
    }
dengyihao's avatar
dengyihao 已提交
931
    rocksdb_flushoptions_destroy(flushOpt);
dengyihao's avatar
dengyihao 已提交
932 933
  }

dengyihao's avatar
dengyihao 已提交
934
  for (int i = 0; i < cfLen; i++) {
Y
yihaoDeng 已提交
935 936 937
    if (pState->pTdbState->pHandle[i] != NULL) {
      rocksdb_column_family_handle_destroy(pState->pTdbState->pHandle[i]);
    }
dengyihao's avatar
dengyihao 已提交
938
  }
dengyihao's avatar
dengyihao 已提交
939
  taosMemoryFreeClear(pState->pTdbState->pHandle);
dengyihao's avatar
dengyihao 已提交
940 941
  for (int i = 0; i < cfLen; i++) {
    rocksdb_options_destroy(pState->pTdbState->cfOpts[i]);
dengyihao's avatar
dengyihao 已提交
942
    rocksdb_block_based_options_destroy(((RocksdbCfParam*)pState->pTdbState->param)[i].tableOpt);
dengyihao's avatar
dengyihao 已提交
943
  }
dengyihao's avatar
dengyihao 已提交
944

dengyihao's avatar
dengyihao 已提交
945
  if (remove) {
Y
yihaoDeng 已提交
946
    streamBackendDelCompare(pState->pTdbState->pBackend, pState->pTdbState->pComparNode);
dengyihao's avatar
dengyihao 已提交
947
  }
dengyihao's avatar
dengyihao 已提交
948 949 950 951 952
  rocksdb_writeoptions_destroy(pState->pTdbState->writeOpts);
  pState->pTdbState->writeOpts = NULL;

  rocksdb_readoptions_destroy(pState->pTdbState->readOpts);
  pState->pTdbState->readOpts = NULL;
dengyihao's avatar
dengyihao 已提交
953
  taosMemoryFreeClear(pState->pTdbState->cfOpts);
dengyihao's avatar
dengyihao 已提交
954
  taosMemoryFreeClear(pState->pTdbState->param);
Y
yihaoDeng 已提交
955 956

  taosThreadRwlockDestroy(&pState->pTdbState->rwLock);
dengyihao's avatar
dengyihao 已提交
957
  pState->pTdbState->rocksdb = NULL;
dengyihao's avatar
dengyihao 已提交
958
  taosReleaseRef(streamBackendId, pState->streamBackendRid);
dengyihao's avatar
dengyihao 已提交
959
}
dengyihao's avatar
dengyihao 已提交
960 961 962
void streamStateDestroyCompar(void* arg) {
  SCfComparator* comp = (SCfComparator*)arg;
  for (int i = 0; i < comp->numOfComp; i++) {
963
    if (comp->comp[i]) rocksdb_comparator_destroy(comp->comp[i]);
dengyihao's avatar
dengyihao 已提交
964 965 966
  }
  taosMemoryFree(comp->comp);
}
967

dengyihao's avatar
dengyihao 已提交
968
int streamStateGetCfIdx(SStreamState* pState, const char* funcName) {
Y
yihaoDeng 已提交
969
  int    idx = -1;
dengyihao's avatar
dengyihao 已提交
970
  size_t len = strlen(funcName);
dengyihao's avatar
dengyihao 已提交
971
  for (int i = 0; i < sizeof(ginitDict) / sizeof(ginitDict[0]); i++) {
dengyihao's avatar
dengyihao 已提交
972
    if (len == ginitDict[i].len && strncmp(funcName, ginitDict[i].key, strlen(funcName)) == 0) {
Y
yihaoDeng 已提交
973 974
      idx = i;
      break;
dengyihao's avatar
dengyihao 已提交
975 976
    }
  }
977
  if (pState != NULL && idx != -1) {
Y
yihaoDeng 已提交
978 979 980 981 982 983 984 985
    rocksdb_column_family_handle_t* cf = NULL;
    taosThreadRwlockRdlock(&pState->pTdbState->rwLock);
    cf = pState->pTdbState->pHandle[idx];
    taosThreadRwlockUnlock(&pState->pTdbState->rwLock);
    if (cf == NULL) {
      char buf[128] = {0};
      GEN_COLUMN_FAMILY_NAME(buf, pState->pTdbState->idstr, ginitDict[idx].key);
      char* err = NULL;
986 987

      taosThreadRwlockWrlock(&pState->pTdbState->rwLock);
Y
yihaoDeng 已提交
988 989 990 991 992 993
      cf = rocksdb_create_column_family(pState->pTdbState->rocksdb, pState->pTdbState->cfOpts[idx], buf, &err);
      if (err != NULL) {
        idx = -1;
        qError("failed to to open cf, %p 0x%" PRIx64 "-%d_%s, reason:%s", pState, pState->streamId, pState->taskId,
               funcName, err);
        taosMemoryFree(err);
Y
yihaoDeng 已提交
994 995
      } else {
        pState->pTdbState->pHandle[idx] = cf;
Y
yihaoDeng 已提交
996 997 998 999 1000 1001
      }
      taosThreadRwlockUnlock(&pState->pTdbState->rwLock);
    }
  }

  return idx;
dengyihao's avatar
dengyihao 已提交
1002
}
dengyihao's avatar
dengyihao 已提交
1003
bool streamStateIterSeekAndValid(rocksdb_iterator_t* iter, char* buf, size_t len) {
dengyihao's avatar
dengyihao 已提交
1004
  rocksdb_iter_seek(iter, buf, len);
dengyihao's avatar
dengyihao 已提交
1005
  if (!rocksdb_iter_valid(iter)) {
dengyihao's avatar
dengyihao 已提交
1006 1007 1008 1009
    rocksdb_iter_seek_for_prev(iter, buf, len);
    if (!rocksdb_iter_valid(iter)) {
      return false;
    }
dengyihao's avatar
dengyihao 已提交
1010
  }
dengyihao's avatar
dengyihao 已提交
1011
  return true;
dengyihao's avatar
dengyihao 已提交
1012
}
dengyihao's avatar
dengyihao 已提交
1013 1014
rocksdb_iterator_t* streamStateIterCreate(SStreamState* pState, const char* cfName, rocksdb_snapshot_t** snapshot,
                                          rocksdb_readoptions_t** readOpt) {
dengyihao's avatar
dengyihao 已提交
1015
  int idx = streamStateGetCfIdx(pState, cfName);
dengyihao's avatar
dengyihao 已提交
1016

dengyihao's avatar
dengyihao 已提交
1017
  if (snapshot != NULL) {
dengyihao's avatar
dengyihao 已提交
1018
    *snapshot = (rocksdb_snapshot_t*)rocksdb_create_snapshot(pState->pTdbState->rocksdb);
dengyihao's avatar
dengyihao 已提交
1019
  }
dengyihao's avatar
dengyihao 已提交
1020 1021
  rocksdb_readoptions_t* rOpt = rocksdb_readoptions_create();
  *readOpt = rOpt;
dengyihao's avatar
dengyihao 已提交
1022

dengyihao's avatar
dengyihao 已提交
1023
  rocksdb_readoptions_set_snapshot(rOpt, *snapshot);
dengyihao's avatar
dengyihao 已提交
1024 1025
  rocksdb_readoptions_set_fill_cache(rOpt, 0);

Y
yihaoDeng 已提交
1026 1027
  return rocksdb_create_iterator_cf(pState->pTdbState->rocksdb, rOpt,
                                    ((rocksdb_column_family_handle_t**)pState->pTdbState->pHandle)[idx]);
dengyihao's avatar
dengyihao 已提交
1028 1029
}

Y
yihaoDeng 已提交
1030 1031 1032 1033 1034
#define STREAM_STATE_PUT_ROCKSDB(pState, funcname, key, value, vLen)                                                   \
  do {                                                                                                                 \
    code = 0;                                                                                                          \
    char  buf[128] = {0};                                                                                              \
    char* err = NULL;                                                                                                  \
dengyihao's avatar
dengyihao 已提交
1035
    int   i = streamStateGetCfIdx(pState, funcname);                                                                   \
Y
yihaoDeng 已提交
1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058
    if (i < 0) {                                                                                                       \
      qWarn("streamState failed to get cf name: %s", funcname);                                                        \
      code = -1;                                                                                                       \
      break;                                                                                                           \
    }                                                                                                                  \
    char toString[128] = {0};                                                                                          \
    if (qDebugFlag & DEBUG_TRACE) ginitDict[i].toStrFunc((void*)key, toString);                                        \
    int32_t                         klen = ginitDict[i].enFunc((void*)key, buf);                                       \
    rocksdb_column_family_handle_t* pHandle =                                                                          \
        ((rocksdb_column_family_handle_t**)pState->pTdbState->pHandle)[ginitDict[i].idx];                              \
    rocksdb_t*              db = pState->pTdbState->rocksdb;                                                           \
    rocksdb_writeoptions_t* opts = pState->pTdbState->writeOpts;                                                       \
    char*                   ttlV = NULL;                                                                               \
    int32_t                 ttlVLen = ginitDict[i].enValueFunc((char*)value, vLen, 0, &ttlV);                          \
    rocksdb_put_cf(db, opts, pHandle, (const char*)buf, klen, (const char*)ttlV, (size_t)ttlVLen, &err);               \
    if (err != NULL) {                                                                                                 \
      taosMemoryFree(err);                                                                                             \
      qError("streamState str: %s failed to write to %s, err: %s", toString, funcname, err);                           \
      code = -1;                                                                                                       \
    } else {                                                                                                           \
      qTrace("streamState str:%s succ to write to %s, rowValLen:%d, ttlValLen:%d", toString, funcname, vLen, ttlVLen); \
    }                                                                                                                  \
    taosMemoryFree(ttlV);                                                                                              \
dengyihao's avatar
dengyihao 已提交
1059 1060
  } while (0);

dengyihao's avatar
dengyihao 已提交
1061 1062 1063 1064 1065
#define STREAM_STATE_GET_ROCKSDB(pState, funcname, key, pVal, vLen)                                                    \
  do {                                                                                                                 \
    code = 0;                                                                                                          \
    char  buf[128] = {0};                                                                                              \
    char* err = NULL;                                                                                                  \
dengyihao's avatar
dengyihao 已提交
1066
    int   i = streamStateGetCfIdx(pState, funcname);                                                                   \
dengyihao's avatar
dengyihao 已提交
1067 1068 1069 1070 1071 1072 1073 1074
    if (i < 0) {                                                                                                       \
      qWarn("streamState failed to get cf name: %s", funcname);                                                        \
      code = -1;                                                                                                       \
      break;                                                                                                           \
    }                                                                                                                  \
    char toString[128] = {0};                                                                                          \
    if (qDebugFlag & DEBUG_TRACE) ginitDict[i].toStrFunc((void*)key, toString);                                        \
    int32_t                         klen = ginitDict[i].enFunc((void*)key, buf);                                       \
Y
yihaoDeng 已提交
1075 1076 1077 1078 1079 1080
    rocksdb_column_family_handle_t* pHandle =                                                                          \
        ((rocksdb_column_family_handle_t**)pState->pTdbState->pHandle)[ginitDict[i].idx];                              \
    rocksdb_t*             db = pState->pTdbState->rocksdb;                                                            \
    rocksdb_readoptions_t* opts = pState->pTdbState->readOpts;                                                         \
    size_t                 len = 0;                                                                                    \
    char*                  val = rocksdb_get_cf(db, opts, pHandle, (const char*)buf, klen, (size_t*)&len, &err);       \
dengyihao's avatar
dengyihao 已提交
1081
    if (val == NULL || len == 0) {                                                                                     \
dengyihao's avatar
dengyihao 已提交
1082
      if (err == NULL) {                                                                                               \
dengyihao's avatar
dengyihao 已提交
1083
        qTrace("streamState str: %s failed to read from %s_%s, err: not exist", toString, pState->pTdbState->idstr,    \
dengyihao's avatar
dengyihao 已提交
1084 1085
               funcname);                                                                                              \
      } else {                                                                                                         \
dengyihao's avatar
dengyihao 已提交
1086
        qError("streamState str: %s failed to read from %s_%s, err: %s", toString, pState->pTdbState->idstr, funcname, \
dengyihao's avatar
dengyihao 已提交
1087 1088 1089 1090 1091 1092
               err);                                                                                                   \
        taosMemoryFreeClear(err);                                                                                      \
      }                                                                                                                \
      code = -1;                                                                                                       \
    } else {                                                                                                           \
      char*   p = NULL;                                                                                                \
Y
yihaoDeng 已提交
1093 1094
      int32_t tlen = ginitDict[i].deValueFunc(val, len, NULL, (char**)pVal);                                           \
      if (tlen <= 0) {                                                                                                 \
dengyihao's avatar
dengyihao 已提交
1095
        qError("streamState str: %s failed to read from %s_%s, err: already ttl ", toString, pState->pTdbState->idstr, \
dengyihao's avatar
dengyihao 已提交
1096 1097 1098
               funcname);                                                                                              \
        code = -1;                                                                                                     \
      } else {                                                                                                         \
dengyihao's avatar
dengyihao 已提交
1099
        qTrace("streamState str: %s succ to read from %s_%s, valLen:%d", toString, pState->pTdbState->idstr, funcname, \
Y
yihaoDeng 已提交
1100
               tlen);                                                                                                  \
dengyihao's avatar
dengyihao 已提交
1101 1102
      }                                                                                                                \
      taosMemoryFree(val);                                                                                             \
Y
yihaoDeng 已提交
1103
      if (vLen != NULL) *vLen = tlen;                                                                                  \
dengyihao's avatar
dengyihao 已提交
1104 1105 1106
    }                                                                                                                  \
    if (code == 0)                                                                                                     \
      qDebug("streamState str: %s succ to read from %s_%s", toString, pState->pTdbState->idstr, funcname);             \
dengyihao's avatar
dengyihao 已提交
1107 1108
  } while (0);

dengyihao's avatar
dengyihao 已提交
1109 1110 1111 1112 1113
#define STREAM_STATE_DEL_ROCKSDB(pState, funcname, key)                                                             \
  do {                                                                                                              \
    code = 0;                                                                                                       \
    char  buf[128] = {0};                                                                                           \
    char* err = NULL;                                                                                               \
dengyihao's avatar
dengyihao 已提交
1114
    int   i = streamStateGetCfIdx(pState, funcname);                                                                \
dengyihao's avatar
dengyihao 已提交
1115 1116 1117 1118 1119 1120 1121 1122
    if (i < 0) {                                                                                                    \
      qWarn("streamState failed to get cf name: %s_%s", pState->pTdbState->idstr, funcname);                        \
      code = -1;                                                                                                    \
      break;                                                                                                        \
    }                                                                                                               \
    char toString[128] = {0};                                                                                       \
    if (qDebugFlag & DEBUG_TRACE) ginitDict[i].toStrFunc((void*)key, toString);                                     \
    int32_t                         klen = ginitDict[i].enFunc((void*)key, buf);                                    \
Y
yihaoDeng 已提交
1123 1124 1125 1126
    rocksdb_column_family_handle_t* pHandle =                                                                       \
        ((rocksdb_column_family_handle_t**)pState->pTdbState->pHandle)[ginitDict[i].idx];                           \
    rocksdb_t*              db = pState->pTdbState->rocksdb;                                                        \
    rocksdb_writeoptions_t* opts = pState->pTdbState->writeOpts;                                                    \
dengyihao's avatar
dengyihao 已提交
1127 1128 1129 1130 1131 1132 1133
    rocksdb_delete_cf(db, opts, pHandle, (const char*)buf, klen, &err);                                             \
    if (err != NULL) {                                                                                              \
      qError("streamState str: %s failed to del from %s_%s, err: %s", toString, pState->pTdbState->idstr, funcname, \
             err);                                                                                                  \
      taosMemoryFree(err);                                                                                          \
      code = -1;                                                                                                    \
    } else {                                                                                                        \
dengyihao's avatar
dengyihao 已提交
1134
      qTrace("streamState str: %s succ to del from %s_%s", toString, pState->pTdbState->idstr, funcname);           \
dengyihao's avatar
dengyihao 已提交
1135
    }                                                                                                               \
dengyihao's avatar
dengyihao 已提交
1136 1137
  } while (0);

dengyihao's avatar
dengyihao 已提交
1138
// state cf
dengyihao's avatar
dengyihao 已提交
1139 1140 1141 1142
int32_t streamStatePut_rocksdb(SStreamState* pState, const SWinKey* key, const void* value, int32_t vLen) {
  int code = 0;

  SStateKey sKey = {.key = *key, .opNum = pState->number};
dengyihao's avatar
dengyihao 已提交
1143
  STREAM_STATE_PUT_ROCKSDB(pState, "state", &sKey, (void*)value, vLen);
dengyihao's avatar
dengyihao 已提交
1144 1145 1146 1147 1148
  return code;
}
int32_t streamStateGet_rocksdb(SStreamState* pState, const SWinKey* key, void** pVal, int32_t* pVLen) {
  int       code = 0;
  SStateKey sKey = {.key = *key, .opNum = pState->number};
dengyihao's avatar
dengyihao 已提交
1149
  STREAM_STATE_GET_ROCKSDB(pState, "state", &sKey, pVal, pVLen);
dengyihao's avatar
dengyihao 已提交
1150 1151 1152 1153 1154
  return code;
}
int32_t streamStateDel_rocksdb(SStreamState* pState, const SWinKey* key) {
  int       code = 0;
  SStateKey sKey = {.key = *key, .opNum = pState->number};
dengyihao's avatar
dengyihao 已提交
1155
  STREAM_STATE_DEL_ROCKSDB(pState, "state", &sKey);
dengyihao's avatar
dengyihao 已提交
1156 1157
  return code;
}
dengyihao's avatar
dengyihao 已提交
1158
int32_t streamStateClear_rocksdb(SStreamState* pState) {
dengyihao's avatar
dengyihao 已提交
1159
  qDebug("streamStateClear_rocksdb");
dengyihao's avatar
dengyihao 已提交
1160

dengyihao's avatar
dengyihao 已提交
1161 1162
  char      sKeyStr[128] = {0};
  char      eKeyStr[128] = {0};
dengyihao's avatar
dengyihao 已提交
1163 1164
  SStateKey sKey = {.key = {.ts = 0, .groupId = 0}, .opNum = pState->number};
  SStateKey eKey = {.key = {.ts = INT64_MAX, .groupId = UINT64_MAX}, .opNum = pState->number};
dengyihao's avatar
dengyihao 已提交
1165

dengyihao's avatar
dengyihao 已提交
1166 1167
  int sLen = stateKeyEncode(&sKey, sKeyStr);
  int eLen = stateKeyEncode(&eKey, eKeyStr);
dengyihao's avatar
dengyihao 已提交
1168

1169
  if (pState->pTdbState->pHandle[1] != NULL) {
dengyihao's avatar
dengyihao 已提交
1170
    char* err = NULL;
1171 1172
    rocksdb_delete_range_cf(pState->pTdbState->rocksdb, pState->pTdbState->writeOpts, pState->pTdbState->pHandle[1],
                            sKeyStr, sLen, eKeyStr, eLen, &err);
dengyihao's avatar
dengyihao 已提交
1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183
    if (err != NULL) {
      char toStringStart[128] = {0};
      char toStringEnd[128] = {0};
      stateKeyToString(&sKey, toStringStart);
      stateKeyToString(&eKey, toStringEnd);

      qWarn("failed to delete range cf(state) start: %s, end:%s, reason:%s", toStringStart, toStringEnd, err);
      taosMemoryFree(err);
    } else {
      rocksdb_compact_range_cf(pState->pTdbState->rocksdb, pState->pTdbState->pHandle[1], sKeyStr, sLen, eKeyStr, eLen);
    }
dengyihao's avatar
dengyihao 已提交
1184 1185
  }

dengyihao's avatar
dengyihao 已提交
1186
  return 0;
dengyihao's avatar
dengyihao 已提交
1187
}
dengyihao's avatar
dengyihao 已提交
1188 1189
int32_t streamStateCurNext_rocksdb(SStreamState* pState, SStreamStateCur* pCur) {
  if (!pCur) {
dengyihao's avatar
dengyihao 已提交
1190 1191
    return -1;
  }
dengyihao's avatar
dengyihao 已提交
1192
  rocksdb_iter_next(pCur->iter);
dengyihao's avatar
dengyihao 已提交
1193 1194
  return 0;
}
dengyihao's avatar
dengyihao 已提交
1195 1196 1197 1198 1199 1200 1201 1202
int32_t streamStateGetFirst_rocksdb(SStreamState* pState, SWinKey* key) {
  qDebug("streamStateGetFirst_rocksdb");
  SWinKey tmp = {.ts = 0, .groupId = 0};
  streamStatePut_rocksdb(pState, &tmp, NULL, 0);
  SStreamStateCur* pCur = streamStateSeekKeyNext_rocksdb(pState, &tmp);
  int32_t          code = streamStateGetKVByCur_rocksdb(pCur, key, NULL, 0);
  streamStateFreeCur(pCur);
  streamStateDel_rocksdb(pState, &tmp);
dengyihao's avatar
dengyihao 已提交
1203 1204 1205
  return code;
}

dengyihao's avatar
dengyihao 已提交
1206 1207 1208 1209
int32_t streamStateGetGroupKVByCur_rocksdb(SStreamStateCur* pCur, SWinKey* pKey, const void** pVal, int32_t* pVLen) {
  qDebug("streamStateGetGroupKVByCur_rocksdb");
  if (!pCur) {
    return -1;
dengyihao's avatar
dengyihao 已提交
1210
  }
dengyihao's avatar
dengyihao 已提交
1211
  uint64_t groupId = pKey->groupId;
dengyihao's avatar
dengyihao 已提交
1212

dengyihao's avatar
dengyihao 已提交
1213 1214 1215 1216 1217
  int32_t code = streamStateFillGetKVByCur_rocksdb(pCur, pKey, pVal, pVLen);
  if (code == 0) {
    if (pKey->groupId == groupId) {
      return 0;
    }
dengyihao's avatar
dengyihao 已提交
1218
  }
dengyihao's avatar
dengyihao 已提交
1219
  return -1;
dengyihao's avatar
dengyihao 已提交
1220
}
dengyihao's avatar
dengyihao 已提交
1221 1222 1223 1224 1225
int32_t streamStateAddIfNotExist_rocksdb(SStreamState* pState, const SWinKey* key, void** pVal, int32_t* pVLen) {
  qDebug("streamStateAddIfNotExist_rocksdb");
  int32_t size = *pVLen;
  if (streamStateGet_rocksdb(pState, key, pVal, pVLen) == 0) {
    return 0;
dengyihao's avatar
dengyihao 已提交
1226
  }
dengyihao's avatar
dengyihao 已提交
1227 1228 1229
  *pVal = taosMemoryMalloc(size);
  memset(*pVal, 0, size);
  return 0;
dengyihao's avatar
dengyihao 已提交
1230
}
dengyihao's avatar
dengyihao 已提交
1231 1232 1233
int32_t streamStateCurPrev_rocksdb(SStreamState* pState, SStreamStateCur* pCur) {
  qDebug("streamStateCurPrev_rocksdb");
  if (!pCur) return -1;
dengyihao's avatar
dengyihao 已提交
1234

dengyihao's avatar
dengyihao 已提交
1235 1236
  rocksdb_iter_prev(pCur->iter);
  return 0;
dengyihao's avatar
dengyihao 已提交
1237
}
dengyihao's avatar
dengyihao 已提交
1238 1239 1240 1241 1242
int32_t streamStateGetKVByCur_rocksdb(SStreamStateCur* pCur, SWinKey* pKey, const void** pVal, int32_t* pVLen) {
  qDebug("streamStateGetKVByCur_rocksdb");
  if (!pCur) return -1;
  SStateKey  tkey;
  SStateKey* pKtmp = &tkey;
dengyihao's avatar
dengyihao 已提交
1243

dengyihao's avatar
dengyihao 已提交
1244
  if (rocksdb_iter_valid(pCur->iter) && !iterValueIsStale(pCur->iter)) {
dengyihao's avatar
dengyihao 已提交
1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
    size_t tlen;
    char*  keyStr = (char*)rocksdb_iter_key(pCur->iter, &tlen);
    stateKeyDecode((void*)pKtmp, keyStr);
    if (pKtmp->opNum != pCur->number) {
      return -1;
    }
    size_t vlen = 0;
    if (pVal != NULL) *pVal = (char*)rocksdb_iter_value(pCur->iter, &vlen);
    if (pVLen != NULL) *pVLen = vlen;
    *pKey = pKtmp->key;
    return 0;
dengyihao's avatar
dengyihao 已提交
1256
  }
dengyihao's avatar
dengyihao 已提交
1257
  return -1;
dengyihao's avatar
dengyihao 已提交
1258
}
dengyihao's avatar
dengyihao 已提交
1259 1260 1261 1262 1263 1264
SStreamStateCur* streamStateGetAndCheckCur_rocksdb(SStreamState* pState, SWinKey* key) {
  qDebug("streamStateGetAndCheckCur_rocksdb");
  SStreamStateCur* pCur = streamStateFillGetCur_rocksdb(pState, key);
  if (pCur) {
    int32_t code = streamStateGetGroupKVByCur_rocksdb(pCur, key, NULL, 0);
    if (code == 0) return pCur;
dengyihao's avatar
dengyihao 已提交
1265 1266
    streamStateFreeCur(pCur);
  }
dengyihao's avatar
dengyihao 已提交
1267
  return NULL;
dengyihao's avatar
dengyihao 已提交
1268
}
dengyihao's avatar
dengyihao 已提交
1269

dengyihao's avatar
dengyihao 已提交
1270 1271
SStreamStateCur* streamStateSeekKeyNext_rocksdb(SStreamState* pState, const SWinKey* key) {
  qDebug("streamStateSeekKeyNext_rocksdb");
dengyihao's avatar
dengyihao 已提交
1272 1273 1274 1275 1276
  SStreamStateCur* pCur = taosMemoryCalloc(1, sizeof(SStreamStateCur));
  if (pCur == NULL) {
    return NULL;
  }
  pCur->number = pState->number;
dengyihao's avatar
dengyihao 已提交
1277
  pCur->db = pState->pTdbState->rocksdb;
1278 1279
  pCur->iter = streamStateIterCreate(pState, "state", (rocksdb_snapshot_t**)&pCur->snapshot,
                                     (rocksdb_readoptions_t**)&pCur->readOpt);
dengyihao's avatar
dengyihao 已提交
1280

dengyihao's avatar
dengyihao 已提交
1281 1282 1283
  SStateKey sKey = {.key = *key, .opNum = pState->number};
  char      buf[128] = {0};
  int       len = stateKeyEncode((void*)&sKey, buf);
dengyihao's avatar
dengyihao 已提交
1284
  if (!streamStateIterSeekAndValid(pCur->iter, buf, len)) {
dengyihao's avatar
dengyihao 已提交
1285 1286
    streamStateFreeCur(pCur);
    return NULL;
dengyihao's avatar
dengyihao 已提交
1287
  }
dengyihao's avatar
dengyihao 已提交
1288
  // skip ttl expired data
dengyihao's avatar
dengyihao 已提交
1289
  while (rocksdb_iter_valid(pCur->iter) && iterValueIsStale(pCur->iter)) {
dengyihao's avatar
dengyihao 已提交
1290
    rocksdb_iter_next(pCur->iter);
dengyihao's avatar
dengyihao 已提交
1291
  }
dengyihao's avatar
dengyihao 已提交
1292

dengyihao's avatar
dengyihao 已提交
1293 1294 1295 1296 1297 1298 1299
  if (rocksdb_iter_valid(pCur->iter)) {
    SStateKey curKey;
    size_t    kLen;
    char*     keyStr = (char*)rocksdb_iter_key(pCur->iter, &kLen);
    stateKeyDecode((void*)&curKey, keyStr);
    if (stateKeyCmpr(&sKey, sizeof(sKey), &curKey, sizeof(curKey)) > 0) {
      return pCur;
dengyihao's avatar
dengyihao 已提交
1300
    }
dengyihao's avatar
dengyihao 已提交
1301 1302
    rocksdb_iter_next(pCur->iter);
    return pCur;
dengyihao's avatar
dengyihao 已提交
1303
  }
dengyihao's avatar
dengyihao 已提交
1304 1305
  streamStateFreeCur(pCur);
  return NULL;
dengyihao's avatar
dengyihao 已提交
1306 1307
}

dengyihao's avatar
dengyihao 已提交
1308 1309
SStreamStateCur* streamStateSeekToLast_rocksdb(SStreamState* pState, const SWinKey* key) {
  qDebug("streamStateGetCur_rocksdb");
dengyihao's avatar
dengyihao 已提交
1310 1311 1312 1313 1314
  int32_t         code = 0;
  const SStateKey maxStateKey = {.key = {.groupId = UINT64_MAX, .ts = INT64_MAX}, .opNum = INT64_MAX};
  STREAM_STATE_PUT_ROCKSDB(pState, "state", &maxStateKey, "", 0);
  char    buf[128] = {0};
  int32_t klen = stateKeyEncode((void*)&maxStateKey, buf);
dengyihao's avatar
dengyihao 已提交
1315

dengyihao's avatar
dengyihao 已提交
1316
  SStreamStateCur* pCur = taosMemoryCalloc(1, sizeof(SStreamStateCur));
dengyihao's avatar
dengyihao 已提交
1317 1318
  if (pCur == NULL) return NULL;
  pCur->db = pState->pTdbState->rocksdb;
1319 1320
  pCur->iter = streamStateIterCreate(pState, "state", (rocksdb_snapshot_t**)&pCur->snapshot,
                                     (rocksdb_readoptions_t**)&pCur->readOpt);
dengyihao's avatar
dengyihao 已提交
1321
  rocksdb_iter_seek(pCur->iter, buf, (size_t)klen);
dengyihao's avatar
dengyihao 已提交
1322

dengyihao's avatar
dengyihao 已提交
1323
  rocksdb_iter_prev(pCur->iter);
dengyihao's avatar
dengyihao 已提交
1324
  while (rocksdb_iter_valid(pCur->iter) && iterValueIsStale(pCur->iter)) {
dengyihao's avatar
dengyihao 已提交
1325 1326
    rocksdb_iter_prev(pCur->iter);
  }
dengyihao's avatar
dengyihao 已提交
1327

dengyihao's avatar
dengyihao 已提交
1328 1329 1330 1331
  if (!rocksdb_iter_valid(pCur->iter)) {
    streamStateFreeCur(pCur);
    pCur = NULL;
  }
dengyihao's avatar
dengyihao 已提交
1332
  STREAM_STATE_DEL_ROCKSDB(pState, "state", &maxStateKey);
dengyihao's avatar
dengyihao 已提交
1333
  return pCur;
dengyihao's avatar
dengyihao 已提交
1334 1335
}

dengyihao's avatar
dengyihao 已提交
1336
SStreamStateCur* streamStateGetCur_rocksdb(SStreamState* pState, const SWinKey* key) {
dengyihao's avatar
dengyihao 已提交
1337
  qDebug("streamStateGetCur_rocksdb");
dengyihao's avatar
dengyihao 已提交
1338
  SStreamStateCur* pCur = taosMemoryCalloc(1, sizeof(SStreamStateCur));
dengyihao's avatar
dengyihao 已提交
1339

dengyihao's avatar
dengyihao 已提交
1340
  if (pCur == NULL) return NULL;
dengyihao's avatar
dengyihao 已提交
1341
  pCur->db = pState->pTdbState->rocksdb;
1342 1343
  pCur->iter = streamStateIterCreate(pState, "state", (rocksdb_snapshot_t**)&pCur->snapshot,
                                     (rocksdb_readoptions_t**)&pCur->readOpt);
dengyihao's avatar
dengyihao 已提交
1344

dengyihao's avatar
dengyihao 已提交
1345
  SStateKey sKey = {.key = *key, .opNum = pState->number};
dengyihao's avatar
dengyihao 已提交
1346
  char      buf[128] = {0};
dengyihao's avatar
dengyihao 已提交
1347
  int       len = stateKeyEncode((void*)&sKey, buf);
dengyihao's avatar
dengyihao 已提交
1348

dengyihao's avatar
dengyihao 已提交
1349
  rocksdb_iter_seek(pCur->iter, buf, len);
dengyihao's avatar
dengyihao 已提交
1350

dengyihao's avatar
dengyihao 已提交
1351
  if (rocksdb_iter_valid(pCur->iter) && !iterValueIsStale(pCur->iter)) {
dengyihao's avatar
dengyihao 已提交
1352 1353
    size_t vlen;
    char*  val = (char*)rocksdb_iter_value(pCur->iter, &vlen);
dengyihao's avatar
dengyihao 已提交
1354 1355 1356 1357 1358 1359 1360 1361 1362 1363
    if (!streamStateValueIsStale(val)) {
      SStateKey curKey;
      size_t    kLen = 0;
      char*     keyStr = (char*)rocksdb_iter_key(pCur->iter, &kLen);
      stateKeyDecode((void*)&curKey, keyStr);

      if (stateKeyCmpr(&sKey, sizeof(sKey), &curKey, sizeof(curKey)) == 0) {
        pCur->number = pState->number;
        return pCur;
      }
dengyihao's avatar
dengyihao 已提交
1364
    }
dengyihao's avatar
dengyihao 已提交
1365
  }
dengyihao's avatar
dengyihao 已提交
1366 1367 1368
  streamStateFreeCur(pCur);
  return NULL;
}
dengyihao's avatar
dengyihao 已提交
1369

dengyihao's avatar
dengyihao 已提交
1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383
// func cf
int32_t streamStateFuncPut_rocksdb(SStreamState* pState, const STupleKey* key, const void* value, int32_t vLen) {
  int code = 0;
  STREAM_STATE_PUT_ROCKSDB(pState, "func", key, (void*)value, vLen);
  return code;
}
int32_t streamStateFuncGet_rocksdb(SStreamState* pState, const STupleKey* key, void** pVal, int32_t* pVLen) {
  int code = 0;
  STREAM_STATE_GET_ROCKSDB(pState, "func", key, pVal, pVLen);
  return 0;
}
int32_t streamStateFuncDel_rocksdb(SStreamState* pState, const STupleKey* key) {
  int code = 0;
  STREAM_STATE_DEL_ROCKSDB(pState, "func", key);
dengyihao's avatar
dengyihao 已提交
1384 1385
  return 0;
}
dengyihao's avatar
dengyihao 已提交
1386

dengyihao's avatar
dengyihao 已提交
1387
// session cf
dengyihao's avatar
dengyihao 已提交
1388 1389 1390
int32_t streamStateSessionPut_rocksdb(SStreamState* pState, const SSessionKey* key, const void* value, int32_t vLen) {
  int              code = 0;
  SStateSessionKey sKey = {.key = *key, .opNum = pState->number};
dengyihao's avatar
dengyihao 已提交
1391
  STREAM_STATE_PUT_ROCKSDB(pState, "sess", &sKey, value, vLen);
dengyihao's avatar
dengyihao 已提交
1392 1393
  if (code == -1) {
  }
dengyihao's avatar
dengyihao 已提交
1394 1395
  return code;
}
dengyihao's avatar
dengyihao 已提交
1396 1397 1398 1399 1400 1401 1402 1403 1404 1405
int32_t streamStateSessionGet_rocksdb(SStreamState* pState, SSessionKey* key, void** pVal, int32_t* pVLen) {
  qDebug("streamStateSessionGet_rocksdb");
  int              code = 0;
  SStreamStateCur* pCur = streamStateSessionSeekKeyCurrentNext_rocksdb(pState, key);
  SSessionKey      resKey = *key;
  void*            tmp = NULL;
  int32_t          vLen = 0;
  code = streamStateSessionGetKVByCur_rocksdb(pCur, &resKey, &tmp, &vLen);
  if (code == 0) {
    if (pVLen != NULL) *pVLen = vLen;
dengyihao's avatar
dengyihao 已提交
1406

dengyihao's avatar
dengyihao 已提交
1407 1408 1409 1410 1411 1412
    if (key->win.skey != resKey.win.skey) {
      code = -1;
    } else {
      *key = resKey;
      *pVal = taosMemoryCalloc(1, *pVLen);
      memcpy(*pVal, tmp, *pVLen);
dengyihao's avatar
dengyihao 已提交
1413 1414
    }
  }
dengyihao's avatar
dengyihao 已提交
1415
  taosMemoryFree(tmp);
dengyihao's avatar
dengyihao 已提交
1416 1417 1418
  streamStateFreeCur(pCur);
  // impl later
  return code;
dengyihao's avatar
dengyihao 已提交
1419
}
dengyihao's avatar
dengyihao 已提交
1420 1421 1422 1423 1424 1425 1426

int32_t streamStateSessionDel_rocksdb(SStreamState* pState, const SSessionKey* key) {
  int              code = 0;
  SStateSessionKey sKey = {.key = *key, .opNum = pState->number};
  STREAM_STATE_DEL_ROCKSDB(pState, "sess", &sKey);
  return code;
}
dengyihao's avatar
dengyihao 已提交
1427
SStreamStateCur* streamStateSessionSeekKeyCurrentPrev_rocksdb(SStreamState* pState, const SSessionKey* key) {
dengyihao's avatar
dengyihao 已提交
1428
  qDebug("streamStateSessionSeekKeyCurrentPrev_rocksdb");
dengyihao's avatar
dengyihao 已提交
1429 1430 1431 1432 1433
  SStreamStateCur* pCur = taosMemoryCalloc(1, sizeof(SStreamStateCur));
  if (pCur == NULL) {
    return NULL;
  }
  pCur->number = pState->number;
dengyihao's avatar
dengyihao 已提交
1434
  pCur->db = pState->pTdbState->rocksdb;
1435 1436
  pCur->iter = streamStateIterCreate(pState, "sess", (rocksdb_snapshot_t**)&pCur->snapshot,
                                     (rocksdb_readoptions_t**)&pCur->readOpt);
dengyihao's avatar
dengyihao 已提交
1437

dengyihao's avatar
dengyihao 已提交
1438
  char             buf[128] = {0};
dengyihao's avatar
dengyihao 已提交
1439 1440
  SStateSessionKey sKey = {.key = *key, .opNum = pState->number};
  int              len = stateSessionKeyEncode(&sKey, buf);
dengyihao's avatar
dengyihao 已提交
1441
  if (!streamStateIterSeekAndValid(pCur->iter, buf, len)) {
dengyihao's avatar
dengyihao 已提交
1442
    streamStateFreeCur(pCur);
dengyihao's avatar
dengyihao 已提交
1443
    return NULL;
dengyihao's avatar
dengyihao 已提交
1444
  }
dengyihao's avatar
dengyihao 已提交
1445 1446
  while (rocksdb_iter_valid(pCur->iter) && iterValueIsStale(pCur->iter)) rocksdb_iter_prev(pCur->iter);

dengyihao's avatar
dengyihao 已提交
1447
  if (!rocksdb_iter_valid(pCur->iter)) {
dengyihao's avatar
dengyihao 已提交
1448 1449
    streamStateFreeCur(pCur);
    return NULL;
dengyihao's avatar
dengyihao 已提交
1450 1451 1452 1453 1454 1455 1456 1457 1458 1459
  }

  int32_t          c = 0;
  size_t           klen;
  const char*      iKey = rocksdb_iter_key(pCur->iter, &klen);
  SStateSessionKey curKey = {0};
  stateSessionKeyDecode(&curKey, (char*)iKey);
  if (stateSessionKeyCmpr(&sKey, sizeof(sKey), &curKey, sizeof(curKey)) >= 0) return pCur;

  rocksdb_iter_prev(pCur->iter);
dengyihao's avatar
dengyihao 已提交
1460
  if (!rocksdb_iter_valid(pCur->iter)) {
dengyihao's avatar
dengyihao 已提交
1461 1462
    // qWarn("streamState failed to seek key prev
    // %s", toString);
dengyihao's avatar
dengyihao 已提交
1463 1464 1465
    streamStateFreeCur(pCur);
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
1466 1467
  return pCur;
}
dengyihao's avatar
dengyihao 已提交
1468
SStreamStateCur* streamStateSessionSeekKeyCurrentNext_rocksdb(SStreamState* pState, SSessionKey* key) {
dengyihao's avatar
dengyihao 已提交
1469
  qDebug("streamStateSessionSeekKeyCurrentNext_rocksdb");
dengyihao's avatar
dengyihao 已提交
1470 1471 1472 1473
  SStreamStateCur* pCur = taosMemoryCalloc(1, sizeof(SStreamStateCur));
  if (pCur == NULL) {
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
1474
  pCur->db = pState->pTdbState->rocksdb;
1475 1476
  pCur->iter = streamStateIterCreate(pState, "sess", (rocksdb_snapshot_t**)&pCur->snapshot,
                                     (rocksdb_readoptions_t**)&pCur->readOpt);
dengyihao's avatar
dengyihao 已提交
1477
  pCur->number = pState->number;
dengyihao's avatar
dengyihao 已提交
1478

dengyihao's avatar
dengyihao 已提交
1479
  char buf[128] = {0};
dengyihao's avatar
dengyihao 已提交
1480

dengyihao's avatar
dengyihao 已提交
1481
  SStateSessionKey sKey = {.key = *key, .opNum = pState->number};
dengyihao's avatar
dengyihao 已提交
1482
  int              len = stateSessionKeyEncode(&sKey, buf);
dengyihao's avatar
dengyihao 已提交
1483
  if (!streamStateIterSeekAndValid(pCur->iter, buf, len)) {
dengyihao's avatar
dengyihao 已提交
1484 1485
    streamStateFreeCur(pCur);
    return NULL;
dengyihao's avatar
dengyihao 已提交
1486
  }
dengyihao's avatar
dengyihao 已提交
1487
  if (iterValueIsStale(pCur->iter)) {
dengyihao's avatar
dengyihao 已提交
1488 1489 1490
    streamStateFreeCur(pCur);
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
1491 1492 1493 1494 1495 1496 1497
  size_t           klen;
  const char*      iKey = rocksdb_iter_key(pCur->iter, &klen);
  SStateSessionKey curKey = {0};
  stateSessionKeyDecode(&curKey, (char*)iKey);
  if (stateSessionKeyCmpr(&sKey, sizeof(sKey), &curKey, sizeof(curKey)) <= 0) return pCur;

  rocksdb_iter_next(pCur->iter);
dengyihao's avatar
dengyihao 已提交
1498 1499 1500 1501
  if (!rocksdb_iter_valid(pCur->iter)) {
    streamStateFreeCur(pCur);
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
1502 1503
  return pCur;
}
dengyihao's avatar
dengyihao 已提交
1504

dengyihao's avatar
dengyihao 已提交
1505
SStreamStateCur* streamStateSessionSeekKeyNext_rocksdb(SStreamState* pState, const SSessionKey* key) {
dengyihao's avatar
dengyihao 已提交
1506
  qDebug("streamStateSessionSeekKeyNext_rocksdb");
dengyihao's avatar
dengyihao 已提交
1507 1508 1509 1510
  SStreamStateCur* pCur = taosMemoryCalloc(1, sizeof(SStreamStateCur));
  if (pCur == NULL) {
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
1511
  pCur->db = pState->pTdbState->rocksdb;
1512 1513
  pCur->iter = streamStateIterCreate(pState, "sess", (rocksdb_snapshot_t**)&pCur->snapshot,
                                     (rocksdb_readoptions_t**)&pCur->readOpt);
dengyihao's avatar
dengyihao 已提交
1514
  pCur->number = pState->number;
dengyihao's avatar
dengyihao 已提交
1515

dengyihao's avatar
dengyihao 已提交
1516
  SStateSessionKey sKey = {.key = *key, .opNum = pState->number};
dengyihao's avatar
dengyihao 已提交
1517

dengyihao's avatar
dengyihao 已提交
1518
  char buf[128] = {0};
dengyihao's avatar
dengyihao 已提交
1519
  int  len = stateSessionKeyEncode(&sKey, buf);
dengyihao's avatar
dengyihao 已提交
1520
  if (!streamStateIterSeekAndValid(pCur->iter, buf, len)) {
dengyihao's avatar
dengyihao 已提交
1521 1522
    streamStateFreeCur(pCur);
    return NULL;
dengyihao's avatar
dengyihao 已提交
1523
  }
dengyihao's avatar
dengyihao 已提交
1524 1525 1526 1527 1528
  while (rocksdb_iter_valid(pCur->iter) && iterValueIsStale(pCur->iter)) rocksdb_iter_next(pCur->iter);
  if (!rocksdb_iter_valid(pCur->iter)) {
    streamStateFreeCur(pCur);
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
1529 1530 1531 1532 1533 1534 1535
  size_t           klen;
  const char*      iKey = rocksdb_iter_key(pCur->iter, &klen);
  SStateSessionKey curKey = {0};
  stateSessionKeyDecode(&curKey, (char*)iKey);
  if (stateSessionKeyCmpr(&sKey, sizeof(sKey), &curKey, sizeof(curKey)) < 0) return pCur;

  rocksdb_iter_next(pCur->iter);
dengyihao's avatar
dengyihao 已提交
1536 1537 1538 1539
  if (!rocksdb_iter_valid(pCur->iter)) {
    streamStateFreeCur(pCur);
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
1540 1541
  return pCur;
}
dengyihao's avatar
dengyihao 已提交
1542
int32_t streamStateSessionGetKVByCur_rocksdb(SStreamStateCur* pCur, SSessionKey* pKey, void** pVal, int32_t* pVLen) {
dengyihao's avatar
dengyihao 已提交
1543
  qDebug("streamStateSessionGetKVByCur_rocksdb");
dengyihao's avatar
dengyihao 已提交
1544 1545 1546
  if (!pCur) {
    return -1;
  }
dengyihao's avatar
dengyihao 已提交
1547
  SStateSessionKey ktmp = {0};
dengyihao's avatar
dengyihao 已提交
1548
  size_t           kLen = 0, vLen = 0;
dengyihao's avatar
dengyihao 已提交
1549

dengyihao's avatar
dengyihao 已提交
1550
  if (!rocksdb_iter_valid(pCur->iter) || iterValueIsStale(pCur->iter)) {
dengyihao's avatar
dengyihao 已提交
1551 1552 1553 1554 1555
    return -1;
  }
  const char* curKey = rocksdb_iter_key(pCur->iter, (size_t*)&kLen);
  stateSessionKeyDecode((void*)&ktmp, (char*)curKey);

dengyihao's avatar
dengyihao 已提交
1556
  SStateSessionKey* pKTmp = &ktmp;
dengyihao's avatar
dengyihao 已提交
1557 1558 1559 1560 1561
  const char*       vval = rocksdb_iter_value(pCur->iter, (size_t*)&vLen);
  char*             val = NULL;
  int32_t           len = decodeValueFunc((void*)vval, vLen, NULL, &val);
  if (len < 0) {
    return -1;
dengyihao's avatar
dengyihao 已提交
1562
  }
dengyihao's avatar
dengyihao 已提交
1563 1564 1565 1566 1567
  if (pVal != NULL) {
    *pVal = (char*)val;
  } else {
    taosMemoryFree(val);
  }
dengyihao's avatar
dengyihao 已提交
1568
  if (pVLen != NULL) *pVLen = len;
dengyihao's avatar
dengyihao 已提交
1569 1570 1571 1572 1573 1574 1575 1576 1577 1578

  if (pKTmp->opNum != pCur->number) {
    return -1;
  }
  if (pKey->groupId != 0 && pKey->groupId != pKTmp->key.groupId) {
    return -1;
  }
  *pKey = pKTmp->key;
  return 0;
}
dengyihao's avatar
dengyihao 已提交
1579 1580 1581
// fill cf
int32_t streamStateFillPut_rocksdb(SStreamState* pState, const SWinKey* key, const void* value, int32_t vLen) {
  int code = 0;
dengyihao's avatar
dengyihao 已提交
1582

dengyihao's avatar
dengyihao 已提交
1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596
  STREAM_STATE_PUT_ROCKSDB(pState, "fill", key, value, vLen);
  return code;
}

int32_t streamStateFillGet_rocksdb(SStreamState* pState, const SWinKey* key, void** pVal, int32_t* pVLen) {
  int code = 0;
  STREAM_STATE_GET_ROCKSDB(pState, "fill", key, pVal, pVLen);
  return code;
}
int32_t streamStateFillDel_rocksdb(SStreamState* pState, const SWinKey* key) {
  int code = 0;
  STREAM_STATE_DEL_ROCKSDB(pState, "fill", key);
  return code;
}
dengyihao's avatar
dengyihao 已提交
1597

dengyihao's avatar
dengyihao 已提交
1598 1599
SStreamStateCur* streamStateFillGetCur_rocksdb(SStreamState* pState, const SWinKey* key) {
  qDebug("streamStateFillGetCur_rocksdb");
dengyihao's avatar
dengyihao 已提交
1600
  SStreamStateCur* pCur = taosMemoryCalloc(1, sizeof(SStreamStateCur));
dengyihao's avatar
dengyihao 已提交
1601 1602 1603

  if (pCur == NULL) return NULL;

dengyihao's avatar
dengyihao 已提交
1604
  pCur->db = pState->pTdbState->rocksdb;
1605 1606
  pCur->iter = streamStateIterCreate(pState, "fill", (rocksdb_snapshot_t**)&pCur->snapshot,
                                     (rocksdb_readoptions_t**)&pCur->readOpt);
dengyihao's avatar
dengyihao 已提交
1607

dengyihao's avatar
dengyihao 已提交
1608 1609
  char buf[128] = {0};
  int  len = winKeyEncode((void*)key, buf);
dengyihao's avatar
dengyihao 已提交
1610 1611 1612
  if (!streamStateIterSeekAndValid(pCur->iter, buf, len)) {
    streamStateFreeCur(pCur);
    return NULL;
dengyihao's avatar
dengyihao 已提交
1613
  }
dengyihao's avatar
dengyihao 已提交
1614 1615 1616
  if (iterValueIsStale(pCur->iter)) {
    streamStateFreeCur(pCur);
    return NULL;
dengyihao's avatar
dengyihao 已提交
1617
  }
dengyihao's avatar
dengyihao 已提交
1618

dengyihao's avatar
dengyihao 已提交
1619
  if (rocksdb_iter_valid(pCur->iter)) {
dengyihao's avatar
dengyihao 已提交
1620 1621 1622 1623 1624
    size_t  kLen;
    SWinKey curKey;
    char*   keyStr = (char*)rocksdb_iter_key(pCur->iter, &kLen);
    winKeyDecode((void*)&curKey, keyStr);
    if (winKeyCmpr(key, sizeof(*key), &curKey, sizeof(curKey)) == 0) {
dengyihao's avatar
dengyihao 已提交
1625 1626 1627
      return pCur;
    }
  }
dengyihao's avatar
dengyihao 已提交
1628

dengyihao's avatar
dengyihao 已提交
1629 1630 1631
  streamStateFreeCur(pCur);
  return NULL;
}
dengyihao's avatar
dengyihao 已提交
1632 1633 1634 1635 1636 1637
int32_t streamStateFillGetKVByCur_rocksdb(SStreamStateCur* pCur, SWinKey* pKey, const void** pVal, int32_t* pVLen) {
  qDebug("streamStateFillGetKVByCur_rocksdb");
  if (!pCur) {
    return -1;
  }
  SWinKey winKey;
dengyihao's avatar
dengyihao 已提交
1638 1639 1640
  if (!rocksdb_iter_valid(pCur->iter) || iterValueIsStale(pCur->iter)) {
    return -1;
  }
dengyihao's avatar
dengyihao 已提交
1641 1642
  size_t klen, vlen;
  char*  keyStr = (char*)rocksdb_iter_key(pCur->iter, &klen);
dengyihao's avatar
dengyihao 已提交
1643
  winKeyDecode(&winKey, keyStr);
dengyihao's avatar
dengyihao 已提交
1644

dengyihao's avatar
dengyihao 已提交
1645
  const char* valStr = rocksdb_iter_value(pCur->iter, &vlen);
dengyihao's avatar
dengyihao 已提交
1646 1647
  // char*       dst = NULL;
  int32_t len = decodeValueFunc((void*)valStr, vlen, NULL, (char**)pVal);
dengyihao's avatar
dengyihao 已提交
1648
  if (len < 0) {
dengyihao's avatar
dengyihao 已提交
1649 1650
    return -1;
  }
dengyihao's avatar
dengyihao 已提交
1651
  if (pVLen != NULL) *pVLen = len;
dengyihao's avatar
dengyihao 已提交
1652

dengyihao's avatar
dengyihao 已提交
1653 1654 1655 1656
  *pKey = winKey;
  return 0;
}

dengyihao's avatar
dengyihao 已提交
1657
SStreamStateCur* streamStateFillSeekKeyNext_rocksdb(SStreamState* pState, const SWinKey* key) {
dengyihao's avatar
dengyihao 已提交
1658
  qDebug("streamStateFillSeekKeyNext_rocksdb");
dengyihao's avatar
dengyihao 已提交
1659 1660 1661 1662
  SStreamStateCur* pCur = taosMemoryCalloc(1, sizeof(SStreamStateCur));
  if (!pCur) {
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
1663

dengyihao's avatar
dengyihao 已提交
1664
  pCur->db = pState->pTdbState->rocksdb;
1665 1666
  pCur->iter = streamStateIterCreate(pState, "fill", (rocksdb_snapshot_t**)&pCur->snapshot,
                                     (rocksdb_readoptions_t**)&pCur->readOpt);
dengyihao's avatar
dengyihao 已提交
1667

dengyihao's avatar
dengyihao 已提交
1668
  char buf[128] = {0};
dengyihao's avatar
dengyihao 已提交
1669
  int  len = winKeyEncode((void*)key, buf);
dengyihao's avatar
dengyihao 已提交
1670 1671 1672
  if (!streamStateIterSeekAndValid(pCur->iter, buf, len)) {
    streamStateFreeCur(pCur);
    return NULL;
dengyihao's avatar
dengyihao 已提交
1673
  }
dengyihao's avatar
dengyihao 已提交
1674 1675 1676 1677
  // skip stale data
  while (rocksdb_iter_valid(pCur->iter) && iterValueIsStale(pCur->iter)) {
    rocksdb_iter_next(pCur->iter);
  }
dengyihao's avatar
dengyihao 已提交
1678

dengyihao's avatar
dengyihao 已提交
1679
  if (rocksdb_iter_valid(pCur->iter)) {
dengyihao's avatar
dengyihao 已提交
1680 1681 1682 1683 1684 1685 1686 1687
    SWinKey curKey;
    size_t  kLen = 0;
    char*   keyStr = (char*)rocksdb_iter_key(pCur->iter, &kLen);
    winKeyDecode((void*)&curKey, keyStr);
    if (winKeyCmpr(key, sizeof(*key), &curKey, sizeof(curKey)) > 0) {
      return pCur;
    }
    rocksdb_iter_next(pCur->iter);
dengyihao's avatar
dengyihao 已提交
1688
    return pCur;
dengyihao's avatar
dengyihao 已提交
1689 1690 1691 1692 1693
  }
  streamStateFreeCur(pCur);
  return NULL;
}
SStreamStateCur* streamStateFillSeekKeyPrev_rocksdb(SStreamState* pState, const SWinKey* key) {
dengyihao's avatar
dengyihao 已提交
1694
  qDebug("streamStateFillSeekKeyPrev_rocksdb");
dengyihao's avatar
dengyihao 已提交
1695 1696 1697 1698
  SStreamStateCur* pCur = taosMemoryCalloc(1, sizeof(SStreamStateCur));
  if (pCur == NULL) {
    return NULL;
  }
dengyihao's avatar
dengyihao 已提交
1699

dengyihao's avatar
dengyihao 已提交
1700
  pCur->db = pState->pTdbState->rocksdb;
1701 1702
  pCur->iter = streamStateIterCreate(pState, "fill", (rocksdb_snapshot_t**)&pCur->snapshot,
                                     (rocksdb_readoptions_t**)&pCur->readOpt);
dengyihao's avatar
dengyihao 已提交
1703

dengyihao's avatar
dengyihao 已提交
1704
  char buf[128] = {0};
dengyihao's avatar
dengyihao 已提交
1705
  int  len = winKeyEncode((void*)key, buf);
dengyihao's avatar
dengyihao 已提交
1706 1707 1708
  if (!streamStateIterSeekAndValid(pCur->iter, buf, len)) {
    streamStateFreeCur(pCur);
    return NULL;
dengyihao's avatar
dengyihao 已提交
1709
  }
dengyihao's avatar
dengyihao 已提交
1710 1711 1712
  while (rocksdb_iter_valid(pCur->iter) && iterValueIsStale(pCur->iter)) {
    rocksdb_iter_prev(pCur->iter);
  }
dengyihao's avatar
dengyihao 已提交
1713

dengyihao's avatar
dengyihao 已提交
1714
  if (rocksdb_iter_valid(pCur->iter)) {
dengyihao's avatar
dengyihao 已提交
1715 1716 1717 1718 1719 1720 1721 1722
    SWinKey curKey;
    size_t  kLen = 0;
    char*   keyStr = (char*)rocksdb_iter_key(pCur->iter, &kLen);
    winKeyDecode((void*)&curKey, keyStr);
    if (winKeyCmpr(key, sizeof(*key), &curKey, sizeof(curKey)) < 0) {
      return pCur;
    }
    rocksdb_iter_prev(pCur->iter);
dengyihao's avatar
dengyihao 已提交
1723
    return pCur;
dengyihao's avatar
dengyihao 已提交
1724
  }
dengyihao's avatar
dengyihao 已提交
1725

dengyihao's avatar
dengyihao 已提交
1726 1727 1728
  streamStateFreeCur(pCur);
  return NULL;
}
dengyihao's avatar
dengyihao 已提交
1729
int32_t streamStateSessionGetKeyByRange_rocksdb(SStreamState* pState, const SSessionKey* key, SSessionKey* curKey) {
dengyihao's avatar
dengyihao 已提交
1730
  qDebug("streamStateSessionGetKeyByRange_rocksdb");
dengyihao's avatar
dengyihao 已提交
1731 1732 1733 1734 1735
  SStreamStateCur* pCur = taosMemoryCalloc(1, sizeof(SStreamStateCur));
  if (pCur == NULL) {
    return -1;
  }
  pCur->number = pState->number;
dengyihao's avatar
dengyihao 已提交
1736
  pCur->db = pState->pTdbState->rocksdb;
1737 1738
  pCur->iter = streamStateIterCreate(pState, "sess", (rocksdb_snapshot_t**)&pCur->snapshot,
                                     (rocksdb_readoptions_t**)&pCur->readOpt);
dengyihao's avatar
dengyihao 已提交
1739 1740 1741

  SStateSessionKey sKey = {.key = *key, .opNum = pState->number};
  int32_t          c = 0;
dengyihao's avatar
dengyihao 已提交
1742
  char             buf[128] = {0};
dengyihao's avatar
dengyihao 已提交
1743
  int              len = stateSessionKeyEncode(&sKey, buf);
dengyihao's avatar
dengyihao 已提交
1744 1745 1746
  if (!streamStateIterSeekAndValid(pCur->iter, buf, len)) {
    streamStateFreeCur(pCur);
    return -1;
dengyihao's avatar
dengyihao 已提交
1747 1748
  }

dengyihao's avatar
dengyihao 已提交
1749
  size_t           kLen;
dengyihao's avatar
dengyihao 已提交
1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787
  const char*      iKeyStr = rocksdb_iter_key(pCur->iter, (size_t*)&kLen);
  SStateSessionKey iKey = {0};
  stateSessionKeyDecode(&iKey, (char*)iKeyStr);

  c = stateSessionKeyCmpr(&sKey, sizeof(sKey), &iKey, sizeof(iKey));

  SSessionKey resKey = *key;
  int32_t     code = streamStateSessionGetKVByCur_rocksdb(pCur, &resKey, NULL, 0);
  if (code == 0 && sessionRangeKeyCmpr(key, &resKey) == 0) {
    *curKey = resKey;
    streamStateFreeCur(pCur);
    return code;
  }

  if (c > 0) {
    streamStateCurNext_rocksdb(pState, pCur);
    code = streamStateSessionGetKVByCur_rocksdb(pCur, &resKey, NULL, 0);
    if (code == 0 && sessionRangeKeyCmpr(key, &resKey) == 0) {
      *curKey = resKey;
      streamStateFreeCur(pCur);
      return code;
    }
  } else if (c < 0) {
    streamStateCurPrev(pState, pCur);
    code = streamStateSessionGetKVByCur_rocksdb(pCur, &resKey, NULL, 0);
    if (code == 0 && sessionRangeKeyCmpr(key, &resKey) == 0) {
      *curKey = resKey;
      streamStateFreeCur(pCur);
      return code;
    }
  }

  streamStateFreeCur(pCur);
  return -1;
}

int32_t streamStateSessionAddIfNotExist_rocksdb(SStreamState* pState, SSessionKey* key, TSKEY gap, void** pVal,
                                                int32_t* pVLen) {
dengyihao's avatar
dengyihao 已提交
1788
  qDebug("streamStateSessionAddIfNotExist_rocksdb");
dengyihao's avatar
dengyihao 已提交
1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799
  // todo refactor
  int32_t     res = 0;
  SSessionKey originKey = *key;
  SSessionKey searchKey = *key;
  searchKey.win.skey = key->win.skey - gap;
  searchKey.win.ekey = key->win.ekey + gap;
  int32_t valSize = *pVLen;

  void* tmp = taosMemoryMalloc(valSize);

  SStreamStateCur* pCur = streamStateSessionSeekKeyCurrentPrev_rocksdb(pState, key);
dengyihao's avatar
dengyihao 已提交
1800 1801 1802 1803
  if (pCur == NULL) {
  }
  int32_t code = streamStateSessionGetKVByCur_rocksdb(pCur, key, pVal, pVLen);

dengyihao's avatar
dengyihao 已提交
1804 1805 1806
  if (code == 0) {
    if (sessionRangeKeyCmpr(&searchKey, key) == 0) {
      memcpy(tmp, *pVal, valSize);
dengyihao's avatar
dengyihao 已提交
1807
      taosMemoryFreeClear(*pVal);
dengyihao's avatar
dengyihao 已提交
1808 1809 1810
      streamStateSessionDel_rocksdb(pState, key);
      goto _end;
    }
dengyihao's avatar
dengyihao 已提交
1811
    taosMemoryFreeClear(*pVal);
dengyihao's avatar
dengyihao 已提交
1812 1813 1814 1815
    streamStateCurNext_rocksdb(pState, pCur);
  } else {
    *key = originKey;
    streamStateFreeCur(pCur);
dengyihao's avatar
dengyihao 已提交
1816
    taosMemoryFreeClear(*pVal);
dengyihao's avatar
dengyihao 已提交
1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833
    pCur = streamStateSessionSeekKeyNext_rocksdb(pState, key);
  }

  code = streamStateSessionGetKVByCur_rocksdb(pCur, key, pVal, pVLen);
  if (code == 0) {
    if (sessionRangeKeyCmpr(&searchKey, key) == 0) {
      memcpy(tmp, *pVal, valSize);
      streamStateSessionDel_rocksdb(pState, key);
      goto _end;
    }
  }

  *key = originKey;
  res = 1;
  memset(tmp, 0, valSize);

_end:
dengyihao's avatar
dengyihao 已提交
1834
  taosMemoryFree(*pVal);
dengyihao's avatar
dengyihao 已提交
1835 1836 1837 1838
  *pVal = tmp;
  streamStateFreeCur(pCur);
  return res;
}
dengyihao's avatar
dengyihao 已提交
1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850
int32_t streamStateSessionClear_rocksdb(SStreamState* pState) {
  qDebug("streamStateSessionClear_rocksdb");
  SSessionKey      key = {.win.skey = 0, .win.ekey = 0, .groupId = 0};
  SStreamStateCur* pCur = streamStateSessionSeekKeyCurrentNext_rocksdb(pState, &key);

  while (1) {
    SSessionKey delKey = {0};
    void*       buf = NULL;
    int32_t     size = 0;
    int32_t     code = streamStateSessionGetKVByCur_rocksdb(pCur, &delKey, &buf, &size);
    if (code == 0 && size > 0) {
      memset(buf, 0, size);
dengyihao's avatar
dengyihao 已提交
1851
      // refactor later
dengyihao's avatar
dengyihao 已提交
1852 1853
      streamStateSessionPut_rocksdb(pState, &delKey, buf, size);
    } else {
dengyihao's avatar
dengyihao 已提交
1854
      taosMemoryFreeClear(buf);
dengyihao's avatar
dengyihao 已提交
1855 1856
      break;
    }
dengyihao's avatar
dengyihao 已提交
1857 1858
    taosMemoryFreeClear(buf);

dengyihao's avatar
dengyihao 已提交
1859 1860 1861 1862 1863
    streamStateCurNext_rocksdb(pState, pCur);
  }
  streamStateFreeCur(pCur);
  return -1;
}
dengyihao's avatar
dengyihao 已提交
1864 1865
int32_t streamStateStateAddIfNotExist_rocksdb(SStreamState* pState, SSessionKey* key, char* pKeyData,
                                              int32_t keyDataLen, state_key_cmpr_fn fn, void** pVal, int32_t* pVLen) {
dengyihao's avatar
dengyihao 已提交
1866
  qDebug("streamStateStateAddIfNotExist_rocksdb");
dengyihao's avatar
dengyihao 已提交
1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881
  // todo refactor
  int32_t     res = 0;
  SSessionKey tmpKey = *key;
  int32_t     valSize = *pVLen;
  void*       tmp = taosMemoryMalloc(valSize);
  // tdbRealloc(NULL, valSize);
  if (!tmp) {
    return -1;
  }

  SStreamStateCur* pCur = streamStateSessionSeekKeyCurrentPrev_rocksdb(pState, key);
  int32_t          code = streamStateSessionGetKVByCur_rocksdb(pCur, key, pVal, pVLen);
  if (code == 0) {
    if (key->win.skey <= tmpKey.win.skey && tmpKey.win.ekey <= key->win.ekey) {
      memcpy(tmp, *pVal, valSize);
dengyihao's avatar
dengyihao 已提交
1882
      streamStateSessionDel_rocksdb(pState, key);
dengyihao's avatar
dengyihao 已提交
1883 1884 1885 1886 1887 1888
      goto _end;
    }

    void* stateKey = (char*)(*pVal) + (valSize - keyDataLen);
    if (fn(pKeyData, stateKey) == true) {
      memcpy(tmp, *pVal, valSize);
dengyihao's avatar
dengyihao 已提交
1889
      streamStateSessionDel_rocksdb(pState, key);
dengyihao's avatar
dengyihao 已提交
1890 1891 1892 1893 1894 1895 1896 1897 1898
      goto _end;
    }

    streamStateCurNext_rocksdb(pState, pCur);
  } else {
    *key = tmpKey;
    streamStateFreeCur(pCur);
    pCur = streamStateSessionSeekKeyNext_rocksdb(pState, key);
  }
dengyihao's avatar
dengyihao 已提交
1899
  taosMemoryFreeClear(*pVal);
dengyihao's avatar
dengyihao 已提交
1900 1901 1902 1903 1904 1905 1906 1907 1908
  code = streamStateSessionGetKVByCur_rocksdb(pCur, key, pVal, pVLen);
  if (code == 0) {
    void* stateKey = (char*)(*pVal) + (valSize - keyDataLen);
    if (fn(pKeyData, stateKey) == true) {
      memcpy(tmp, *pVal, valSize);
      streamStateSessionDel_rocksdb(pState, key);
      goto _end;
    }
  }
dengyihao's avatar
dengyihao 已提交
1909
  taosMemoryFreeClear(*pVal);
dengyihao's avatar
dengyihao 已提交
1910 1911 1912 1913 1914 1915

  *key = tmpKey;
  res = 1;
  memset(tmp, 0, valSize);

_end:
dengyihao's avatar
dengyihao 已提交
1916
  taosMemoryFreeClear(*pVal);
dengyihao's avatar
dengyihao 已提交
1917 1918 1919 1920
  *pVal = tmp;
  streamStateFreeCur(pCur);
  return res;
}
dengyihao's avatar
dengyihao 已提交
1921

dengyihao's avatar
dengyihao 已提交
1922
//  partag cf
dengyihao's avatar
dengyihao 已提交
1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933
int32_t streamStatePutParTag_rocksdb(SStreamState* pState, int64_t groupId, const void* tag, int32_t tagLen) {
  int code = 0;
  STREAM_STATE_PUT_ROCKSDB(pState, "partag", &groupId, tag, tagLen);
  return code;
}

int32_t streamStateGetParTag_rocksdb(SStreamState* pState, int64_t groupId, void** tagVal, int32_t* tagLen) {
  int code = 0;
  STREAM_STATE_GET_ROCKSDB(pState, "partag", &groupId, tagVal, tagLen);
  return code;
}
dengyihao's avatar
dengyihao 已提交
1934
// parname cfg
dengyihao's avatar
dengyihao 已提交
1935 1936
int32_t streamStatePutParName_rocksdb(SStreamState* pState, int64_t groupId, const char tbname[TSDB_TABLE_NAME_LEN]) {
  int code = 0;
dengyihao's avatar
dengyihao 已提交
1937
  STREAM_STATE_PUT_ROCKSDB(pState, "parname", &groupId, (char*)tbname, TSDB_TABLE_NAME_LEN);
dengyihao's avatar
dengyihao 已提交
1938 1939 1940 1941 1942 1943 1944 1945 1946
  return code;
}
int32_t streamStateGetParName_rocksdb(SStreamState* pState, int64_t groupId, void** pVal) {
  int    code = 0;
  size_t tagLen;
  STREAM_STATE_GET_ROCKSDB(pState, "parname", &groupId, pVal, &tagLen);
  return code;
}

dengyihao's avatar
dengyihao 已提交
1947 1948
int32_t streamDefaultPut_rocksdb(SStreamState* pState, const void* key, void* pVal, int32_t pVLen) {
  int code = 0;
dengyihao's avatar
dengyihao 已提交
1949
  STREAM_STATE_PUT_ROCKSDB(pState, "default", key, pVal, pVLen);
dengyihao's avatar
dengyihao 已提交
1950 1951 1952 1953
  return code;
}
int32_t streamDefaultGet_rocksdb(SStreamState* pState, const void* key, void** pVal, int32_t* pVLen) {
  int code = 0;
dengyihao's avatar
dengyihao 已提交
1954
  STREAM_STATE_GET_ROCKSDB(pState, "default", key, pVal, pVLen);
dengyihao's avatar
dengyihao 已提交
1955 1956 1957 1958
  return code;
}
int32_t streamDefaultDel_rocksdb(SStreamState* pState, const void* key) {
  int code = 0;
dengyihao's avatar
dengyihao 已提交
1959
  STREAM_STATE_DEL_ROCKSDB(pState, "default", key);
dengyihao's avatar
dengyihao 已提交
1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007
  return code;
}

int32_t streamDefaultIterGet_rocksdb(SStreamState* pState, const void* start, const void* end, SArray* result) {
  int   code = 0;
  char* err = NULL;

  rocksdb_snapshot_t*    snapshot = NULL;
  rocksdb_readoptions_t* readopts = NULL;
  rocksdb_iterator_t*    pIter = streamStateIterCreate(pState, "default", &snapshot, &readopts);
  if (pIter == NULL) {
    return -1;
  }

  rocksdb_iter_seek(pIter, start, strlen(start));
  while (rocksdb_iter_valid(pIter)) {
    const char* key = rocksdb_iter_key(pIter, NULL);
    int32_t     vlen = 0;
    const char* vval = rocksdb_iter_value(pIter, (size_t*)&vlen);
    char*       val = NULL;
    int32_t     len = decodeValueFunc((void*)vval, vlen, NULL, NULL);
    if (len < 0) {
      rocksdb_iter_next(pIter);
      continue;
    }

    if (end != NULL && strcmp(key, end) > 0) {
      break;
    }
    if (strncmp(key, start, strlen(start)) == 0 && strlen(key) >= strlen(start) + 1) {
      int64_t checkPoint = 0;
      if (sscanf(key + strlen(key), ":%" PRId64 "", &checkPoint) == 1) {
        taosArrayPush(result, &checkPoint);
      }
    } else {
      break;
    }
    rocksdb_iter_next(pIter);
  }
  rocksdb_release_snapshot(pState->pTdbState->rocksdb, snapshot);
  rocksdb_readoptions_destroy(readopts);
  rocksdb_iter_destroy(pIter);
  return code;
}
void* streamDefaultIterCreate_rocksdb(SStreamState* pState) {
  SStreamStateCur* pCur = taosMemoryCalloc(1, sizeof(SStreamStateCur));

  pCur->db = pState->pTdbState->rocksdb;
2008 2009
  pCur->iter = streamStateIterCreate(pState, "default", (rocksdb_snapshot_t**)&pCur->snapshot,
                                     (rocksdb_readoptions_t**)&pCur->readOpt);
dengyihao's avatar
dengyihao 已提交
2010 2011 2012 2013 2014 2015
  return pCur;
}
int32_t streamDefaultIterValid_rocksdb(void* iter) {
  SStreamStateCur* pCur = iter;
  bool             val = rocksdb_iter_valid(pCur->iter);

dengyihao's avatar
dengyihao 已提交
2016
  return val ? 1 : 0;
dengyihao's avatar
dengyihao 已提交
2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052
}
void streamDefaultIterSeek_rocksdb(void* iter, const char* key) {
  SStreamStateCur* pCur = iter;
  rocksdb_iter_seek(pCur->iter, key, strlen(key));
}
void streamDefaultIterNext_rocksdb(void* iter) {
  SStreamStateCur* pCur = iter;
  rocksdb_iter_next(pCur->iter);
}
char* streamDefaultIterKey_rocksdb(void* iter, int32_t* len) {
  SStreamStateCur* pCur = iter;
  return (char*)rocksdb_iter_key(pCur->iter, (size_t*)len);
}
char* streamDefaultIterVal_rocksdb(void* iter, int32_t* len) {
  SStreamStateCur* pCur = iter;
  int32_t          vlen = 0;
  char*            dst = NULL;
  const char*      vval = rocksdb_iter_value(pCur->iter, (size_t*)&vlen);
  if (decodeValueFunc((void*)vval, vlen, NULL, &dst) < 0) {
    return NULL;
  }
  return dst;
}
// batch func
void* streamStateCreateBatch() {
  rocksdb_writebatch_t* pBatch = rocksdb_writebatch_create();
  return pBatch;
}
int32_t streamStateGetBatchSize(void* pBatch) {
  if (pBatch == NULL) return 0;
  return rocksdb_writebatch_count(pBatch);
}

void    streamStateClearBatch(void* pBatch) { rocksdb_writebatch_clear((rocksdb_writebatch_t*)pBatch); }
void    streamStateDestroyBatch(void* pBatch) { rocksdb_writebatch_destroy((rocksdb_writebatch_t*)pBatch); }
int32_t streamStatePutBatch(SStreamState* pState, const char* cfName, rocksdb_writebatch_t* pBatch, void* key,
dengyihao's avatar
dengyihao 已提交
2053
                            void* val, int32_t vlen, int64_t ttl) {
dengyihao's avatar
dengyihao 已提交
2054
  int i = streamStateGetCfIdx(pState, cfName);
dengyihao's avatar
dengyihao 已提交
2055 2056 2057 2058 2059 2060 2061 2062 2063

  if (i < 0) {
    qError("streamState failed to put to cf name:%s", cfName);
    return -1;
  }
  char    buf[128] = {0};
  int32_t klen = ginitDict[i].enFunc((void*)key, buf);

  char*                           ttlV = NULL;
dengyihao's avatar
dengyihao 已提交
2064
  int32_t                         ttlVLen = ginitDict[i].enValueFunc(val, vlen, ttl, &ttlV);
dengyihao's avatar
dengyihao 已提交
2065 2066 2067 2068 2069
  rocksdb_column_family_handle_t* pCf = pState->pTdbState->pHandle[ginitDict[i].idx];
  rocksdb_writebatch_put_cf((rocksdb_writebatch_t*)pBatch, pCf, buf, (size_t)klen, ttlV, (size_t)ttlVLen);
  taosMemoryFree(ttlV);
  return 0;
}
dengyihao's avatar
dengyihao 已提交
2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084
int32_t streamStatePutBatchOptimize(SStreamState* pState, int32_t cfIdx, rocksdb_writebatch_t* pBatch, void* key,
                                    void* val, int32_t vlen, int64_t ttl, void* tmpBuf) {
  char    buf[128] = {0};
  int32_t klen = ginitDict[cfIdx].enFunc((void*)key, buf);
  char*   ttlV = tmpBuf;
  int32_t ttlVLen = ginitDict[cfIdx].enValueFunc(val, vlen, ttl, &ttlV);

  rocksdb_column_family_handle_t* pCf = pState->pTdbState->pHandle[ginitDict[cfIdx].idx];
  rocksdb_writebatch_put_cf((rocksdb_writebatch_t*)pBatch, pCf, buf, (size_t)klen, ttlV, (size_t)ttlVLen);

  if (tmpBuf == NULL) {
    taosMemoryFree(ttlV);
  }
  return 0;
}
dengyihao's avatar
dengyihao 已提交
2085 2086 2087 2088 2089 2090 2091 2092 2093
int32_t streamStatePutBatch_rocksdb(SStreamState* pState, void* pBatch) {
  char* err = NULL;
  rocksdb_write(pState->pTdbState->rocksdb, pState->pTdbState->writeOpts, (rocksdb_writebatch_t*)pBatch, &err);
  if (err != NULL) {
    qError("streamState failed to write batch, err:%s", err);
    taosMemoryFree(err);
    return -1;
  }
  return 0;
L
liuyao 已提交
2094
}