tsdbReadImpl.h 7.2 KB
Newer Older
H
Hongze Cheng 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 * 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/>.
 */

#ifndef _TD_TSDB_READ_IMPL_H_
#define _TD_TSDB_READ_IMPL_H_

H
Hongze Cheng 已提交
19
#include "os.h"
H
Hongze Cheng 已提交
20
#include "tcommon.h"
21 22 23
#include "tfs.h"
#include "tsdb.h"
#include "tsdbFile.h"
H
Hongze Cheng 已提交
24
#include "tsdbMemory.h"
H
Hongze Cheng 已提交
25
#include "tskiplist.h"
26

C
Cary Xu 已提交
27 28 29 30
#ifdef __cplusplus
extern "C" {
#endif

H
Hongze Cheng 已提交
31 32 33 34 35 36 37 38 39 40 41
typedef struct SReadH SReadH;

typedef struct {
  uint32_t len;
  uint32_t offset;
  uint32_t hasLast : 2;
  uint32_t numOfBlocks : 30;
  uint64_t uid;
  TSKEY    maxKey;
} SBlockIdx;

42
#ifdef TD_REFACTOR_3
H
Hongze Cheng 已提交
43 44 45 46 47 48
typedef struct {
  int64_t last : 1;
  int64_t offset : 63;
  int32_t algorithm : 8;
  int32_t numOfRows : 24;
  int32_t len;
H
refact  
Hongze Cheng 已提交
49
  int32_t keyLen;  // key column length, keyOffset = offset+sizeof(SBlockData)+sizeof(SBlockCol)*numOfCols
H
Hongze Cheng 已提交
50
  int16_t numOfSubBlocks;
H
refact  
Hongze Cheng 已提交
51
  int16_t numOfCols;  // not including timestamp column
H
Hongze Cheng 已提交
52 53 54 55
  TSKEY   keyFirst;
  TSKEY   keyLast;
} SBlock;

56 57 58 59 60 61 62 63 64
#else

typedef enum {
  TSDB_SBLK_VER_0 = 0,
  TSDB_SBLK_VER_MAX,
} ESBlockVer;

#define SBlockVerLatest TSDB_SBLK_VER_0

C
update  
Cary Xu 已提交
65
typedef struct {
66
  uint8_t  last : 1;
C
Cary Xu 已提交
67 68 69 70 71 72 73 74 75
  uint8_t  blkVer : 7;
  uint8_t  numOfSubBlocks;
  col_id_t numOfCols;    // not including timestamp column
  uint32_t len;          // data block length
  uint32_t keyLen : 20;  // key column length, keyOffset = offset+sizeof(SBlockData)+sizeof(SBlockCol)*numOfCols
  uint32_t algorithm : 4;
  uint32_t reserve : 8;
  col_id_t numOfBSma;
  uint16_t numOfRows;
76 77 78
  int64_t  offset;
  uint64_t aggrStat : 1;
  uint64_t aggrOffset : 63;
C
update  
Cary Xu 已提交
79 80
  TSKEY    keyFirst;
  TSKEY    keyLast;
81 82
} SBlockV0;

H
Hongze Cheng 已提交
83
#define SBlock SBlockV0  // latest SBlock definition
84 85

#endif
C
update  
Cary Xu 已提交
86

H
Hongze Cheng 已提交
87
typedef struct {
H
refact  
Hongze Cheng 已提交
88 89 90 91
  int32_t  delimiter;  // For recovery usage
  int32_t  tid;
  uint64_t uid;
  SBlock   blocks[];
H
Hongze Cheng 已提交
92 93
} SBlockInfo;

94
#ifdef TD_REFACTOR_3
H
Hongze Cheng 已提交
95
typedef struct {
96
  int16_t  colId;
C
Cary Xu 已提交
97 98
  uint16_t bitmap : 1;  // 0: has bitmap if has NULL/NORM rows, 1: no bitmap if all rows are NORM
  uint16_t reserve : 15;
99 100 101 102 103 104 105 106 107 108 109
  int32_t  len;
  uint32_t type : 8;
  uint32_t offset : 24;
  int64_t  sum;
  int64_t  max;
  int64_t  min;
  int16_t  maxIndex;
  int16_t  minIndex;
  int16_t  numOfNull;
  uint8_t  offsetH;
  char     padding[1];
H
Hongze Cheng 已提交
110
} SBlockCol;
111 112 113
#else
typedef struct {
  int16_t  colId;
114 115 116 117
  uint16_t type : 6;
  uint16_t blen : 10;   // bitmap length(TODO: full UT for the bitmap compress of various data input)
  uint32_t bitmap : 1;  // 0: has bitmap if has NULL/NORM rows, 1: no bitmap if all rows are NORM
  uint32_t len : 31;    // data length + bitmap length
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
  uint32_t offset;
} SBlockColV0;

#define SBlockCol SBlockColV0  // latest SBlockCol definition

typedef struct {
  int16_t colId;
  int16_t maxIndex;
  int16_t minIndex;
  int16_t numOfNull;
  int64_t sum;
  int64_t max;
  int64_t min;
} SAggrBlkColV0;

#define SAggrBlkCol SAggrBlkColV0  // latest SAggrBlkCol definition

#endif
H
Hongze Cheng 已提交
136

137 138
// Code here just for back-ward compatibility
static FORCE_INLINE void tsdbSetBlockColOffset(SBlockCol *pBlockCol, uint32_t offset) {
139
#ifdef TD_REFACTOR_3
140 141
  pBlockCol->offset = offset & ((((uint32_t)1) << 24) - 1);
  pBlockCol->offsetH = (uint8_t)(offset >> 24);
142 143 144
#else
  pBlockCol->offset = offset;
#endif
145 146 147
}

static FORCE_INLINE uint32_t tsdbGetBlockColOffset(SBlockCol *pBlockCol) {
148
#ifdef TD_REFACTOR_3
149 150 151
  uint32_t offset1 = pBlockCol->offset;
  uint32_t offset2 = pBlockCol->offsetH;
  return (offset1 | (offset2 << 24));
152 153 154
#else
  return pBlockCol->offset;
#endif
155 156
}

H
Hongze Cheng 已提交
157
typedef struct {
H
refact  
Hongze Cheng 已提交
158 159 160
  int32_t   delimiter;  // For recovery usage
  int32_t   numOfCols;  // For recovery usage
  uint64_t  uid;        // For recovery usage
H
Hongze Cheng 已提交
161 162 163
  SBlockCol cols[];
} SBlockData;

164 165
typedef void SAggrBlkData;  // SBlockCol cols[];

H
Hongze Cheng 已提交
166
struct SReadH {
H
Hongze Cheng 已提交
167
  STsdb        *pRepo;
168
  SDFileSet     rSet;     // FSET to read
H
Hongze Cheng 已提交
169 170 171
  SArray       *aBlkIdx;  // SBlockIdx array
  STable       *pTable;   // table to read
  SBlockIdx    *pBlkIdx;  // current reading table SBlockIdx
172
  int           cidx;
H
Hongze Cheng 已提交
173 174
  SBlockInfo   *pBlkInfo;
  SBlockData   *pBlkData;      // Block info
175
  SAggrBlkData *pAggrBlkData;  // Aggregate Block info
H
Hongze Cheng 已提交
176 177 178 179
  SDataCols    *pDCols[2];
  void         *pBuf;    // buffer
  void         *pCBuf;   // compression buffer
  void         *pExBuf;  // extra buffer
H
Hongze Cheng 已提交
180 181
};

182 183 184 185
#define TSDB_READ_REPO(rh)      ((rh)->pRepo)
#define TSDB_READ_REPO_ID(rh)   REPO_ID(TSDB_READ_REPO(rh))
#define TSDB_READ_FSET(rh)      (&((rh)->rSet))
#define TSDB_READ_TABLE(rh)     ((rh)->pTable)
H
Hongze Cheng 已提交
186 187 188
#define TSDB_READ_HEAD_FILE(rh) TSDB_DFILE_IN_SET(TSDB_READ_FSET(rh), TSDB_FILE_HEAD)
#define TSDB_READ_DATA_FILE(rh) TSDB_DFILE_IN_SET(TSDB_READ_FSET(rh), TSDB_FILE_DATA)
#define TSDB_READ_LAST_FILE(rh) TSDB_DFILE_IN_SET(TSDB_READ_FSET(rh), TSDB_FILE_LAST)
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204
#define TSDB_READ_SMAD_FILE(rh) TSDB_DFILE_IN_SET(TSDB_READ_FSET(rh), TSDB_FILE_SMAD)
#define TSDB_READ_SMAL_FILE(rh) TSDB_DFILE_IN_SET(TSDB_READ_FSET(rh), TSDB_FILE_SMAL)
#define TSDB_READ_BUF(rh)       ((rh)->pBuf)
#define TSDB_READ_COMP_BUF(rh)  ((rh)->pCBuf)
#define TSDB_READ_EXBUF(rh)     ((rh)->pExBuf)

#define TSDB_BLOCK_STATIS_SIZE(ncols, blkVer) \
  (sizeof(SBlockData) + sizeof(SBlockColV##blkVer) * (ncols) + sizeof(TSCKSUM))

static FORCE_INLINE size_t tsdbBlockStatisSize(int nCols, uint32_t blkVer) {
  switch (blkVer) {
    case TSDB_SBLK_VER_0:
    default:
      return TSDB_BLOCK_STATIS_SIZE(nCols, 0);
  }
}
H
Hongze Cheng 已提交
205

206 207 208 209 210 211 212 213 214
#define TSDB_BLOCK_AGGR_SIZE(ncols, blkVer) (sizeof(SAggrBlkColV##blkVer) * (ncols) + sizeof(TSCKSUM))

static FORCE_INLINE size_t tsdbBlockAggrSize(int nCols, uint32_t blkVer) {
  switch (blkVer) {
    case TSDB_SBLK_VER_0:
    default:
      return TSDB_BLOCK_AGGR_SIZE(nCols, 0);
  }
}
H
Hongze Cheng 已提交
215

H
Hongze Cheng 已提交
216
int   tsdbInitReadH(SReadH *pReadh, STsdb *pRepo);
H
Hongze Cheng 已提交
217 218 219 220 221 222
void  tsdbDestroyReadH(SReadH *pReadh);
int   tsdbSetAndOpenReadFSet(SReadH *pReadh, SDFileSet *pSet);
void  tsdbCloseAndUnsetFSet(SReadH *pReadh);
int   tsdbLoadBlockIdx(SReadH *pReadh);
int   tsdbSetReadTable(SReadH *pReadh, STable *pTable);
int   tsdbLoadBlockInfo(SReadH *pReadh, void *pTarget);
H
Hongze Cheng 已提交
223
int   tsdbLoadBlockData(SReadH *pReadh, SBlock *pBlock, SBlockInfo *pBlockInfo);
H
Hongze Cheng 已提交
224 225
int   tsdbLoadBlockDataCols(SReadH *pReadh, SBlock *pBlock, SBlockInfo *pBlkInfo, const int16_t *colIds,
                            int numOfColsIds);
H
Hongze Cheng 已提交
226 227 228
int   tsdbLoadBlockStatis(SReadH *pReadh, SBlock *pBlock);
int   tsdbEncodeSBlockIdx(void **buf, SBlockIdx *pIdx);
void *tsdbDecodeSBlockIdx(void *buf, SBlockIdx *pIdx);
229
void  tsdbGetBlockStatis(SReadH *pReadh, SDataStatis *pStatis, int numOfCols, SBlock *pBlock);
H
Hongze Cheng 已提交
230 231

static FORCE_INLINE int tsdbMakeRoom(void **ppBuf, size_t size) {
H
Hongze Cheng 已提交
232
  void  *pBuf = *ppBuf;
H
Hongze Cheng 已提交
233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
  size_t tsize = taosTSizeof(pBuf);

  if (tsize < size) {
    if (tsize == 0) tsize = 1024;

    while (tsize < size) {
      tsize *= 2;
    }

    *ppBuf = taosTRealloc(pBuf, tsize);
    if (*ppBuf == NULL) {
      terrno = TSDB_CODE_TDB_OUT_OF_MEMORY;
      return -1;
    }
  }

  return 0;
}
H
Hongze Cheng 已提交
251

C
Cary Xu 已提交
252 253 254 255
#ifdef __cplusplus
}
#endif

256
#endif /*_TD_TSDB_READ_IMPL_H_*/