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

H
Hongze Cheng 已提交
27 28 29 30 31 32 33 34 35 36 37 38
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 已提交
39
#ifdef TD_REFACTOR_3
H
Hongze Cheng 已提交
40 41 42 43 44 45
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 已提交
46
  int32_t keyLen;  // key column length, keyOffset = offset+sizeof(SBlockData)+sizeof(SBlockCol)*numOfCols
H
Hongze Cheng 已提交
47
  int16_t numOfSubBlocks;
H
refact  
Hongze Cheng 已提交
48
  int16_t numOfCols;  // not including timestamp column
H
Hongze Cheng 已提交
49 50 51
  TSKEY   keyFirst;
  TSKEY   keyLast;
} SBlock;
C
Cary Xu 已提交
52 53 54 55 56 57 58 59
#else

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

#define SBlockVerLatest TSDB_SBLK_VER_0
H
Hongze Cheng 已提交
60

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

#define SBlock SBlockV0  // latest SBlock definition

#endif
C
update  
Cary Xu 已提交
81

H
Hongze Cheng 已提交
82
typedef struct {
H
refact  
Hongze Cheng 已提交
83 84 85 86
  int32_t  delimiter;  // For recovery usage
  int32_t  tid;
  uint64_t uid;
  SBlock   blocks[];
H
Hongze Cheng 已提交
87 88
} SBlockInfo;

C
Cary Xu 已提交
89
#ifdef TD_REFACTOR_3
H
Hongze Cheng 已提交
90
typedef struct {
91
  int16_t  colId;
C
Cary Xu 已提交
92 93
  uint16_t bitmap : 1;  // 0: has bitmap if has NULL/NORM rows, 1: no bitmap if all rows are NORM
  uint16_t reserve : 15;
94 95 96 97 98 99 100 101 102 103 104
  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 已提交
105
} SBlockCol;
C
Cary Xu 已提交
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
#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 已提交
131

132 133
// Code here just for back-ward compatibility
static FORCE_INLINE void tsdbSetBlockColOffset(SBlockCol *pBlockCol, uint32_t offset) {
C
Cary Xu 已提交
134
#ifdef TD_REFACTOR_3
135 136
  pBlockCol->offset = offset & ((((uint32_t)1) << 24) - 1);
  pBlockCol->offsetH = (uint8_t)(offset >> 24);
C
Cary Xu 已提交
137 138 139
#else
  pBlockCol->offset = offset;
#endif
140 141 142
}

static FORCE_INLINE uint32_t tsdbGetBlockColOffset(SBlockCol *pBlockCol) {
C
Cary Xu 已提交
143
#ifdef TD_REFACTOR_3
144 145 146
  uint32_t offset1 = pBlockCol->offset;
  uint32_t offset2 = pBlockCol->offsetH;
  return (offset1 | (offset2 << 24));
C
Cary Xu 已提交
147 148 149
#else
  return pBlockCol->offset;
#endif
150 151
}

H
Hongze Cheng 已提交
152
typedef struct {
H
refact  
Hongze Cheng 已提交
153 154 155
  int32_t   delimiter;  // For recovery usage
  int32_t   numOfCols;  // For recovery usage
  uint64_t  uid;        // For recovery usage
H
Hongze Cheng 已提交
156 157 158
  SBlockCol cols[];
} SBlockData;

C
Cary Xu 已提交
159 160
typedef void SAggrBlkData;  // SBlockCol cols[];

H
Hongze Cheng 已提交
161
struct SReadH {
C
Cary Xu 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174
  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 已提交
175 176
};

C
Cary Xu 已提交
177 178 179 180
#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 已提交
181 182 183
#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 已提交
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
#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 已提交
202

C
Cary Xu 已提交
203 204 205 206 207 208 209
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 已提交
210

H
Hongze Cheng 已提交
211
int   tsdbInitReadH(SReadH *pReadh, STsdb *pRepo);
H
Hongze Cheng 已提交
212 213 214 215 216 217
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 已提交
218
int   tsdbLoadBlockData(SReadH *pReadh, SBlock *pBlock, SBlockInfo *pBlockInfo);
L
Liu Jicong 已提交
219
int   tsdbLoadBlockDataCols(SReadH *pReadh, SBlock *pBlock, SBlockInfo *pBlkInfo, const int16_t *colIds, int numOfColsIds);
H
Hongze Cheng 已提交
220 221 222
int   tsdbLoadBlockStatis(SReadH *pReadh, SBlock *pBlock);
int   tsdbEncodeSBlockIdx(void **buf, SBlockIdx *pIdx);
void *tsdbDecodeSBlockIdx(void *buf, SBlockIdx *pIdx);
C
Cary Xu 已提交
223
void  tsdbGetBlockStatis(SReadH *pReadh, SDataStatis *pStatis, int numOfCols, SBlock *pBlock);
H
Hongze Cheng 已提交
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244

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

246
#endif /*_TD_TSDB_READ_IMPL_H_*/