• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

taosdata / TDengine / #4986

15 Mar 2026 08:32AM UTC coverage: 37.305% (-31.3%) from 68.601%
#4986

push

travis-ci

tomchon
test: keep docs and unit test

125478 of 336361 relevant lines covered (37.3%)

1134847.06 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/source/dnode/vnode/src/tsdb/tsdbFSet2.c
1
/*
2
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
3
 *
4
 * This program is free software: you can use, redistribute, and/or modify
5
 * it under the terms of the GNU Affero General Public License, version 3
6
 * or later ("AGPL"), as published by the Free Software Foundation.
7
 *
8
 * This program is distributed in the hope that it will be useful, but WITHOUT
9
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10
 * FITNESS FOR A PARTICULAR PURPOSE.
11
 *
12
 * You should have received a copy of the GNU Affero General Public License
13
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
14
 */
15

16
#include "tsdbFSet2.h"
17
#include "vnd.h"
18

19
int32_t tsdbSttLvlInit(int32_t level, SSttLvl **lvl) {
×
20
  if (!(lvl[0] = taosMemoryMalloc(sizeof(SSttLvl)))) {
×
21
    return terrno;
×
22
  }
23
  lvl[0]->level = level;
×
24
  TARRAY2_INIT(lvl[0]->fobjArr);
×
25
  return 0;
×
26
}
27

28
static void tsdbSttLvlClearFObj(void *data) { TAOS_UNUSED(tsdbTFileObjUnref(*(STFileObj **)data)); }
×
29

30
void tsdbSttLvlClear(SSttLvl **lvl) {
×
31
  if (lvl[0] != NULL) {
×
32
    TARRAY2_DESTROY(lvl[0]->fobjArr, tsdbSttLvlClearFObj);
×
33
    taosMemoryFree(lvl[0]);
×
34
    lvl[0] = NULL;
×
35
  }
36
}
×
37

38
static int32_t tsdbSttLvlInitEx(STsdb *pTsdb, const SSttLvl *lvl1, SSttLvl **lvl) {
×
39
  int32_t code = tsdbSttLvlInit(lvl1->level, lvl);
×
40
  if (code) return code;
×
41

42
  const STFileObj *fobj1;
43
  TARRAY2_FOREACH(lvl1->fobjArr, fobj1) {
×
44
    STFileObj *fobj;
45
    code = tsdbTFileObjInit(pTsdb, fobj1->f, &fobj);
×
46
    if (code) {
×
47
      tsdbSttLvlClear(lvl);
×
48
      return code;
×
49
    }
50

51
    code = TARRAY2_APPEND(lvl[0]->fobjArr, fobj);
×
52
    if (code) {
×
53
      tsdbSttLvlClear(lvl);
×
54
      (void)taosThreadMutexDestroy(&fobj->mutex);
×
55
      taosMemoryFree(fobj);
×
56
      return code;
×
57
    }
58
  }
59
  return 0;
×
60
}
61

62
static int32_t tsdbSttLvlInitRef(STsdb *pTsdb, const SSttLvl *lvl1, SSttLvl **lvl) {
×
63
  int32_t code = tsdbSttLvlInit(lvl1->level, lvl);
×
64
  if (code) return code;
×
65

66
  STFileObj *fobj1;
67
  TARRAY2_FOREACH(lvl1->fobjArr, fobj1) {
×
68
    code = tsdbTFileObjRef(fobj1);
×
69
    if (code) {
×
70
      tsdbSttLvlClear(lvl);
×
71
      return code;
×
72
    }
73
    code = TARRAY2_APPEND(lvl[0]->fobjArr, fobj1);
×
74
    if (code) {
×
75
      if (tsdbTFileObjUnref(fobj1) != 0) {
×
76
        tsdbError("failed to unref file obj, fobj:%p", fobj1);
×
77
      }
78
      tsdbSttLvlClear(lvl);
×
79
      return code;
×
80
    }
81
  }
82
  return 0;
×
83
}
84

85
static int32_t tsdbSttLvlFilteredInitEx(STsdb *pTsdb, const SSttLvl *lvl1, int64_t ever, SSttLvl **lvl,
×
86
                                        TFileOpArray *fopArr) {
87
  int32_t code = tsdbSttLvlInit(lvl1->level, lvl);
×
88
  if (code) return code;
×
89

90
  const STFileObj *fobj1;
91
  TARRAY2_FOREACH(lvl1->fobjArr, fobj1) {
×
92
    if (fobj1->f->maxVer <= ever) {
×
93
      STFileObj *fobj;
94
      code = tsdbTFileObjInit(pTsdb, fobj1->f, &fobj);
×
95
      if (code) {
×
96
        tsdbSttLvlClear(lvl);
×
97
        return code;
×
98
      }
99

100
      TAOS_CHECK_RETURN(TARRAY2_APPEND(lvl[0]->fobjArr, fobj));
×
101
    } else {
102
      STFileOp op = {
×
103
          .optype = TSDB_FOP_REMOVE,
104
          .fid = fobj1->f->fid,
×
105
          .of = fobj1->f[0],
106
      };
107
      TAOS_CHECK_RETURN(TARRAY2_APPEND(fopArr, op));
×
108
    }
109
  }
110
  return 0;
×
111
}
112

113
static void tsdbSttLvlRemoveFObj(void *data) {
×
114
  int32_t code = tsdbTFileObjRemove(*(STFileObj **)data);
×
115
  if (code) {
×
116
    tsdbError("failed to remove file obj, code:%d, error:%s", code, tstrerror(code));
×
117
  }
118
}
×
119
static void tsdbSttLvlRemove(SSttLvl **lvl) {
×
120
  TARRAY2_DESTROY(lvl[0]->fobjArr, tsdbSttLvlRemoveFObj);
×
121
  taosMemoryFree(lvl[0]);
×
122
  lvl[0] = NULL;
×
123
}
×
124

125
static int32_t tsdbSttLvlApplyEdit(STsdb *pTsdb, const SSttLvl *lvl1, SSttLvl *lvl2) {
×
126
  int32_t code = 0;
×
127

128
  if (lvl1->level != lvl2->level) {
×
129
    return TSDB_CODE_INVALID_PARA;
×
130
  }
131

132
  int32_t i1 = 0, i2 = 0;
×
133
  while (i1 < TARRAY2_SIZE(lvl1->fobjArr) || i2 < TARRAY2_SIZE(lvl2->fobjArr)) {
×
134
    STFileObj *fobj1 = i1 < TARRAY2_SIZE(lvl1->fobjArr) ? TARRAY2_GET(lvl1->fobjArr, i1) : NULL;
×
135
    STFileObj *fobj2 = i2 < TARRAY2_SIZE(lvl2->fobjArr) ? TARRAY2_GET(lvl2->fobjArr, i2) : NULL;
×
136

137
    if (fobj1 && fobj2) {
×
138
      if (fobj1->f->cid < fobj2->f->cid) {
×
139
        // create a file obj
140
        code = tsdbTFileObjInit(pTsdb, fobj1->f, &fobj2);
×
141
        if (code) return code;
×
142
        code = TARRAY2_INSERT_PTR(lvl2->fobjArr, i2, &fobj2);
×
143
        if (code) return code;
×
144
        i1++;
×
145
        i2++;
×
146
      } else if (fobj1->f->cid > fobj2->f->cid) {
×
147
        // remove a file obj
148
        TARRAY2_REMOVE(lvl2->fobjArr, i2, tsdbSttLvlRemoveFObj);
×
149
      } else {
150
        if (tsdbIsSameTFile(fobj1->f, fobj2->f)) {
×
151
          if (tsdbIsTFileChanged(fobj1->f, fobj2->f)) {
×
152
            fobj2->f[0] = fobj1->f[0];
×
153
          }
154
        } else {
155
          TARRAY2_REMOVE(lvl2->fobjArr, i2, tsdbSttLvlRemoveFObj);
×
156
          code = tsdbTFileObjInit(pTsdb, fobj1->f, &fobj2);
×
157
          if (code) return code;
×
158
          code = TARRAY2_SORT_INSERT(lvl2->fobjArr, fobj2, tsdbTFileObjCmpr);
×
159
          if (code) return code;
×
160
        }
161
        i1++;
×
162
        i2++;
×
163
      }
164
    } else if (fobj1) {
×
165
      // create a file obj
166
      code = tsdbTFileObjInit(pTsdb, fobj1->f, &fobj2);
×
167
      if (code) return code;
×
168
      code = TARRAY2_INSERT_PTR(lvl2->fobjArr, i2, &fobj2);
×
169
      if (code) return code;
×
170
      i1++;
×
171
      i2++;
×
172
    } else {
173
      // remove a file obj
174
      TARRAY2_REMOVE(lvl2->fobjArr, i2, tsdbSttLvlRemoveFObj);
×
175
    }
176
  }
177
  return 0;
×
178
}
179

180
static int32_t tsdbSttLvlCmprFn(const SSttLvl **lvl1, const SSttLvl **lvl2) {
×
181
  if (lvl1[0]->level < lvl2[0]->level) return -1;
×
182
  if (lvl1[0]->level > lvl2[0]->level) return 1;
×
183
  return 0;
×
184
}
185

186
static int32_t tsdbSttLvlToJson(const SSttLvl *lvl, cJSON *json) {
×
187
  if (cJSON_AddNumberToObject(json, "level", lvl->level) == NULL) {
×
188
    return TSDB_CODE_OUT_OF_MEMORY;
×
189
  }
190

191
  cJSON *ajson = cJSON_AddArrayToObject(json, "files");
×
192
  if (ajson == NULL) return TSDB_CODE_OUT_OF_MEMORY;
×
193
  const STFileObj *fobj;
194
  TARRAY2_FOREACH(lvl->fobjArr, fobj) {
×
195
    cJSON *item = cJSON_CreateObject();
×
196
    if (item == NULL) return TSDB_CODE_OUT_OF_MEMORY;
×
197
    (void)cJSON_AddItemToArray(ajson, item);
×
198

199
    int32_t code = tsdbTFileToJson(fobj->f, item);
×
200
    if (code) return code;
×
201
  }
202

203
  return 0;
×
204
}
205

206
static int32_t tsdbJsonToSttLvl(STsdb *pTsdb, const cJSON *json, SSttLvl **lvl) {
×
207
  const cJSON *item1, *item2;
208
  int32_t      level;
209

210
  item1 = cJSON_GetObjectItem(json, "level");
×
211
  if (cJSON_IsNumber(item1)) {
×
212
    level = item1->valuedouble;
×
213
  } else {
214
    return TSDB_CODE_FILE_CORRUPTED;
×
215
  }
216

217
  int32_t code = tsdbSttLvlInit(level, lvl);
×
218
  if (code) return code;
×
219

220
  item1 = cJSON_GetObjectItem(json, "files");
×
221
  if (!cJSON_IsArray(item1)) {
×
222
    tsdbSttLvlClear(lvl);
×
223
    return TSDB_CODE_FILE_CORRUPTED;
×
224
  }
225

226
  cJSON_ArrayForEach(item2, item1) {
×
227
    STFile tf;
228
    code = tsdbJsonToTFile(item2, TSDB_FTYPE_STT, &tf);
×
229
    if (code) {
×
230
      tsdbSttLvlClear(lvl);
×
231
      return code;
×
232
    }
233

234
    STFileObj *fobj;
235
    code = tsdbTFileObjInit(pTsdb, &tf, &fobj);
×
236
    if (code) {
×
237
      tsdbSttLvlClear(lvl);
×
238
      return code;
×
239
    }
240

241
    code = TARRAY2_APPEND(lvl[0]->fobjArr, fobj);
×
242
    if (code) return code;
×
243
  }
244
  TARRAY2_SORT(lvl[0]->fobjArr, tsdbTFileObjCmpr);
×
245
  return 0;
×
246
}
247

248
int32_t tsdbTFileSetToJson(const STFileSet *fset, cJSON *json) {
×
249
  int32_t code = 0;
×
250
  cJSON  *item1, *item2;
251

252
  // fid
253
  if (cJSON_AddNumberToObject(json, "fid", fset->fid) == NULL) {
×
254
    return TSDB_CODE_OUT_OF_MEMORY;
×
255
  }
256

257
  for (int32_t ftype = TSDB_FTYPE_MIN; ftype < TSDB_FTYPE_MAX; ++ftype) {
×
258
    if (fset->farr[ftype] == NULL) continue;
×
259

260
    code = tsdbTFileToJson(fset->farr[ftype]->f, json);
×
261
    if (code) return code;
×
262
  }
263

264
  // each level
265
  item1 = cJSON_AddArrayToObject(json, "stt lvl");
×
266
  if (item1 == NULL) return TSDB_CODE_OUT_OF_MEMORY;
×
267
  const SSttLvl *lvl;
268
  TARRAY2_FOREACH(fset->lvlArr, lvl) {
×
269
    item2 = cJSON_CreateObject();
×
270
    if (!item2) return TSDB_CODE_OUT_OF_MEMORY;
×
271
    (void)cJSON_AddItemToArray(item1, item2);
×
272

273
    code = tsdbSttLvlToJson(lvl, item2);
×
274
    if (code) return code;
×
275
  }
276

277
  // about compact and commit
278
  if (cJSON_AddNumberToObject(json, "last compact", fset->lastCompact) == NULL) {
×
279
    return TSDB_CODE_OUT_OF_MEMORY;
×
280
  }
281

282
  if (cJSON_AddNumberToObject(json, "last commit", fset->lastCommit) == NULL) {
×
283
    return TSDB_CODE_OUT_OF_MEMORY;
×
284
  }
285

286
  if (cJSON_AddNumberToObject(json, "last migrate", fset->lastMigrate) == NULL) {
×
287
    return TSDB_CODE_OUT_OF_MEMORY;
×
288
  }
289

290
  if (cJSON_AddNumberToObject(json, "last rollup", fset->lastRollup) == NULL) {
×
291
    return TSDB_CODE_OUT_OF_MEMORY;
×
292
  }
293

294
  if (cJSON_AddNumberToObject(json, "rlevel", fset->lastRollupLevel) == NULL) {
×
295
    return TSDB_CODE_OUT_OF_MEMORY;
×
296
  }
297

298
  return 0;
×
299
}
300

301
int32_t tsdbJsonToTFileSet(STsdb *pTsdb, const cJSON *json, STFileSet **fset) {
×
302
  int32_t      code;
303
  const cJSON *item1, *item2;
304
  int32_t      fid;
305
  STFile       tf;
306

307
  // fid
308
  item1 = cJSON_GetObjectItem(json, "fid");
×
309
  if (cJSON_IsNumber(item1)) {
×
310
    fid = item1->valuedouble;
×
311
  } else {
312
    return TSDB_CODE_FILE_CORRUPTED;
×
313
  }
314

315
  code = tsdbTFileSetInit(fid, fset);
×
316
  if (code) return code;
×
317

318
  for (tsdb_ftype_t ftype = TSDB_FTYPE_MIN; ftype < TSDB_FTYPE_MAX; ++ftype) {
×
319
    code = tsdbJsonToTFile(json, ftype, &tf);
×
320
    if (code == TSDB_CODE_NOT_FOUND) {
×
321
      continue;
×
322
    } else if (code) {
×
323
      tsdbTFileSetClear(fset);
×
324
      return code;
×
325
    } else {
326
      code = tsdbTFileObjInit(pTsdb, &tf, &(*fset)->farr[ftype]);
×
327
      if (code) return code;
×
328
    }
329
  }
330

331
  // each level
332
  item1 = cJSON_GetObjectItem(json, "stt lvl");
×
333
  if (cJSON_IsArray(item1)) {
×
334
    cJSON_ArrayForEach(item2, item1) {
×
335
      SSttLvl *lvl;
336
      code = tsdbJsonToSttLvl(pTsdb, item2, &lvl);
×
337
      if (code) {
×
338
        tsdbTFileSetClear(fset);
×
339
        return code;
×
340
      }
341

342
      code = TARRAY2_APPEND((*fset)->lvlArr, lvl);
×
343
      if (code) return code;
×
344
    }
345
    TARRAY2_SORT((*fset)->lvlArr, tsdbSttLvlCmprFn);
×
346
  } else {
347
    return TSDB_CODE_FILE_CORRUPTED;
×
348
  }
349
  // about compact and commit
350
  item1 = cJSON_GetObjectItem(json, "last compact");
×
351
  if (cJSON_IsNumber(item1)) {
×
352
    (*fset)->lastCompact = item1->valuedouble;
×
353
  } else {
354
    (*fset)->lastCompact = 0;
×
355
  }
356

357
  item1 = cJSON_GetObjectItem(json, "last commit");
×
358
  if (cJSON_IsNumber(item1)) {
×
359
    (*fset)->lastCommit = item1->valuedouble;
×
360
  } else {
361
    (*fset)->lastCommit = 0;
×
362
  }
363

364
  item1 = cJSON_GetObjectItem(json, "last migrate");
×
365
  if (cJSON_IsNumber(item1)) {
×
366
    (*fset)->lastMigrate = item1->valuedouble;
×
367
  } else {
368
    (*fset)->lastMigrate = 0;
×
369
  }
370

371
  item1 = cJSON_GetObjectItem(json, "last rollup");
×
372
  if (cJSON_IsNumber(item1)) {
×
373
    (*fset)->lastRollup = item1->valuedouble;
×
374
  } else {
375
    (*fset)->lastRollup = 0;
×
376
  }
377

378
  item1 = cJSON_GetObjectItem(json, "rlevel");
×
379
  if (cJSON_IsNumber(item1)) {
×
380
    (*fset)->lastRollupLevel = item1->valuedouble;
×
381
  } else {
382
    (*fset)->lastRollupLevel = 0;
×
383
  }
384

385
  return 0;
×
386
}
387

388
// NOTE: the api does not remove file (seems this is not true?), only do memory operation
389
int32_t tsdbTFileSetEdit(STsdb *pTsdb, STFileSet *fset, const STFileOp *op) {
×
390
  int32_t code = 0;
×
391

392
  if (op->optype == TSDB_FOP_CREATE) {
×
393
    // create a new file
394
    STFileObj *fobj;
395
    code = tsdbTFileObjInit(pTsdb, &op->nf, &fobj);
×
396
    if (code) return code;
×
397

398
    if (fobj->f->type == TSDB_FTYPE_STT) {
×
399
      SSttLvl *lvl = tsdbTFileSetGetSttLvl(fset, fobj->f->stt->level);
×
400
      if (!lvl) {
×
401
        code = tsdbSttLvlInit(fobj->f->stt->level, &lvl);
×
402
        if (code) return code;
×
403

404
        code = TARRAY2_SORT_INSERT(fset->lvlArr, lvl, tsdbSttLvlCmprFn);
×
405
        if (code) return code;
×
406
      }
407

408
      code = TARRAY2_SORT_INSERT(lvl->fobjArr, fobj, tsdbTFileObjCmpr);
×
409
      if (code) return code;
×
410
    } else {
411
      fset->farr[fobj->f->type] = fobj;
×
412
    }
413
  } else if (op->optype == TSDB_FOP_REMOVE) {
×
414
    // delete a file
415
    if (op->of.type == TSDB_FTYPE_STT) {
×
416
      SSttLvl *lvl = tsdbTFileSetGetSttLvl(fset, op->of.stt->level);
×
417

418
      STFileObj  tfobj = {.f[0] = {.cid = op->of.cid}};
×
419
      STFileObj *tfobjp = &tfobj;
×
420
      int32_t    idx = TARRAY2_SEARCH_IDX(lvl->fobjArr, &tfobjp, tsdbTFileObjCmpr, TD_EQ);
×
421
      TARRAY2_REMOVE(lvl->fobjArr, idx, tsdbSttLvlClearFObj);
×
422
    } else {
423
      code = tsdbTFileObjUnref(fset->farr[op->of.type]);
×
424
      if (code) return code;
×
425
      fset->farr[op->of.type] = NULL;
×
426
    }
427
  } else {
428
    if (op->nf.type == TSDB_FTYPE_STT) {
×
429
      SSttLvl *lvl = tsdbTFileSetGetSttLvl(fset, op->of.stt->level);
×
430

431
      STFileObj   tfobj = {.f[0] = {.cid = op->of.cid}}, *tfobjp = &tfobj;
×
432
      STFileObj **fobjPtr = TARRAY2_SEARCH(lvl->fobjArr, &tfobjp, tsdbTFileObjCmpr, TD_EQ);
×
433
      if (fobjPtr) {
×
434
        tfobjp = *fobjPtr;
×
435
        tfobjp->f[0] = op->nf;
×
436
      } else {
437
        tsdbError("file not found, cid:%" PRId64, op->of.cid);
×
438
      }
439
    } else {
440
      fset->farr[op->nf.type]->f[0] = op->nf;
×
441
    }
442
  }
443

444
  return 0;
×
445
}
446

447
int32_t tsdbTFileSetApplyEdit(STsdb *pTsdb, const STFileSet *fset1, STFileSet *fset2) {
×
448
  int32_t code = 0;
×
449

450
  if (fset1->fid != fset2->fid) {
×
451
    return TSDB_CODE_INVALID_PARA;
×
452
  }
453

454
  for (tsdb_ftype_t ftype = TSDB_FTYPE_MIN; ftype < TSDB_FTYPE_MAX; ++ftype) {
×
455
    if (!fset1->farr[ftype] && !fset2->farr[ftype]) continue;
×
456

457
    STFileObj *fobj1 = fset1->farr[ftype];
×
458
    STFileObj *fobj2 = fset2->farr[ftype];
×
459

460
    if (fobj1 && fobj2) {
×
461
      if (tsdbIsSameTFile(fobj1->f, fobj2->f)) {
×
462
        if (tsdbIsTFileChanged(fobj1->f, fobj2->f)) {
×
463
          fobj2->f[0] = fobj1->f[0];
×
464
        }
465
      } else {
466
        if (fobj1->f->cid != fobj2->f->cid) {
×
467
          code = tsdbTFileObjRemove(fobj2);
×
468
          if (code) return code;
×
469
        } else {
470
          code = tsdbTFileObjRemoveUpdateLC(fobj2);
×
471
          if (code) return code;
×
472
        }
473
        code = tsdbTFileObjInit(pTsdb, fobj1->f, &fset2->farr[ftype]);
×
474
        if (code) return code;
×
475
      }
476
    } else if (fobj1) {
×
477
      // create a new file
478
      code = tsdbTFileObjInit(pTsdb, fobj1->f, &fset2->farr[ftype]);
×
479
      if (code) return code;
×
480
    } else {
481
      // remove the file
482
      code = tsdbTFileObjRemove(fobj2);
×
483
      if (code) return code;
×
484
      fset2->farr[ftype] = NULL;
×
485
    }
486
  }
487

488
  // stt part
489
  int32_t i1 = 0, i2 = 0;
×
490
  while (i1 < TARRAY2_SIZE(fset1->lvlArr) || i2 < TARRAY2_SIZE(fset2->lvlArr)) {
×
491
    SSttLvl *lvl1 = i1 < TARRAY2_SIZE(fset1->lvlArr) ? TARRAY2_GET(fset1->lvlArr, i1) : NULL;
×
492
    SSttLvl *lvl2 = i2 < TARRAY2_SIZE(fset2->lvlArr) ? TARRAY2_GET(fset2->lvlArr, i2) : NULL;
×
493

494
    if (lvl1 && lvl2) {
×
495
      if (lvl1->level < lvl2->level) {
×
496
        // add a new stt level
497
        code = tsdbSttLvlInitEx(pTsdb, lvl1, &lvl2);
×
498
        if (code) return code;
×
499
        code = TARRAY2_SORT_INSERT(fset2->lvlArr, lvl2, tsdbSttLvlCmprFn);
×
500
        if (code) return code;
×
501
        i1++;
×
502
        i2++;
×
503
      } else if (lvl1->level > lvl2->level) {
×
504
        // remove the stt level
505
        TARRAY2_REMOVE(fset2->lvlArr, i2, tsdbSttLvlRemove);
×
506
      } else {
507
        // apply edit on stt level
508
        code = tsdbSttLvlApplyEdit(pTsdb, lvl1, lvl2);
×
509
        if (code) return code;
×
510
        i1++;
×
511
        i2++;
×
512
      }
513
    } else if (lvl1) {
×
514
      // add a new stt level
515
      code = tsdbSttLvlInitEx(pTsdb, lvl1, &lvl2);
×
516
      if (code) return code;
×
517
      code = TARRAY2_SORT_INSERT(fset2->lvlArr, lvl2, tsdbSttLvlCmprFn);
×
518
      if (code) return code;
×
519
      i1++;
×
520
      i2++;
×
521
    } else {
522
      // remove the stt level
523
      TARRAY2_REMOVE(fset2->lvlArr, i2, tsdbSttLvlRemove);
×
524
    }
525
  }
526

527
  fset2->lastCompact = fset1->lastCompact;
×
528
  fset2->lastCommit = fset1->lastCommit;
×
529
  fset2->lastMigrate = fset1->lastMigrate;
×
530
  fset2->lastRollup = fset1->lastRollup;
×
531
  fset2->lastRollupLevel = fset1->lastRollupLevel;
×
532

533
  return 0;
×
534
}
535

536
int32_t tsdbTFileSetInit(int32_t fid, STFileSet **fset) {
×
537
  fset[0] = taosMemoryCalloc(1, sizeof(STFileSet));
×
538
  if (fset[0] == NULL) {
×
539
    return terrno;
×
540
  }
541

542
  fset[0]->fid = fid;
×
543
  fset[0]->maxVerValid = VERSION_MAX;
×
544
  TARRAY2_INIT(fset[0]->lvlArr);
×
545

546
  // block commit variables
547
  (void)taosThreadCondInit(&fset[0]->canCommit, NULL);
×
548
  (*fset)->numWaitCommit = 0;
×
549
  (*fset)->blockCommit = false;
×
550

551
  for (int32_t i = 0; i < sizeof((*fset)->conds) / sizeof((*fset)->conds[0]); ++i) {
×
552
    struct STFileSetCond *cond = &(*fset)->conds[i];
×
553
    cond->running = false;
×
554
    cond->numWait = 0;
×
555
    (void)taosThreadCondInit(&cond->cond, NULL);
×
556
  }
557

558
  return 0;
×
559
}
560

561
int32_t tsdbTFileSetInitCopy(STsdb *pTsdb, const STFileSet *fset1, STFileSet **fset) {
×
562
  int32_t code = tsdbTFileSetInit(fset1->fid, fset);
×
563
  if (code) return code;
×
564

565
  for (int32_t ftype = TSDB_FTYPE_MIN; ftype < TSDB_FTYPE_MAX; ++ftype) {
×
566
    if (fset1->farr[ftype] == NULL) continue;
×
567

568
    code = tsdbTFileObjInit(pTsdb, fset1->farr[ftype]->f, &fset[0]->farr[ftype]);
×
569
    if (code) {
×
570
      tsdbTFileSetClear(fset);
×
571
      return code;
×
572
    }
573
  }
574

575
  const SSttLvl *lvl1;
576
  TARRAY2_FOREACH(fset1->lvlArr, lvl1) {
×
577
    SSttLvl *lvl;
578
    code = tsdbSttLvlInitEx(pTsdb, lvl1, &lvl);
×
579
    if (code) {
×
580
      tsdbTFileSetClear(fset);
×
581
      return code;
×
582
    }
583

584
    code = TARRAY2_APPEND(fset[0]->lvlArr, lvl);
×
585
    if (code) {
×
586
      tsdbTFileSetClear(fset);
×
587
      return code;
×
588
    }
589
  }
590

591
  (*fset)->lastCompact = fset1->lastCompact;
×
592
  (*fset)->lastCommit = fset1->lastCommit;
×
593
  (*fset)->lastMigrate = fset1->lastMigrate;
×
594
  (*fset)->lastRollup = fset1->lastRollup;
×
595
  (*fset)->lastRollupLevel = fset1->lastRollupLevel;
×
596

597
  return 0;
×
598
}
599

600
int32_t tsdbTFileSetFilteredInitDup(STsdb *pTsdb, const STFileSet *fset1, int64_t ever, STFileSet **fset,
×
601
                                    TFileOpArray *fopArr) {
602
  int32_t code = tsdbTFileSetInit(fset1->fid, fset);
×
603
  if (code) return code;
×
604

605
  for (int32_t ftype = TSDB_FTYPE_MIN; ftype < TSDB_FTYPE_MAX; ++ftype) {
×
606
    if (fset1->farr[ftype] == NULL) continue;
×
607
    STFileObj *fobj = fset1->farr[ftype];
×
608
    if (fobj->f->maxVer <= ever) {
×
609
      code = tsdbTFileObjInit(pTsdb, fobj->f, &fset[0]->farr[ftype]);
×
610
      if (code) {
×
611
        tsdbTFileSetClear(fset);
×
612
        return code;
×
613
      }
614
    } else {
615
      STFileOp op = {
×
616
          .optype = TSDB_FOP_REMOVE,
617
          .fid = fobj->f->fid,
×
618
          .of = fobj->f[0],
619
      };
620
      code = TARRAY2_APPEND(fopArr, op);
×
621
      if (code) return code;
×
622
    }
623
  }
624

625
  const SSttLvl *lvl1;
626
  TARRAY2_FOREACH(fset1->lvlArr, lvl1) {
×
627
    SSttLvl *lvl;
628
    code = tsdbSttLvlFilteredInitEx(pTsdb, lvl1, ever, &lvl, fopArr);
×
629
    if (code) {
×
630
      tsdbTFileSetClear(fset);
×
631
      return code;
×
632
    }
633

634
    code = TARRAY2_APPEND(fset[0]->lvlArr, lvl);
×
635
    if (code) return code;
×
636
  }
637

638
  return 0;
×
639
}
640

641
int32_t tsdbTFileSetRangeInitRef(STsdb *pTsdb, const STFileSet *fset1, int64_t sver, int64_t ever,
×
642
                                 STFileSetRange **fsr) {
643
  fsr[0] = taosMemoryCalloc(1, sizeof(*fsr[0]));
×
644
  if (fsr[0] == NULL) {
×
645
    return terrno;
×
646
  }
647
  fsr[0]->fid = fset1->fid;
×
648
  fsr[0]->sver = sver;
×
649
  fsr[0]->ever = ever;
×
650

651
  int32_t code = tsdbTFileSetInitRef(pTsdb, fset1, &fsr[0]->fset);
×
652
  if (code) {
×
653
    taosMemoryFree(fsr[0]);
×
654
    fsr[0] = NULL;
×
655
  }
656
  return code;
×
657
}
658

659
int32_t tsdbTFileSetInitRef(STsdb *pTsdb, const STFileSet *fset1, STFileSet **fset) {
×
660
  int32_t code = tsdbTFileSetInit(fset1->fid, fset);
×
661
  if (code) return code;
×
662

663
  for (int32_t ftype = TSDB_FTYPE_MIN; ftype < TSDB_FTYPE_MAX; ++ftype) {
×
664
    if (fset1->farr[ftype] == NULL) continue;
×
665

666
    code = tsdbTFileObjRef(fset1->farr[ftype]);
×
667
    if (code) {
×
668
      tsdbTFileSetClear(fset);
×
669
      return code;
×
670
    }
671
    fset[0]->farr[ftype] = fset1->farr[ftype];
×
672
  }
673

674
  const SSttLvl *lvl1;
675
  TARRAY2_FOREACH(fset1->lvlArr, lvl1) {
×
676
    SSttLvl *lvl;
677
    code = tsdbSttLvlInitRef(pTsdb, lvl1, &lvl);
×
678
    if (code) {
×
679
      tsdbSttLvlClear(&lvl);
×
680
      tsdbTFileSetClear(fset);
×
681
      return code;
×
682
    }
683

684
    code = TARRAY2_APPEND(fset[0]->lvlArr, lvl);
×
685
    if (code) {
×
686
      tsdbSttLvlClear(&lvl);
×
687
      tsdbTFileSetClear(fset);
×
688
      return code;
×
689
    }
690
  }
691

692
  (*fset)->lastCompact = fset1->lastCompact;
×
693
  (*fset)->lastCommit = fset1->lastCommit;
×
694
  (*fset)->lastMigrate = fset1->lastMigrate;
×
695
  (*fset)->lastRollup = fset1->lastRollup;
×
696
  (*fset)->lastRollupLevel = fset1->lastRollupLevel;
×
697

698
  return 0;
×
699
}
700

701
void tsdbTFileSetRangeClear(STFileSetRange **fsr) {
×
702
  if (!fsr[0]) return;
×
703

704
  tsdbTFileSetClear(&fsr[0]->fset);
×
705
  taosMemoryFree(fsr[0]);
×
706
  fsr[0] = NULL;
×
707
  return;
×
708
}
709

710
void tsdbTFileSetRangeArrayDestroy(TFileSetRangeArray **ppArr) {
×
711
  if (ppArr && ppArr[0]) {
×
712
    TARRAY2_DESTROY(ppArr[0], tsdbTFileSetRangeClear);
×
713
    taosMemoryFree(ppArr[0]);
×
714
    ppArr[0] = NULL;
×
715
  }
716
}
×
717

718
void tsdbTFileSetClear(STFileSet **fset) {
×
719
  if (fset && *fset) {
×
720
    for (tsdb_ftype_t ftype = TSDB_FTYPE_MIN; ftype < TSDB_FTYPE_MAX; ++ftype) {
×
721
      if ((*fset)->farr[ftype] == NULL) continue;
×
722
      int32_t code = tsdbTFileObjUnref((*fset)->farr[ftype]);
×
723
      if (code) {
×
724
        tsdbError("failed to unref file, fid:%d, ftype:%d", (*fset)->fid, ftype);
×
725
      }
726
      (*fset)->farr[ftype] = NULL;
×
727
    }
728

729
    TARRAY2_DESTROY((*fset)->lvlArr, tsdbSttLvlClear);
×
730

731
    (void)taosThreadCondDestroy(&(*fset)->canCommit);
×
732
    for (int32_t i = 0; i < sizeof((*fset)->conds) / sizeof((*fset)->conds[0]); ++i) {
×
733
      (void)taosThreadCondDestroy(&(*fset)->conds[i].cond);
×
734
    }
735
    taosMemoryFreeClear(*fset);
×
736
  }
737
}
×
738

739
void tsdbTFileSetRemove(STFileSet *fset) {
×
740
  if (fset == NULL) return;
×
741

742
  for (tsdb_ftype_t ftype = TSDB_FTYPE_MIN; ftype < TSDB_FTYPE_MAX; ++ftype) {
×
743
    if (fset->farr[ftype] != NULL) {
×
744
      int32_t code = tsdbTFileObjRemove(fset->farr[ftype]);
×
745
      if (code) {
×
746
        tsdbError("failed to remove file, fid:%d, ftype:%d", fset->fid, ftype);
×
747
      }
748
      fset->farr[ftype] = NULL;
×
749
    }
750
  }
751

752
  TARRAY2_DESTROY(fset->lvlArr, tsdbSttLvlRemove);
×
753
}
754

755
int64_t tsdbTFileSetGetDataSize(const STFileSet *fset) {
×
756
  int64_t size = 0;
×
757
  if (fset->farr[TSDB_FTYPE_DATA]) {
×
758
    size += fset->farr[TSDB_FTYPE_DATA]->f->size;
×
759
  }
760

761
  SSttLvl *lvl;
762
  TARRAY2_FOREACH(fset->lvlArr, lvl) {
×
763
    STFileObj *fobj;
764
    TARRAY2_FOREACH(lvl->fobjArr, fobj) { size += fobj->f->size; }
×
765
  }
766
  return size;
×
767
}
768

769
SSttLvl *tsdbTFileSetGetSttLvl(STFileSet *fset, int32_t level) {
×
770
  SSttLvl   sttLvl = {.level = level};
×
771
  SSttLvl  *lvl = &sttLvl;
×
772
  SSttLvl **lvlPtr = TARRAY2_SEARCH(fset->lvlArr, &lvl, tsdbSttLvlCmprFn, TD_EQ);
×
773
  return lvlPtr ? lvlPtr[0] : NULL;
×
774
}
775

776
int32_t tsdbTFileSetCmprFn(const STFileSet **fset1, const STFileSet **fset2) {
×
777
  if (fset1[0]->fid < fset2[0]->fid) return -1;
×
778
  if (fset1[0]->fid > fset2[0]->fid) return 1;
×
779
  return 0;
×
780
}
781

782
int64_t tsdbTFileSetMaxCid(const STFileSet *fset) {
×
783
  int64_t maxCid = 0;
×
784
  for (tsdb_ftype_t ftype = TSDB_FTYPE_MIN; ftype < TSDB_FTYPE_MAX; ++ftype) {
×
785
    if (fset->farr[ftype] == NULL) continue;
×
786
    maxCid = TMAX(maxCid, fset->farr[ftype]->f->cid);
×
787
  }
788
  const SSttLvl   *lvl;
789
  const STFileObj *fobj;
790
  TARRAY2_FOREACH(fset->lvlArr, lvl) {
×
791
    TARRAY2_FOREACH(lvl->fobjArr, fobj) { maxCid = TMAX(maxCid, fobj->f->cid); }
×
792
  }
793
  return maxCid;
×
794
}
795

796
bool tsdbTFileSetIsEmpty(const STFileSet *fset) {
×
797
  for (tsdb_ftype_t ftype = TSDB_FTYPE_MIN; ftype < TSDB_FTYPE_MAX; ++ftype) {
×
798
    if (fset->farr[ftype] != NULL) return false;
×
799
  }
800
  return TARRAY2_SIZE(fset->lvlArr) == 0;
×
801
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc