tsdbReadImpl.h 7.5 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
 */
74
#define SBlockFieldsP1     \
C
Cary Xu 已提交
75
  int64_t aggrStat : 3;    \
C
update  
Cary Xu 已提交
76
  int64_t blkVer : 5;      \
77 78 79 80 81 82
  int64_t aggrOffset : 56; \
  int32_t aggrLen

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

84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
typedef struct {
  SBlockFieldsP0;
  SBlockFieldsP1;
} SBlockV1;

typedef enum {
  TSDB_SBLK_VER_0,
  TSDB_SBLK_VER_1,
} ESBlockVer;

#define SBlockVerLatest TSDB_SBLK_VER_1

#define SBlockBase SBlockV0  // base SBlock definition
#define SBlock SBlockV1      // latest SBlock definition

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

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

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

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

134 135 136 137 138 139 140 141
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 已提交
142 143 144 145
} SAggrBlkColV1;

#define SAggrBlkCol SAggrBlkColV1  // latest SAggrBlkCol definition

146 147 148 149 150 151 152 153 154 155 156 157
// 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 已提交
158
typedef struct {
H
refact  
Hongze Cheng 已提交
159 160 161
  int32_t   delimiter;  // For recovery usage
  int32_t   numOfCols;  // For recovery usage
  uint64_t  uid;        // For recovery usage
C
Cary Xu 已提交
162
  SBlockCol cols[];
H
Hongze Cheng 已提交
163
} SBlockData;
164
typedef struct {
C
Cary Xu 已提交
165
  // int32_t     delimiter;  // For recovery usage
166
  int32_t     numOfCols;  // For recovery usage
C
Cary Xu 已提交
167
  // uint64_t    uid;        // For recovery usage
168 169
  SAggrBlkCol cols[];
} SAggrBlkData;
H
Hongze Cheng 已提交
170 171 172

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

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

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

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 已提交
214
  (sizeof(SAggrBlkData) + sizeof(SAggrBlkColV##blkVer) * (ncols) + sizeof(TSCKSUM))
C
Cary Xu 已提交
215 216 217 218 219 220 221 222 223 224 225

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 已提交
226 227 228 229 230 231 232

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 已提交
233
int   tsdbLoadBlockInfo(SReadH *pReadh, void **pTarget, uint32_t *extendedLen);
H
Hongze Cheng 已提交
234 235
int   tsdbLoadBlockData(SReadH *pReadh, SBlock *pBlock, SBlockInfo *pBlockInfo);
int   tsdbLoadBlockDataCols(SReadH *pReadh, SBlock *pBlock, SBlockInfo *pBlkInfo, int16_t *colIds, int numOfColsIds);
H
Hongze Cheng 已提交
236
int   tsdbLoadBlockStatis(SReadH *pReadh, SBlock *pBlock);
C
Cary Xu 已提交
237
int   tsdbLoadBlockOffset(SReadH *pReadh, SBlock *pBlock);
H
Hongze Cheng 已提交
238 239
int   tsdbEncodeSBlockIdx(void **buf, SBlockIdx *pIdx);
void *tsdbDecodeSBlockIdx(void *buf, SBlockIdx *pIdx);
C
Cary Xu 已提交
240
void  tsdbGetBlockStatis(SReadH *pReadh, SDataStatis *pStatis, int numOfCols, SBlock *pBlock);
H
Hongze Cheng 已提交
241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261

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

263
#endif /*_TD_TSDB_READ_IMPL_H_*/