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

H
Hongze Cheng 已提交
19
#include "os.h"
20 21 22 23
#include "tfs.h"
#include "tsdb.h"
#include "tsdbFile.h"
#include "tskiplist.h"
H
Hongze Cheng 已提交
24
#include "tsdbMemory.h"
S
common  
Shengliang Guan 已提交
25
#include "tcommon.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 42
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;

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

C
Cary Xu 已提交
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
H
Hongze Cheng 已提交
65

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

#define SBlock SBlockV0  // latest SBlock definition

#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;

C
Cary Xu 已提交
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;
C
Cary Xu 已提交
111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
#else
typedef struct {
  int16_t  colId;
  uint8_t  bitmap : 1;  // 0: has bitmap if has NULL/NORM rows, 1: no bitmap if all rows are NORM
  uint8_t  reserve : 7;
  uint8_t  type;
  int32_t  len;
  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) {
C
Cary Xu 已提交
139
#ifdef TD_REFACTOR_3
140 141
  pBlockCol->offset = offset & ((((uint32_t)1) << 24) - 1);
  pBlockCol->offsetH = (uint8_t)(offset >> 24);
C
Cary Xu 已提交
142 143 144
#else
  pBlockCol->offset = offset;
#endif
145 146 147
}

static FORCE_INLINE uint32_t tsdbGetBlockColOffset(SBlockCol *pBlockCol) {
C
Cary Xu 已提交
148
#ifdef TD_REFACTOR_3
149 150 151
  uint32_t offset1 = pBlockCol->offset;
  uint32_t offset2 = pBlockCol->offsetH;
  return (offset1 | (offset2 << 24));
C
Cary Xu 已提交
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;

C
Cary Xu 已提交
164 165
typedef void SAggrBlkData;  // SBlockCol cols[];

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

C
Cary Xu 已提交
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)
C
Cary Xu 已提交
189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206
#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);
  }
}

#define TSDB_BLOCK_AGGR_SIZE(ncols, blkVer) (sizeof(SAggrBlkColV##blkVer) * (ncols) + sizeof(TSCKSUM))
H
Hongze Cheng 已提交
207

C
Cary Xu 已提交
208 209 210 211 212 213 214
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);
L
Liu Jicong 已提交
224
int   tsdbLoadBlockDataCols(SReadH *pReadh, SBlock *pBlock, SBlockInfo *pBlkInfo, const int16_t *colIds, int numOfColsIds);
H
Hongze Cheng 已提交
225 226 227
int   tsdbLoadBlockStatis(SReadH *pReadh, SBlock *pBlock);
int   tsdbEncodeSBlockIdx(void **buf, SBlockIdx *pIdx);
void *tsdbDecodeSBlockIdx(void *buf, SBlockIdx *pIdx);
C
Cary Xu 已提交
228
void  tsdbGetBlockStatis(SReadH *pReadh, SDataStatis *pStatis, int numOfCols, SBlock *pBlock);
H
Hongze Cheng 已提交
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249

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 已提交
250

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

255
#endif /*_TD_TSDB_READ_IMPL_H_*/