tsdbReadImpl.h 8.0 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_

19 20 21 22 23 24 25
#include "tfs.h"
#include "tsdb.h"
#include "os.h"
#include "tsdbFile.h"
#include "tskiplist.h"
#include "tsdbMeta.h"

H
Hongze Cheng 已提交
26 27 28 29 30 31 32 33 34 35 36 37
typedef struct SReadH SReadH;

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

38
#if 0
H
Hongze Cheng 已提交
39 40 41 42 43 44
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 已提交
45
  int32_t keyLen;  // key column length, keyOffset = offset+sizeof(SBlockData)+sizeof(SBlockCol)*numOfCols
C
Cary Xu 已提交
46 47 48 49
  int16_t numOfSubBlocks;
  int16_t numOfCols;  // not including timestamp column
  TSKEY   keyFirst;
  TSKEY   keyLast;
50
  } SBlock;
51
#endif
52 53

/**
C
Cary Xu 已提交
54 55
 * keyLen;     // key column length, keyOffset = offset+sizeof(SBlockData)+sizeof(SBlockCol)*numOfCols
 * numOfCols;  // not including timestamp column
56 57 58 59 60 61 62 63 64 65 66 67 68
 */
#define SBlockFieldsP0    \
  int64_t last : 1;       \
  int64_t offset : 63;    \
  int32_t algorithm : 8;  \
  int32_t numOfRows : 24; \
  int32_t len;            \
  int32_t keyLen;         \
  int16_t numOfSubBlocks; \
  int16_t numOfCols;      \
  TSKEY   keyFirst;       \
  TSKEY   keyLast

C
Cary Xu 已提交
69
/**
C
Cary Xu 已提交
70 71
 * aggrStat;   // only valid when blkVer > 0. 0 - no aggr part in .data/.last/.smad/.smal, 1 - has aggr in .smad/.smal
 * blkVer;     // 0 - original block, 1 - block since importing .smad/.smal
C
Cary Xu 已提交
72 73
 * aggrOffset; // only valid when blkVer > 0 and aggrStat > 0
 */
C
Cary Xu 已提交
74 75 76 77 78
#define SBlockFieldsP1      \
  uint64_t aggrStat : 3;    \
  uint64_t blkVer : 5;      \
  uint64_t aggrOffset : 56; \
  uint32_t aggrLen
79 80 81 82

typedef struct {
  SBlockFieldsP0;
} SBlockV0;
H
Hongze Cheng 已提交
83

84 85 86 87 88 89
typedef struct {
  SBlockFieldsP0;
  SBlockFieldsP1;
} SBlockV1;

typedef enum {
C
Cary Xu 已提交
90
  TSDB_SBLK_VER_0 = 0,
91 92 93 94 95 96 97 98
  TSDB_SBLK_VER_1,
} ESBlockVer;

#define SBlockVerLatest TSDB_SBLK_VER_1

#define SBlock SBlockV1      // latest SBlock definition

// lastest SBlockInfo definition
H
Hongze Cheng 已提交
99
typedef struct {
H
refact  
Hongze Cheng 已提交
100 101 102 103
  int32_t  delimiter;  // For recovery usage
  int32_t  tid;
  uint64_t uid;
  SBlock   blocks[];
H
Hongze Cheng 已提交
104 105 106
} SBlockInfo;

typedef struct {
107 108 109 110
  int16_t  colId;
  int32_t  len;
  uint32_t type : 8;
  uint32_t offset : 24;
111 112 113 114 115 116
  int64_t  sum;
  int64_t  max;
  int64_t  min;
  int16_t  maxIndex;
  int16_t  minIndex;
  int16_t  numOfNull;
117 118
  uint8_t  offsetH;
  char     padding[1];
119
} SBlockColV0;
C
Cary Xu 已提交
120

121 122
typedef struct {
  int16_t  colId;
C
update  
Cary Xu 已提交
123 124
  uint8_t  offsetH;
  uint8_t  reserved;  // reserved field, not used
125 126 127
  int32_t  len;
  uint32_t type : 8;
  uint32_t offset : 24;
C
Cary Xu 已提交
128
  // char     padding[];
129 130 131
} SBlockColV1;

#define SBlockCol SBlockColV1      // latest SBlockCol definition
H
Hongze Cheng 已提交
132

133 134 135 136 137 138 139 140
typedef struct {
  int16_t colId;
  int16_t maxIndex;
  int16_t minIndex;
  int16_t numOfNull;
  int64_t sum;
  int64_t max;
  int64_t min;
C
Cary Xu 已提交
141 142 143 144
} SAggrBlkColV1;

#define SAggrBlkCol SAggrBlkColV1  // latest SAggrBlkCol definition

145 146 147 148 149 150 151 152 153 154 155 156
// Code here just for back-ward compatibility
static FORCE_INLINE void tsdbSetBlockColOffset(SBlockCol *pBlockCol, uint32_t offset) {
  pBlockCol->offset = offset & ((((uint32_t)1) << 24) - 1);
  pBlockCol->offsetH = (uint8_t)(offset >> 24);
}

static FORCE_INLINE uint32_t tsdbGetBlockColOffset(SBlockCol *pBlockCol) {
  uint32_t offset1 = pBlockCol->offset;
  uint32_t offset2 = pBlockCol->offsetH;
  return (offset1 | (offset2 << 24));
}

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
C
Cary Xu 已提交
161
  SBlockCol cols[];
H
Hongze Cheng 已提交
162
} SBlockData;
163 164 165 166
typedef struct {
  int32_t     numOfCols;  // For recovery usage
  SAggrBlkCol cols[];
} SAggrBlkData;
H
Hongze Cheng 已提交
167 168 169

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

H
Hongze Cheng 已提交
184 185
#define TSDB_READ_REPO(rh) ((rh)->pRepo)
#define TSDB_READ_REPO_ID(rh) REPO_ID(TSDB_READ_REPO(rh))
H
refact  
Hongze Cheng 已提交
186
#define TSDB_READ_FSET(rh) (&((rh)->rSet))
H
Hongze Cheng 已提交
187
#define TSDB_READ_TABLE(rh) ((rh)->pTable)
H
Hongze Cheng 已提交
188 189 190
#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)
C
Cary Xu 已提交
191 192
#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)
C
Cary Xu 已提交
193
#define TSDB_READ_BUF(rh) ((rh)->pBuf)
H
Hongze Cheng 已提交
194
#define TSDB_READ_COMP_BUF(rh) ((rh)->pCBuf)
195
#define TSDB_READ_EXBUF(rh) ((rh)->pExBuf)
H
Hongze Cheng 已提交
196

C
Cary Xu 已提交
197
#define TSDB_BLOCK_STATIS_SIZE(ncols, blkVer) \
C
Cary Xu 已提交
198
  (sizeof(SBlockData) + sizeof(SBlockColV##blkVer) * (ncols) + sizeof(TSCKSUM))
C
Cary Xu 已提交
199 200 201 202 203 204 205 206 207 208 209 210

static FORCE_INLINE size_t tsdbBlockStatisSize(int nCols, uint32_t blkVer) {
  switch (blkVer) {
    case TSDB_SBLK_VER_0:
      return TSDB_BLOCK_STATIS_SIZE(nCols, 0);
    case TSDB_SBLK_VER_1:
    default:
      return TSDB_BLOCK_STATIS_SIZE(nCols, 1);
  }
}

#define TSDB_BLOCK_AGGR_SIZE(ncols, blkVer) \
C
Cary Xu 已提交
211
  (sizeof(SAggrBlkData) + sizeof(SAggrBlkColV##blkVer) * (ncols) + sizeof(TSCKSUM))
C
Cary Xu 已提交
212 213 214 215 216 217 218 219 220 221 222

static FORCE_INLINE size_t tsdbBlockAggrSize(int nCols, uint32_t blkVer) {
  switch (blkVer) {
    case TSDB_SBLK_VER_0:
      ASSERT(false);
      return 0;
    case TSDB_SBLK_VER_1:
    default:
      return TSDB_BLOCK_AGGR_SIZE(nCols, 1);
  }
}
H
Hongze Cheng 已提交
223 224 225 226 227 228 229

int   tsdbInitReadH(SReadH *pReadh, STsdbRepo *pRepo);
void  tsdbDestroyReadH(SReadH *pReadh);
int   tsdbSetAndOpenReadFSet(SReadH *pReadh, SDFileSet *pSet);
void  tsdbCloseAndUnsetFSet(SReadH *pReadh);
int   tsdbLoadBlockIdx(SReadH *pReadh);
int   tsdbSetReadTable(SReadH *pReadh, STable *pTable);
C
Cary Xu 已提交
230
int   tsdbLoadBlockInfo(SReadH *pReadh, void **pTarget, uint32_t *extendedLen);
H
Hongze Cheng 已提交
231 232
int   tsdbLoadBlockData(SReadH *pReadh, SBlock *pBlock, SBlockInfo *pBlockInfo);
int   tsdbLoadBlockDataCols(SReadH *pReadh, SBlock *pBlock, SBlockInfo *pBlkInfo, int16_t *colIds, int numOfColsIds);
H
Hongze Cheng 已提交
233
int   tsdbLoadBlockStatis(SReadH *pReadh, SBlock *pBlock);
C
Cary Xu 已提交
234
int   tsdbLoadBlockOffset(SReadH *pReadh, SBlock *pBlock);
H
Hongze Cheng 已提交
235 236
int   tsdbEncodeSBlockIdx(void **buf, SBlockIdx *pIdx);
void *tsdbDecodeSBlockIdx(void *buf, SBlockIdx *pIdx);
C
Cary Xu 已提交
237
void  tsdbGetBlockStatis(SReadH *pReadh, SDataStatis *pStatis, int numOfCols, SBlock *pBlock);
H
Hongze Cheng 已提交
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258

static FORCE_INLINE int tsdbMakeRoom(void **ppBuf, size_t size) {
  void * pBuf = *ppBuf;
  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 已提交
259

C
Cary Xu 已提交
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276
static FORCE_INLINE SBlockCol *tsdbGetSBlockCol(SBlock *pBlock, SBlockCol **pDestBlkCol, SBlockCol *pBlkCols,
                                                int colIdx) {
  if (pBlock->blkVer == SBlockVerLatest) {
    *pDestBlkCol = pBlkCols + colIdx;
    return *pDestBlkCol;
  }
  if (pBlock->blkVer == TSDB_SBLK_VER_0) {
    SBlockColV0 *pBlkCol = (SBlockColV0 *)pBlkCols + colIdx;
    (*pDestBlkCol)->colId = pBlkCol->colId;
    (*pDestBlkCol)->len = pBlkCol->len;
    (*pDestBlkCol)->type = pBlkCol->type;
    (*pDestBlkCol)->offset = pBlkCol->offset;
    (*pDestBlkCol)->offsetH = pBlkCol->offsetH;
  }
  return *pDestBlkCol;
}

277
#endif /*_TD_TSDB_READ_IMPL_H_*/